1.No directory, logging in with HOME=/
sudo usermod -d /var/lib/mysql/ mysql
2.每次开机Ubuntu无法启动MySQL
sudo dpkg-reconfigure mysql-server-5.7
3.密码
use mysql;
update user set authentication_string=password("你的密码") where user="root";
flush privileges;
# 查看密码
sudo grep "password" /var/log/mysqld.log
# 请输入当前root用户的密码,如果没有按回车,注意此root并非linux的root用户。
Enter current password for root (enter for none):
# 需要设置的密码:xxxxxxxxx
Set root password?是否设置root密码?
# 是否移除匿名用户,选择移除(Y)
Remove anonymous users?
# 是否不允许root远程登录(默认不允许)
Disallow root login remotely?
# 是否移除测试数据库(建议先不移除)
Remove test database and access to it?
# 是否重新加载权限表(当我们更改了mysql用户相关的信息之后建议去重载权限)
Reload privilege tables now?