問題分析
在關(guān)閉數(shù)據(jù)庫(kù)的命令發(fā)現(xiàn)mysql關(guān)不了,提示Warning: World-writable config file '/etc/my.cnf' is ignored
,大概意思是權(quán)限全局可寫,任何一個(gè)用戶都可以寫。mysql擔(dān)心這種文件被其他用戶惡意修改,所以忽略掉這個(gè)配置文件。這樣mysql無法關(guān)閉。
下面看下整個(gè)過程
重啟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的權(quán)限
[root@ttlsa ~]# ls -l /etc/my.cnf
-rwxrwxrwx 1 root root 4878 Jul 30 11:31 /etc/my.cnf
權(quán)限777,任何一個(gè)用戶都可以改my.cnf
,存在很大的安全隱患.
修復(fù)MySQL問題
[root@ttlsa ~]# chmod 644 /etc/my.cnf
my.cnf設(shè)置為用戶可讀寫,其他用戶不可寫.
關(guān)閉MySQL
[root@ttlsa ~]# service mysqld stop
Shutting down MySQL..[ OK ]
MySQL關(guān)閉成功. 問題很簡(jiǎn)單
總結(jié)
以上就是這篇文章的全部?jī)?nèi)容了,希望本文的內(nèi)容對(duì)大家的學(xué)習(xí)或者工作能帶來一定的幫助,如果有疑問大家可以留言交流。
您可能感興趣的文章:- mysql中錯(cuò)誤:1093-You can’t specify target table for update in FROM clause的解決方法
- mysql “ Every derived table must have its own alias”出現(xiàn)錯(cuò)誤解決辦法
- 讀取mysql一個(gè)庫(kù)下面的所有的表table
- mysql Event Scheduler: Failed to open table mysql.event
- mysql中You can’t specify target table for update in FROM clause錯(cuò)誤解決方法
- 出現(xiàn)錯(cuò)誤mysql Table ''performance_schema...解決辦法