問題描述:服務器中使用service mysqld restart命重啟MySQL失敗。
報錯信息如下:
Fatal error: Please read “Security” section of the manual to find out how to run mysqld as root
錯誤日志輸出如下:
mysqld: File './binlog.index' not found (OS errno 13 - Permission denied)
解決方法:
1.根據日志提示查找到binlog.index文件;
2.binlog.index文件查找到后,使用記事本打開;
3.binlog.index文件打開后,將binlog.index擁有者設置成mysql;
chown mysql:mysql binlog.index
4.binlog.index擁有者設置好后,再次重啟MySQL即可。
service mysqld restart