• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    MySQL无法重启报错Warning: World-writable config file ‘/etc/my.cnf’ is ignored的解决方法

    问题分析

    在关闭数据库的命令发现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关闭成功. 问题很简单

    总结

    以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作能带来一定的帮助,如果有疑问大家可以留言交流。

    您可能感兴趣的文章:
    • mysql中错误:1093-You can’t specify target table for update in FROM clause的解决方法
    • mysql “ Every derived table must have its own alias”出现错误解决办法
    • 读取mysql一个库下面的所有的表table
    • mysql Event Scheduler: Failed to open table mysql.event
    • mysql中You can’t specify target table for update in FROM clause错误解决方法
    • 出现错误mysql Table ''performance_schema...解决办法
    上一篇:数据库实现行列转换(mysql示例)
    下一篇:读取mysql一个库下面的所有的表table
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    MySQL无法重启报错Warning: World-writable config file ‘/etc/my.cnf’ is ignored的解决方法 MySQL,无法,重启,报错,Warning,