linux中清空Mysql数据库ROOT密码教程
发布:smiling 来源: PHP粉丝网 添加日期:2014-10-16 11:17:38 浏览: 评论:0
root密码如果我们在安装mysql时设置了密码那么我们希望它之后变成空密码要怎么办呢?下面我们就一起来看看具体的解决办法吧。
一、方法一
1)进入var/lib/mysql
2)删除掉mysql文件
3)重新启动mysql,到此密码已经清空.
4)设置新的密码:
- echo "grant all on *.* to 'root'@'localhost' identified by 'newpass';" | mysql -uroot
- echo "grant all on *.* to 'root'@'%' identified by '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;
其实就是把它的密码设置为空就可以了.
Tags: linux清空密码 清空ROOT密码
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)