1.查询是否有自带的Mariadb数据库
[root@VM_0_13_centos /]# rpm -qa|grep mariadb
mariadb-libs-5.5.44-2.el7.centos.x86_64
卸载系统自带的Mariadb
[root@VM_0_6_centos mysql]# rpm -e --nodeps mariadb-libs-5.5.44-2.el7.centos.x86_64
检查是否已经安装过Mysql
[root@VM_0_13_centos /]# rpm -qa | grep mysql
如果已经安装过,使用如下命令卸载
[root@VM_0_13_centos /]# yum list installed | grep mysql
下载安装包
方法有好几种,这里我使用的方法是先去官网下载安装包到本地,然后通过Xftp将安装包上传至云服务器
1.
2.
3.
4.
5.
3.将安装包上传至云服务器
打开Xftp,远程连接到云服务器,可以直接通过拖拽的方式将安装包拖到自己想要的目录中
进入目录查看文件是否存在
[root@VM_0_13_centos /]# cd usr/local/mysql
[root@VM_0_13_centos /]# ls
4.开始安装
1)安装rpm文件
[root@VM_0_13_centos mysql]# rpm -ivh mysql80-community-release-el7-3.noarch.rpm
2)安装MySQL server
[root@VM_0_13_centos mysql]# yum install mysql-community-server
中途会两次出现如下语句
输入 y + 回车继续安装
等待。。。
3) 安装完成
5.操作
1) 启动MySQL server
[root@VM_0_13_centos mysql]# systemctl start mysqld
2) 查看MySQL状态以及端口使用情况
[root@VM_0_13_centos mysql]# systemctl status mysqld
[root@VM_0_13_centos mysql]# netstat -apn|grep 3306
3)查看MySQL默认密码
[root@VM_0_13_centos mysql]# grep "password" /var/log/mysqld.log
4)登录
[root@VM_0_13_centos mysql]# mysql -u root -p
5)修改密码
改为较复杂的密码,不然navicat连接的时候连不上
mysql> set password='********';
6)修改远程连接权限
mysql> use mysql;
mysql> select 'host' from user where user='root';
mysql> update user set host = '%' where user='root';
mysql> flush privileges;
查看现有用户的连接权限
mysql> select user,authentication_string,host from user;
现在可以使用workbench或者navicat远程连接数据库了
6.设置了MySQL开机自启动
systemctl enable mysqld
systemctl daemon-reload
接着重启了一下
systemctl restart mysqld
OK了!
文章基本转自https://blog.csdn.net/qq_41784833/article/details/105615423