程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> MySQL無法重啟提示Warning: World-writable config file

MySQL無法重啟提示Warning: World-writable config file

編輯:MySQL綜合教程

今天在重啟一台機器時發現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關閉成功. 問題很簡單

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved