linux中清空Mysql数据库ROOT密码教程
2019/10/10/17:46:57 阅读:2002 来源:谷歌SEO算法 标签:
手机网站制作
root密码如果我们在安装mysql时设置了密码那么我们希望它之后变成空密码要怎么办呢?下面我们就一起来看看具体的解决办法吧。
一、方法一
1)进入var/lib/mysql
2)删除掉mysql文件
3)重新启动mysql,到此密码已经清空.
4)设置新的密码:
- echo"grantallon*.*to'root'@'localhost'identifiedby'newpass';"|mysql-uroot
- echo"grantallon*.*to'root'@'%'identifiedby'newpass';"|mysql-uroot-pnewpass --phpfensi.com
二、方法二
1)停止mysql服务
2)跳过权限检查启动 mysql /usr/bin/mysqld_safe --skip-grant-tables &
注:参数--skip-grant-tables为跳过授权表,--skip-networking为不监听TCP/IP连接)
4)执行MYSQL客户端:mysql
5)使用mysql数据库:use mysql;
6)更新root密码:update user set password='' where user='root';这里是加一个空密码给root;
7)关闭mysql服务器,用正常方试起动.
三、方法三
1)#mysql -u root -p进入mysql管理
2)mysql> set password for root@localhost=password('');
3) mysql>exit;
热门评论