用户名:
密 码: 记住
您当前的位置:首页 > 网络编程 > mysql教程

MySQL无法重启提示Warning: World-writable config file

时间:2015-01-23  来源:西部数据  作者:西部数据

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

下面看下整个过程,重启MySQL,代码如下:

  1. [root@ttlsa ~] 
  2. # service mysqld stop  
  3. Warning: World-writable config file '/etc/my.cnf' is ignored  
  4. Warning: World-writable config file '/etc/my.cnf' is ignored  
  5. MySQL manager or server PID file could not be found![FAILED] 

可以看到mysql停止不了,查看my.cnf的权限,代码如下:

  1. [root@ttlsa ~] 
  2. # ls -l /etc/my.cnf  
  3. -rwxrwxrwx 1 root root 4878 Jul 30 11:31 /etc/my.cnf 

权限777,任何一个用户都可以改my.cnf,存在很大的安全隐患,修复MySQL问题,代码如下:

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

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

关闭MySQL,代码如下:

  1. [root@ttlsa ~] 
  2. # service mysqld stop  
  3. Shutting down MySQL..[ OK ] 
  4. //phpfensi.com 

MySQL关闭成功,问题很简单.

来顶一下
返回首页
返回首页
推荐资讯
WiFi太不安全:7岁女孩11分钟内入侵公共网络 WiFi太不安全:7岁女孩11分钟内入侵近期刚刚发布研究说WiFi网络能获得人们手机里多少私人信息,
不服跑个分?人工智能也出现“刷分”乱象 不服跑个分?人工智能也出现“刷分2014年,人工智能领域突然爆发,成为了科研和科技创业的热门
相关文章
    无相关信息
栏目更新
栏目热门