MySQL引數檔案沒有生效

feelpurple發表於2018-04-23
啟動資料庫後,發現引數檔案沒有生效,使用了預設的設定
仔細檢視啟動命令,發現有Warning: World-writable config file '/etc/my_55_3306.cnf' is ignored的警告

  1. [root@tomcat02 ~]# /home/mysql_software_55/bin/mysqld_safe --defaults-file=/etc/my_55_3306.cnf &
  2. [1] 19032
  3. [root@tomcat02 ~]# Warning: World-writable config file '/etc/my_55_3306.cnf' is ignored
  4. Warning: World-writable config file '/etc/my_55_3306.cnf' is ignored
  5. 180423 09:18:41 mysqld_safe Logging to '/home/mysql_software_55/data/tomcat02.err'.
  6. 180423 09:18:41 mysqld_safe Starting mysqld daemon with databases from /home/mysql_software_55/data

  7. # 檢視引數檔案的許可權,發現其他組也具有寫許可權
  8. [root@tomcat02 mysql_software_55]# ll /etc/my_55_3306.cnf
  9. -rw-rw-rw- 1 root root 2252 Apr 23 12:24 /etc/my_55_3306.cnf

  10. # 解決方法,收回其他組的寫許可權
  11. [root@tomcat02 mysql_software_55]# chmod 644 /etc/my_55_3306.cnf


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/26506993/viewspace-2153234/,如需轉載,請註明出處,否則將追究法律責任。

相關文章