通用格式二进制格式程序包的安装,centos6和centos7基本一样。
[[email protected] ~]# tar xf mariadb-5.5.46-linux-x86_64.tar.gz -C /usr/local ----必须是/usr/local
[[email protected] local]# ln -sv mariadb-5.5.46-linux-x86_64/ mysql ---必须执行此步
[[email protected] local]# id mysql ------确保mysql用户存在并为系统用户,存在更好。
id: mysql: no such user
[[email protected] mysql]# groupadd -r mysql ---也可以直接添加用户,会自动创建组,但要用-r
[[email protected] mysql]# useradd -r -g mysql mysql
修改权限属性
[[email protected] mysql]# cd /usr/local/mysql/
[[email protected] mysql]# chown -R root:mysql ./*
[[email protected] mysql]# mkdir -pv /mydata/data -----创建数据文件
[[email protected] mysql]# chown -R mysql:mysql /mydata/data
配置文件的修改
[[email protected] mysql]# rpm -qf /etc/my.cnf
mariadb-libs-5.5.41-2.el7_0.x86_64
[[email protected] mysql]# mv /etc/my.cnf{,.bak} ---此文件最好改名,否则影响安装结构
[[email protected] mysql]# mkdir /etc/mysql
[[email protected] mysql]# cd /usr/local/mysql/support-files/
[[email protected] support-files]# cp my-large.cnf /etc/mysql/my.cnf -----复制后名字为my.cnf
[[email protected] mysql]# vim /etc/mysql/my.cnf
在[mysqld]下加上下面三句:
datadir = /mydata/data
skip_name_resolve = ON
innodb_file_per_table = ON
复制启动脚本
[[email protected] mysql]# scripts/mysql_install_db --user=mysql --datadir=/mydata/data不能使用绝对路径
[[email protected] support-files]# cp mysql.server /etc/init.d/mysqld -----名字为mysqld
[[email protected] ~]# cd /usr/local/mysql/
[[email protected] ~]# chkconfig --add mysqld ---载入脚本
[[email protected] mysql]# service mysqld start ----通过刚才的脚本启动
Starting MySQL.. SUCCESS!
[[email protected] mysql]# ss -tnl
LISTEN 0 50 *:3306 *:* -----3306被监听
第一次试了三遍都不行,重新解压了两遍,mysql用户创建了不止多少遍,崩溃了。后来用一个安装过MariaDB的系统卸载后再试,一遍就成功了,而且mysql用户已存在,不用手动创建。