[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.

  • 2018-01-20 20:33:58

    PHP中session_cache_limiter() 是什么意思啊

    session_cache_limiter('public'); session_cache_expire(30); session_start();第三个我晓得 前两个 网络上没找着资料 手册上全是英文的 翻译后 还是看不懂主要是没翻译正确

  • 2018-01-23 02:22:17

    andorid,把控件置于最顶端。bringToFront的意外发现

     bringToFront方法在SDK中的说明是“Change the view's z order in the tree, so it's on top of other sibling views”,翻译过来就是改变view的z轴,使其处在他父view的顶端。关于bringToFront的实现,网上有很多资料介绍,大体来说就是将这个view从父view中移除,然后再加入父view的顶端。具体实现如何呢?