- 安装 MySQL 5.5
首先,我们需要在 CentOS 7 中安装 remi-release 和 epel-release 源。
yum install epel-release
yum install http://rpms.famillecollet.com/enterprise/remi-release-7.rpm
接着,我们需要启用 remi 源中的 MySQL 5.5。
yum --enablerepo=remi install mysql-server
安装完成后,我们需要启动 MySQL 服务并设置自启动。
systemctl start mysqld
systemctl enable mysqld
至此,MySQL 5.5 的安装已经完成。
- 安装 MariaDB
首先,我们需要添加 mariadb 源。
vi /etc/yum.repos.d/mariadb.repo
在文件中添加以下内容。
[mariadb]
name = MariaDB
baseurl = http://yum.mariadb.org/10.2/centos7-amd64
gpgkey=https://yum.mariadb.org/RPM-GPG-KEY-MariaDB
gpgcheck=1
然后,我们需要安装 MariaDB。
yum install MariaDB-server MariaDB-client
安装完成后,我们需要启动 MariaDB 服务并设置自启动。
systemctl start mariadb
systemctl enable mariadb
至此,MariaDB 的安装已经完成。
示例说明:
- 如何检查已安装的 MySQL 版本号?
mysql --version
- 如何设置 MariaDB 数据库的字符集?
vi /etc/my.cnf.d/server.cnf
在 [mysqld] 下添加以下行。
character-set-server=utf8
重启 mariadb 服务。
systemctl restart mariadb
本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:centos 7安装mysql5.5和安装 mariadb使用的命令 - Python技术站