MySQL无法重启提示Warning: World-writable config file
发布:smiling 来源: PHP粉丝网 添加日期:2014-09-28 15:25:54 浏览: 评论:0
今天帮朋友维护服务器,在关闭数据库的命令发现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 ]
- //phpfensi.com
MySQL关闭成功,问题很简单.
Tags: MySQL无法重启 Warning:World-writable
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)