码迷,mamicode.com
首页 > 数据库 > 详细

MySQL无法重启问题解决Warning: World-writable config file ‘/etc/my.cnf’ is ignored

时间:2018-10-20 21:08:05      阅读:218      评论:0      收藏:0      [点我收藏+]

标签:解决   权限   其他   过程   lsa   mysql   无法   chmod   www.   

权限777,任何一个用户都可以改my.cnf,存在很大的安全隐患.

修复MySQL问题

[root@ttlsa ~]# chmod 644 /etc/my.cnf

my.cnf设置为用户可读写,其他用户不可写.

 

 

 

 

今天帮朋友维护服务器,在关闭数据库的命令发现mysql关不了,提示Warning: World-writable config file ‘/etc/my.cnf’ is ignored ,大概意思是权限全局可写,任何一个用户都可以写。mysql担心这种文件被其他用户恶意修改,所以忽略掉这个配置文件。这样mysql无法关闭。

下面看下整个过程

重启MySQL

[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/mysql/warning-world-writable-config-file-etcmy-cnf-is-ignored/

MySQL无法重启问题解决Warning: World-writable config file ‘/etc/my.cnf’ is ignored

标签:解决   权限   其他   过程   lsa   mysql   无法   chmod   www.   

原文地址:https://www.cnblogs.com/adolfmc/p/9822814.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!