共计 815 个字符,预计需要花费 3 分钟才能阅读完成。
本篇内容介绍了“怎么解决 MySQL server PID file could not be found 问题”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让丸趣 TV 小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!
root@s1 Downloads]# service mysql restart
MySQL server PID file could not be found! [FAILED]
[root@s1 Downloads]# service mysql stop
MySQL server PID file could not be found! [FAILED]
解决方法:
1. 通过 ss -tnl 命令查看服务
[root@s1 Downloads]# ss -tnl
State Recv-Q Send-Q Local Address:Port Peer Address:Port
LISTEN 0 50 *:3306 *:*
2,停止 mysql 服务
[root@s1 Downloads]# killall mysqld
3. 重启 mysql 服务
4. 发现 mysql 数据目录权限异常
[root@s1 Downloads]# mysql
ERROR 2002 (HY000): Can t connect to local MySQL server through socket /var/lib/mysql/mysql.sock (2)
5. 修改 mysql 数据目录权限
[root@s1 Downloads]# chown -R mysql.mysql /var/lib/mysql/
6. 重启服务,即可以正常登陆 mysql
“怎么解决 MySQL server PID file could not be found 问题”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注丸趣 TV 网站,丸趣 TV 小编将为大家输出更多高质量的实用文章!