Debian 9 - Install MySQL Server The steps below will show you how to install whichever version of MySQL-server you want on your Debian 9 server and why you should not just run sudo apt install mysql-server -y Similar Posts Debian 8 - Install MySQL 5.…
cd /tmp wget https://dev.mysql.com/get/mysql-apt-config_0.8.7-1_all.deb dpkg -i mysql-apt-config_*.deb 选择5.7版本 apt update apt install mysql-community-server -y 安装完成 登录mysql,设置允许远程连接 GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'password' W…