CentOS 安装官方编译的 Mariadb 10.1 二进制通用包
文章目录
环境
- centos 5.4/6.2/6.5/7.2 x86_64
安装
-
下载官方编译好的 linux 通用安装包,解压之自定义目录(如/opt)下
1 2 3 4 5 6 7
# rhel 7 地址: wget https://mirrors.tuna.tsinghua.edu.cn/mariadb//mariadb-10.1.19/bintar-linux-glibc_214-x86_64/mariadb-10.1.19-linux-glibc_214-x86_64.tar.gz # rhel 5/6 地址: wget https://mirrors.tuna.tsinghua.edu.cn/mariadb//mariadb-10.1.19/bintar-linux-x86_64/mariadb-10.1.19-linux-x86_64.tar.gz tar zxf mariadb-10.1.19-linux*-x86_64.tar.gz -C /opt/ cd /opt mv mariadb-10.1.19-linux* mariadb
-
创建服务文件和配置文件,创建日志目录
1 2 3 4
cd /opt/mariadb mv support_files/my-large.cnf ./my.cnf mv support_files/mysql.server ./mysqld mkdir -p log
-
修改服务文件 mysqld
1 2 3 4 5 6 7
vim /opt/mariadb/mysqld # 在打开的文件中,修改开头的basedir和datadir,datadir是数据库文件目录,建议指定一个大分区中的目录 basedir=/opt/mariadb datadir=/mnt/sdb1/mariadb_db # 修改开头的lockdir和lock-file-path lockdir='/opt/mariadb/log' lock-file-path="$lockdir/mysql.lock"
-
修改配置文件 /opt/mariadb/my.cnf
1 2 3 4 5 6 7 8 9 10 11 12
[mysqld] datadir=/mnt/sdb1/mariadb_db log-error=/opt/mariadb/log/error.log pid-file=/opt/mariadb/log/mysql.pid user = mysql #port = 3306 socket = /tmp/mysql.sock skip-networking # 取消监听端口,适合本地数据库使用 skip-name-resolve # 取消域名解析 max-connections = 3000 max-connect-errors = 1000 #如果系统中存在 /etc/my.cnf 且不可写, 可以在 /opt/mariadb/my.cnf 中重新设置冲突项。
-
修改数据库程序数据目录的权限:
1 2
chown mysql.mysql /opt/mariadb/ -R chown mysql.mysql /mnt/sdb1/mariadb_db/ -R
-
安装数据库
1
/opt/mariadb/scripts/mysql_install_db --basedir=/opt/mariadb --datadir=/mnt/sdb1/mariadb_db --user=mysql
-
根据提示,修改mariadb的root帐号密码,禁用root登陆,删除匿名用户及test库
1 2 3 4 5 6
# 启动 mariadb /opt/mariadb/mysqld start # 修改 root 密码 /opt/mariadb/bin/mysqladmin -u root password '12345678' # 安全设置 /opt/mariadb/bin/mysql_secure_install --basedir=/opt/mariadb
-
增加系统动态库配置
1 2
echo '/opt/mariadb/lib' >> /etc/ld.so.conf ldconfig
文章作者 Colben
上次更新 2019-10-30