sudoapt update # 更新软件源sudoaptinstall mysql-server -y # 安装
mysql --version # 查看版本sudo systemctl status mysql # 查看运行状态netstat -tln # 以数字ip形式显示mysql的tcp监听状态
二、设置MySQL的root密码
sudo mysql -u root # 使用root无密码登录
alter user 'root'@'localhost' identified with mysql_native_password by '123456';# 为root添加密码exit;
三、设置允许root远程登录
sudo mysql -u root -p # 使用root有密码登录
use mysql;# 使用名为mysql的数据库select host,user from user;# 查看host,user
update user sethost='%' where user='root';# 运行root远程登录
flush privileges;# 权限刷新select host,user from user;# 查看host,userexit;