ubuntu安装mysql8.0


mysql

安装服务

在mysql官网获取需要的deb

wget -c https://dev.mysql.com/get/mysql-apt-config_0.8.17-1_all.deb
sudo dpkg -i mysql-apt-config_0.8.17-1_all.deb
sudo apt update
sudo apt install mysql-server

给root开启远程访问

mysql> create user 'root'@'%' identified by 'password';	
mysql> grant all on *.* to 'root'@'%';

卸载

apt-get remove mysql-common
apt-get autoremove --purge mysql-server-8.0
dpkg -l|grep ^rc|awk '{print$2}'|sudo xargs dpkg -P
dpkg --list|grep mysql
apt-get autoremove --purge mysql-apt-config