码迷,mamicode.com
首页 > 其他好文 > 详细

运维技巧

时间:2017-12-22 19:42:43      阅读:104      评论:0      收藏:0      [点我收藏+]

标签:数据   res   word   访问   数据库访问   添加   art   with   数据库配置   

清空MySQL密码

更改数据库配置文件
# vi /etc/my.cnf
添加 skip-grant-tables
重启数据库
# service mysql restart
# flush privileges;

授权数据库访问

进入数据库
# mysql -u root -p
# use mysql
# grant all privileges on *.* to root@‘%’ identifed by password with grant option;
# flush privileges;

 

运维技巧

标签:数据   res   word   访问   数据库访问   添加   art   with   数据库配置   

原文地址:http://www.cnblogs.com/maoxianfei/p/8087228.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!