Ubuntu 16.04 安装 MySQL 8.0 全过程
- 安装 wget
sudo apt-get install wget
wget https://repo.mysql.com//mysql-apt-config_0.8.10-1_all.deb
安装 apt 镜像sudo dpkg -i mysql-apt-config_0.8.10-1_all.deb
执行命令之后出现的内容两次都选择 OKsudo apt-get update
更新 apt-getsudo apt-get install mysql-server
执行命令会出现设置密码界面sudo systemctl start mysql
启动服务sudo systemctl enable mysql
开机启动
添加普通用户并开启远程连接
use mysql;
CREATE USER 'user'@'%' IDENTIFIED BY '123456';
grant all on *.* to 'user'@'%';
如果不能连接检查 Iptables
, 安全组, SElinux
。
您将是第一位评论人!