欢迎各位兄弟 发布技术文章
这里的技术是共享的
1、检查进程 ps -ef|grep memcached 2、检查端口 默认使用11211端口 netstat -na|grep 11211 来自 https://zhidao.baidu.com/question/712173528608610685.html
默认为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 "^$" |