[ERROR] Fatal error: Please read "Security" section of the manual to find out how to run mysqld as r

2019-07-10 18:06:42

[ERROR] Fatal error: Please read "Security" section of the manual to find out how to run mysqld as root!


此处 mysql是出于安全考虑,默认拒绝用root账号启动mysql服务。




解决方法:


1.通过在命令后面加上--user=root 进行强制使用root账号启动。这样是最快的。


cd /etc/init.d


mysqld --user=root


2.使用一个普通用户进行启动mysqld 。这个用户必须是属于mysqld用户组,且在my.cnf文件中。使用 vi /etc/my.cnf 


加上user=mysql  进行指定mysql用户来启动mysql服务。这样是最好的。




再次启动mysql.

  • 2023-08-19 18:57:08

    强制杀死nginx进程简单粗暴

    nginx: [error] open() "/run/nginx.pid" failed (2: No such file or directory),最简单的办法,杀死nginx进程,重启