yaovirus

Memcached 的启动和停止

查找允许 memcached 的进程 id:

# ps -ef|grep memcached
root      9662     1  0 10:13 ?        00:00:00 /usr/bin/memcached -d -m 1024 -u root -l 127.0.0.1 -p 11211 -c 1024 -P /tmp/memcached.pid
root     10155  8703  0 10:14 pts/0    00:00:00 grep memcached

第一行的第二个就是进程 id,使用 kill 命令停止进程:

# kill 9662
# ps -ef|grep memcached
root     10298  8703  0 10:14 pts/0    00:00:00 grep memcached

可以看到 memcached 服务已经消失。

我们可以使用以下命令来启动:

# /usr/bin/memcached  -d -m 1024 -u root -l 127.0.0.1 -p 11211 -c 1024 -P /tmp/memcached.pid