美文网首页
ubuntu 上mysql 设置远程访问

ubuntu 上mysql 设置远程访问

作者: 取名好费劲 | 来源:发表于2021-10-13 11:07 被阅读0次

1. 安装mysql

apt-get install mysql-server

2. 设置远程访问

1. mysql -uroot -proot
2. use mysql;
3.  update user set authentication_string=password("root"),plugin='mysql_native_password',host='%' where user='root';
4. grant all privileges on *.* to 'root'@'%' identified by 'root' with grant option;
5. flush privileges

相关文章

网友评论

      本文标题:ubuntu 上mysql 设置远程访问

      本文链接:https://www.haomeiwen.com/subject/ayesoltx.html