注:请进入root用户模式下操作,若没有,输入命令前加上sudo
1、更新软件包列表
apt update
2、安装最新版的Mysql服务器
apt install mysql-server -y
如果不加-y
会在安装过程中,系统将提示你设置MySQL的root密码。确保密码足够强,且记住它,因为你将在以后需要用到它。
3、启动Mysql服务
systemctl start mysql
4、将Mysql设置为开机自启动
systemctl enable mysql
5、检查mysql状态
systemctl status mysql
6、修改密码、权限
alter user 'root'@'localhost' identified with mysql_native_password by '123456';
7、通过直接修改配置文件实现所有IP都能访问,MySQL8.0版本把配置文件 my.cnf
拆分成mysql.cnf
和mysqld.cnf
,我们需要修改的是mysqld.cnf
文件
vim /etc/mysql/mysql.conf.d/mysqld.cnf
8、重启一下服务
systemctl restart mysql