第一次安装mysql服务端。记录一下
-
查看当前Linux 版本,确认版本后,方便选择对应的mysql服务
cat /etc/redhat-release
- 下载MySQL官方的 Yum Repository
https://dev.mysql.com/downloa...
- 上传到linux上后 安装Repository
-
安装 Repository
yum -y install mysql80-community-release-el7-3.noarch.rpm
-
成功后,安装 mysql server
yum -y install mysql-community-server
- 启动 mysql 服务
-
更改mysql 用户密码
登录mysqlmysql -uroot -p
修改密码
mysql> ALTER USER 'root'@'localhost' IDENTIFIED BY 'password' PASSWORD EXPIRE NEVER;
修改用户运行远程登录
mysql> use mysql; mysql> update user set host = '%' where user = 'root'; mysql> select host, user from user;
修改navicat链接mysql 的密码
mysql> ALTER USER 'root'@'%' IDENTIFIED WITH mysql_native_password BY 'password';
刷新
mysql> FLUSH PRIVILEGES;
-
关闭防火墙
查看防火墙状态
firewall-cmd --state
停止firewall
systemctl stop firewalld.service
基本上就能用了。:)
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。