为什么80%的码农都做不了架构师?>>>
[root@ttlsa ~]# service mysqld stop
Warning: World-writable config file '/etc/my.cnf' is ignored
Warning: World-writable config file '/etc/my.cnf' is ignored
MySQL manager or server PID file could not be found![FAILED]
可以看到mysql停止不了 查看my.cnf的权限 [root@ttlsa ~]# ls -l /etc/my.cnf
-rwxrwxrwx 1 root root 4878 Jul 30 11:31 /etc/my.cnf
权限777,任何一个用户都可以改my.cnf,存在很大的安全隐患. 修复MySQL问题 [root@ttlsa ~]# chmod 644 /etc/my.cnf
my.cnf设置为用户可读写,其他用户不可写. 关闭MySQL [root@ttlsa ~]# service mysqld stop
Shutting down MySQL..[ OK ]
MySQL关闭成功. 问题很简单 来源站点: 运维生存时间 网址:http://www.ttlsa.com/html/3445.html