本文讲述怎么在 Ubuntu 上安装 MySQL(8)
查看最新版本 https://dev.mysql.com/downloads/repo/apt
可以看到 (mysql-apt-config_0.8.15-1_all.deb
)
点 Download
跳到一个新的页面,
将鼠标移到 No thanks, just start my download.
上,
可以看到链接 https://dev.mysql.com/get/mysql-apt-config_0.8.15-1_all.deb
复制链接地址,然后下载:
1 | wget https://dev.mysql.com/get/mysql-apt-config_0.8.15-1_all.deb |
1 | sudo dpkg -i mysql-apt-config_0.8.15-1_all.deb |
选择 OK
执行更新命令:sudo apt update
安装 MySQL:1
sudo apt install mysql-server
进入 MySQL 交换模式:1
2
3mysql -u root -p
Enter password: 输入你安装时设置的密码
切换数据库1
2
3
4
5
6mysql> use mysql;
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A
Database changed
1 | mysql> select host, user, authentication_string, plugin from user; |
可以看到 root
这个用户的 host
只允许 localhost
本地访问,
所以将 host
对应的值修改成 %
来允许任意 IP
访问~
1 | mysql> update user set host='%' where user='root' and host='localhost'; |
刷新权限1
mysql> flush privileges;