You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 4 Next »

External documentation

For any info on memcached use, follow this link: External documentation on memcached

Service Check

To check if memcached service is running, launch this command and check its output on server danteweb.lnf.infn.it (192.168.192.107) as root user:

[root@danteweb ~]# systemctl status memcached.service

If the service is active (view following screenshot) then it's running, otherwise read which errors are reported.

Client Test

Try to connect to memcached service with the following command:

telnet 192.168.192.107 11211

The server must answer like the following screenshot:

Try to send a command that do not interfere with the memory content, for example:

stats

The server will respond like this screenshot:

For more commands, refer to Memcached Wiki Page.

Stop Service

(warning) WARNING: All control system programs relies on this service. BE CAREFUL WHEN STOPPING THIS SERVICE (warning)

To stop memcached, run this command as root user:

[root@danteweb ~]# systemctl stop memcached.service

Start Service

To start memcached, run this command as root user:

[root@danteweb ~]# systemctl start memcached.service

Retart Service

To restart memcached, run this command as root user:

[root@danteweb ~]# systemctl restart memcached.service
  • No labels