关于mysql启动报错,用户错误

本文讲述了在启动MySQL服务器时遇到的错误,强调了不建议使用root用户,并提供了三种解决方案:1)使用--user=root强制启动;2)使用mysql用户启动;3)在my.cnf文件中配置默认用户。
摘要由CSDN通过智能技术生成

测试mysqld启动mysql server的时候,报如下错误:

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

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

 [ERROR] Aborting

 [Note] Binlog end

[Note] ./mysqld: Shutdown complete

启动时不建议使用root启动,而是使用mysql用户。

解决方案:

1.如果要使用root用户启动的时候,带上--user=root,强制启动。

 ./mysqld --user=root &

 ps -ef|grep mysql | grep -v grep

 

2.使用mysql用户启动的时候,需指定mysql用户

 ./mysqld --user=mysql &

 ps -ef|grep mysql |grep -v grep

 

3.在my.cnf指定用户,启动自选mysql用户,在my.cnf中加入如下内容。

[mysqld]

user=mysql

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值