欢迎各位兄弟 发布技术文章

这里的技术是共享的

You are here

linux 查看memcache服务 是否运行

 

1、检查进程
ps -ef|grep memcached

2、检查端口
默认使用11211端口
netstat -na|grep 11211

来自 https://zhidao.baidu.com/question/712173528608610685.html


怎么查看memcached 端口号

杜_林_波 | 浏览 5000 次
发布于2014-09-09 22:39最佳答案
 

默认为11211.在linux下可以ps出memcached的进程号,然后对比netstat -antp中的进程号,找到端口号,自己写的一个shell,本机测试通过。

1
[root@Rootop ~]# netstat -antp | grep $(ps aux | grep memcached | head -n 1 | awk '{print$2}') | awk '{print$4}' | cut -d: -f2 | sort -un | grep -v "^$"


来自 https://zhidao.baidu.com/question/647641505504221525.html

普通分类: