sudo apt-get update
sudo apt-get install mysql-server
service mysql status
# 或
netstat -tap | grep mysql
对用户表数据进行修改,配置 alfred 可以从其余 IP 登录
update mysql.user set host = '%' where user = 'alfred';
MySQL 的权限由用户名+主机来决定,参考 MySQL 安装与配置
/etc/mysql/mysql.conf.d/mysqld.cnf
文件bind-address = 127.0.0.1
sudo service mysql restart
远程连接
mysql -u alfred -h <IP> -P 3306 -p
避免使用 root 账户来设置远程登录