ubuntu18设置安装mysql 5.7并设置远程访问

网上流传的方法都试了,都是坑,以下方法亲试可以

1、sudo apt install mysql-server

2、使用sudo 命令登录Mysql,此时不需要密码,

3、修改root账号密码 update user set authentication_string = password('你的密码'), password_expired = 'N', password_last_changed = now() where user = 'root';

差点忘了,还要设置host 为% ,update user set host='%' where user='root'

 

MySQL8使用了新的认证插件,改回原来的验证方式,然后修改密码

ALTER USER 'root'@'localhost' IDENTIFIED BY 'password' PASSWORD EXPIRE NEVER; #修改加密规则

4、修改配置文件,注释掉bind_ip_address

sudo gedit /etc/mysql/mysql.conf.d/mysqld.cnf
加前缀#注释掉bind-address = 127.0.0.1

5、防火墙放行3306端口  (sudo ufw allow 3306    )

你可能感兴趣的:(备忘)