当前位置:   article > 正文

Ubuntu18 重置MySQL8 root密码_root@vm-16-10-ubuntu:/var/log/mysql# systemctl sta

root@vm-16-10-ubuntu:/var/log/mysql# systemctl start mysql.service job for m

问题

购买云服务器后,选择了带MySQL环境的镜像,查看日志知道初始密码是空,但是使用’mysql -u root --skip-password’ 无法登陆数据库。
官方参考:2.10.4 Securing the Initial MySQL Account

# 查看MySQL安装日志
root@VM-0-16-ubuntu:/data# head /var/log/mysql/error.log|grep -E 'root' --color=auto
2020-02-29T14:35:51.914062Z 5 [Warning] [MY-010453] [Server] root@localhost is created with an empty password ! Please consider switching off the --initialize-insecure option.
  • 1
  • 2
  • 3

解决方案

操作环境:Ubuntu 18.04 + MySQL 8.0.19

方案1 跳过权限验证

命令摘要:

mysqld --user=mysql --skip-grant-tables
mysql
mysql> flush privileges;
mysql> alter user 'root'@'localhost' identified by '123456';
  • 1
  • 2
  • 3
  • 4

详细步骤:

  1. 跳过权限验证方式启动MySQL服务
root@VM-0-16-ubuntu:/data# mysqld --user=mysql --skip-grant-tables
  • 1

启动成功后的日志信息(ready for connections):

root@VM-0-16-ubuntu:/data# tail -f /var/log/mysql/error.log
2020-05-25T11:13:00.156006Z 0 [System] [MY-010931]
  • 1
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/187895
推荐阅读
相关标签
  

闽ICP备14008679号