关闭正在运行的 MySQL :
service mysqld 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('centos') where user='root' and Host = 'localhost';
*特别提醒注意的一点是,新版的mysql数据库下的user表中已经没有Password字段了
而是将加密后的用户密码存储于authentication_string字段
mysql> flush privileges;
mysql> quit;
修改完毕。重启
service mysqld restart
然后mysql就可以连接了
但此时操作似乎功能不完全,还要alter user…
mysql> alter user 'root'@'localhost' identified by 'centos';
这样也可以:
mysql> set password for 'root'@'localhost'=password('centos');
修改密码提示不满足密码策略的解决方式:
mysql> set global validate_password_policy=0;
mysql> set global validate_password_length=1;
修改完成后不再报错
5.6以上版本修改密码
依据官方说明5.6以后版本,第一次启动时会在root目录下生产一个随机密码,文件名.mysql_secret。
[root@bright ~]#less /var/log/mysqld.log
[root@bright ~]# cd /usr/local/mysql/bin/
[root@bright bin]# ./mysqladmin -u root -h localhost password '123456' -p
Enter password:
#此行输入.mysql_secret(/var/log/mysqld.log)里第二行内容(密码)
官方的方式,笔者无论是否使用--skip-grant-tables启动mysql都测试失败,亲们可以测试:
shell>mysql –u root -p'password' #password即.mysql_secret(/var/log/mysqld.log)里的密码
mysql>SET PASSWORD = PASSWORD('newpasswd');
旧版本,安装后ROOT无密码,按如下操作:
方法一:
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 #退出
方法二:
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