登录
首页 >  数据库 >  MySQL

CentOS修改Mariadb数据库文件存储路径

来源:SegmentFault

时间:2023-01-24 17:59:10 350浏览 收藏

数据库小白一枚,正在不断学习积累知识,现将学习到的知识记录一下,也是将我的所得分享给大家!而今天这篇文章《CentOS修改Mariadb数据库文件存储路径》带大家来了解一下CentOS修改Mariadb数据库文件存储路径,希望对大家的知识积累有所帮助,从而弥补自己的不足,助力实战开发!

修改Mariadb数据库文件存储路径

mysql也是类似的配置。

#
# This group is read both both by the client and the server
# use it for options that affect everything
#
[client-server]
socket=/data/mysql/mysql.sock

#
# include all files from the config directory
#
!includedir /etc/my.cnf.d

[mysqld]
init_connect='SET collation_connection = utf8mb4_unicode_ci'
init_connect='SET NAMES utf8mb4'
character_set_server=utf8mb4
collation-server=utf8mb4_unicode_ci
skip-character-set-client-handshake=true
datadir=/data/mysql/

注:datadir上面的五行是设置默认字符集为utf8mb4,否则emoji表情是无法正确存储的。

验证

# 登录
mysql -uroot -p

# 查询
show global variables like "%datadir%";

# 结果
MariaDB [(none)]> show global variables like "%datadir%";
+---------------+--------------+
| Variable_name | Value        |
+---------------+--------------+
| datadir       | /data/mysql/ |
+---------------+--------------+
1 row in set (0.00 sec)

理论要掌握,实操不能落!以上关于《CentOS修改Mariadb数据库文件存储路径》的详细介绍,大家都掌握了吧!如果想要继续提升自己的能力,那么就来关注golang学习网公众号吧!

声明:本文转载于:SegmentFault 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>
评论列表