mysql8 初始化并且远程连接
数据库初始化:
-
mysqld --initialize-insecure (不设置root密码,建议使用),再启动mysql。
- 再启动数据库,然后再设置密码,然后再设置远程连接。
追加root 密码:
alter user 'root'@'localhost' identified with mysql_native_password by '新口令'
修改用户远程访问:
use mysql;
update user set host='%' where user='root';
GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' ;