关闭正在运行的 MySQL :

# service mysql stop



运行

mysqld_safe --skip-grant-tables &


为了安全可以这样禁止远程连接:

mysqld_safe --skip-grant-tables --skip-networking &


使用mysql连接server:

# mysql -p


更改密码:

mysql> update mysql.user set authentication_string=password('123qwe') where user='root' and Host = 'localhost';


*特别提醒注意的一点是,新版的mysql数据库下的user表中已经没有Password字段了

而是将加密后的用户密码存储于authentication_string字段


Mariadb:

方法一:

shell>service mysqld stop #停止mysql服务
shell>mysqld_safe --skip-grant-tables & #以不启用grant-tables模式启动mysql
shell>mysql -uroot -p #输入命令回车进入,出现输入密码提示直接回车。
mysql>use mysql;
mysql>update user set password=PASSWORD("123456")where user="root"; #更改密码为 newpassord
mysql>flush privileges; #更新权限
mysql>quit #退出

方法二:

此方式在mariadb数据库无法修改密码

shell>service mysqld stop #停止mysql服务
shell>mysqld_safe --skip-grant-tables & #以不启用grant-tables模式启动mysql
shell>mysql -uroot -p #输入命令回车进入,出现输入密码提示直接回车。
mysql > set password for root@localhost = password('mysqlroot');


方法三:

shell>/path/mysqladmin -u UserName -h Host password 'new_password' -p


修改完成之后关闭数据库:

# mysqladmin  -uroot -p SHUTDOWN
Enter password: 
[1]+  Done                    mysqld_safe --skip-grant-tables