欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

在CentOS7系统上安装MySQL数据库

程序员文章站 2022-06-28 12:29:34
由于CentOS系统已经不再把MySQL数据库作为默认数据库,而是使用mariadb数据库,对于已经习惯使用MySQL的人来说非常不方便,因此本文将主要介绍MySQL数据库在CentOS7系统中的安装过程和操作步骤。 ......

1.下载安装mysql官方repo文件

下载mysql的官方repo文件

[root@centos7 ~]# wget -i -c http://dev.mysql.com/get/mysql57-community-release-el7-10.noarch.rpm

安装mysql的官方repo文件

[root@centos7 ~]# yum -y install mysql57-community-release-el7-10.noarch.rpm

2.安装mysql数据库

[root@centos7 ~]# yum -y install mysql-community-server

3.配置mysql数据库

启动数据库并查看数据库启动状态。

[root@centos7 ~]# systemctl start mysqld

[root@centos7 ~]# systemctl status mysqld

查看数据库安装的初始密码:

[root@centos7 ~]# grep "password" /var/log/mysqld.log

[root@centos7 ~]# mysql_secure_installation

enter password for user root:---------------------------------------->使用查询到的密码

new password:--------------------------------------------------------->输入新密码

re-enter new password:--------------------------------------------->重复密码

do you wish to continue with the password provided?(press y|y for yes, any other key for no) : y

其他参数根据实际情况选择。