Centos7下安装MariaDB

该博客以root用户操作,详细介绍了MariaDB的安装、配置、启动与连接步骤。安装包括服务、命令行客户端、C library和开发包;配置需修改多个文件;启动要开启服务并设置自启;连接时用命令行客户端,设置密码后即可进入数据库管理系统。

以下所有操作以root用户进行!

安装部分(按顺序操作即可)

安装 mariadb 服务

# yum install -y mariadb-server

安装 mariadb 命令行客户端

# yum install -y mariadb

安装 mariadb C library

# yum install -y mariadb-libs

安装 mariadb 开发包

# yum install -y mariadb-devel

更改配置文件

更改 /etc/my.cnf.d/client.cnf 文件
[client] 下加一行配置 default-character-set=utf8
样例:

#
# These two groups are read by the client library
# Use it for options that affect all clients, but not the server
#


[client]
default-character-set = utf8

# This group is not read by mysql client library,
# If you use the same .cnf file for MySQL and MariaDB,
# use it for MariaDB-only client options
[client-mariadb]

更改 /etc/my.cnf.d/mysql-clients.cnf 文件
[mysql] 下加一行配置 default-character-set=utf8
样例:

#
# These groups are read by MariaDB command-line tools
# Use it for options that affect only one utility
#

[mysql]
default-character-set = utf8

[mysql_upgrade]

[mysqladmin]

[mysqlbinlog]

[mysqlcheck]

[mysqldump]

[mysqlimport]

[mysqlshow]

[mysqlslap]

更改 /etc/my.cnf.d/server.cnf 配置
[mysqld] 下加配置
collation-server = utf8_general_ci
init-connect='SET NAMES utf8'
character-set-server = utf8
sql-mode = TRADITIONAL
样例:

#
# These groups are read by MariaDB server.
# Use it for options that only the server (but not clients) should see
#
# See the examples of server my.cnf files in /usr/share/mysql/
#

# this is read by the standalone daemon and embedded servers
[server]

# this is only for the mysqld standalone daemon
[mysqld]
collation-server = utf8_general_ci
init-connect = 'SET NAMES utf8'
character-set-server = utf8

sql-mode = TRADITIONAL

# this is only for embedded server
[embedded]

# This group is only read by MariaDB-5.5 servers.
# If you use the same .cnf file for MariaDB of different versions,
# use this group for options that older servers don't understand
[mysqld-5.5]

# These two groups are only read by MariaDB servers, not by MySQL.
# If you use the same .cnf file for MySQL and MariaDB,
# you can put MariaDB-only options here
[mariadb]

[mariadb-5.5]

启动

启动服务

# systemctl start mariadb

设置服务开启自启动

# systemctl enable mariadb

查看服务状态

# systemctl status mariadb

连接

使用命令行客户端尝试连接

# mysql -uroot

设置密码

# mysql_secure_installation

选择 Y/N 的时候都选 Y,

New password:
Re-enter new password:
时设置你自己的 root 密码,分别是输入密码和确认密码。

使用命令行客户端尝试连接

# mysql -uroot -p

输入刚才设置的密码,进入数据库管理系统。

### 在 CentOS 7安装 MariaDB 的方法 在 CentOS 7安装 MariaDB 可以通过以下方式完成,确保系统环境为最新版本并具备网络连接能力。 #### 1. 更新系统 在开始安装之前,建议先更新系统的软件包列表: ```bash yum update -y ``` #### 2. 添加 MariaDB YUM 配置文件 MariaDB 不在 CentOS 默认的 YUM 源中,因此需要手动添加其官方 YUM 配置文件。可以通过以下命令创建或编辑配置文件: ```bash sudo vi /etc/yum.repos.d/MariaDB.repo ``` 将以下内容粘贴到文件中[^1]: ```plaintext [mariadb] name = MariaDB baseurl = https://mirrors.tuna.tsinghua.edu.cn/mariadb//mariadb-10.3/yum/centos7-amd64/ gpgkey = https://yum.mariadb.org/RPM-GPG-KEY-MariaDB gpgcheck=1 ``` 注意:上述 `baseurl` 使用了清华大学的镜像源,如果需要其他镜像源,可以根据需求替换。 #### 3. 导入 GPG Key 为了验证软件包的合法性,需导入 MariaDB 的 GPG 密钥: ```bash rpm --import https://yum.mariadb.org/RPM-GPG-KEY-MariaDB ``` #### 4. 安装 MariaDB 执行以下命令以安装 MariaDB 服务器和客户端组件: ```bash yum install -y MariaDB-server MariaDB-client ``` #### 5. 启动并设置开机自启 安装完成后,启动 MariaDB 服务并设置为开机自启: ```bash systemctl start mariadb systemctl enable mariadb ``` #### 6. 运行安全脚本 为了提高数据库的安全性,建议运行 MariaDB 提供的安全脚本: ```bash mysql_secure_installation ``` 此脚本会引导用户设置 root 密码、移除匿名用户、禁用远程 root 登录等操作。 #### 7. 验证安装 可以通过以下命令验证 MariaDB 是否正常运行: ```bash mysql -u root -p ``` 输入设置的密码后,如果成功进入 MariaDB 命令行界面,则表示安装成功。 --- ### 注意事项 - 如果安装过程中遇到错误,例如 `Job for mariadb.service failed`,可以尝试卸载已有的 MariaDB 包并重新安装: ```bash yum remove mariadb* ``` - 确保防火墙规则允许 MariaDB 的端口(默认为 3306): ```bash firewall-cmd --permanent --add-port=3306/tcp firewall-cmd --reload ``` ---
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值