如何查看Linux下mysql服务的进程是否正常运行?
3 回答
临摹微笑
TA贡献1982条经验 获得超2个赞
通过ps命令查看mysql进程即可,执行如下命令:
ps -aux|grep mysql
执行结果中看到了mysql进程,确定mysql正在运行。
mysql 1634 0.0 0.1 13980 1268 ? S Aug11 0:00 [mysqld]
root 6849 0.0 0.0 4816 640 pts/1 S 09:40 0:00 grep mysql
Helenr
TA贡献1780条经验 获得超3个赞
通过ps命令查看mysql进程即可,执行如下命令:
ps -aux|grep mysql
执行结果中看到了mysql进程,确定mysql正在运行。
mysql 1634 0.0 0.1 13980 1268 ? S Aug11 0:00 [mysqld]
root 6849 0.0 0.0 4816 640 pts/1 S 09:40 0:00 grep mysq
- 3 回答
- 0 关注
- 8844 浏览
添加回答
举报
0/150
提交
取消