ubuntu18在执行service mysql status报错

报错:error: ‘Access denied for user ‘debian-sys-maint’@‘localhost’ (using password: YES)’
原因:mysql里没有建立“‘debian-sys-maint”这个用户
进入myslq
执行:SELECT DISTINCT CONCAT(‘User: ‘’’,user,’’’@’’’,host,’’’;’) AS query FROM mysql.user;
可以查询所有用户

执行:vim /etc/mysql/debian.cnf
查看“debian-sys-maint”用户和密码

执行:create user ‘debian-sys-maint’@‘localhost’ identified by ‘密码’;
创建用户和密码
(注意:如果这一步报错,那么可能是升级过mysql的原因,此时可以在shell执行:mysql_upgrade -uroot -p密码)
授权:grant all on . to ‘debian-sys-maint’@‘localhost’;
更新:flush privileges;

基本上执行完毕问题解决

参考:
1.https://www.cnblogs.com/gjc592/p/9681093.html mysql8.0新增用户及密码加密规则修改
2.https://blog.csdn.net/qq_33350186/article/details/72528810 升级数mysql据库出错
3.https://www.cnblogs.com/paddygege/p/6379088.html 查看mysql所有用户

你可能感兴趣的:(ubuntu18在执行service mysql status报错)