錯誤信息:[ERROR] Fatal error: Please read "Security" section of the manual to find out how to run mysqld as root!
mysql
錯誤緣由是mysql處於安全考慮,默認拒絕以root帳號啓動服務sql
解決方法有如下幾種:segmentfault
一、經過在命令後面加上--user=root
進行強制使用root帳號啓動。安全
mysqld --user=root
二、使用一個普通用戶進行啓動mysqld 。這個用戶必須是屬於mysqld用戶組,
編輯/etc/my.cnf
文件,在[mysqld]
下新增啓動用戶mysql學習
[mysqld] user=mysql
啓動時加上--user=mysql
區塊鏈
mysqld --user=mysql