您好,登錄后才能下訂單哦!
分享一個安裝相比MySQL5.7版本更加簡便,更加快速的版本:MariaDB。
實驗開始前先關(guān)閉防火墻:
service firewalld stop
setenforce 0
之后配置ALI云源:
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
然后安裝epel-releas環(huán)境源:
yum -y install epel-release
將其安裝:
yum clean all && yum makecache
之后搭建本地YUM源:
yum -y install mariadb-server mariadb
進(jìn)入/etc/my.cnf/:
vi /etc/my.cnf //
修改主配置文件,分配錯誤日志,通用日志,二進(jìn)制日志,慢日志文件,并指定存放位置:
(將原有的【mysqld】內(nèi)容刪除)
[mysqld]
log_error=/var/lib/mysql/mysql.err
log=/var/lib/mysql/mysql_log.log
log_slow_queries=/var/lib/mysql_slow_queris.log
binlog-ignore-db=mysql,information_schema
character_set_server=utf8
log_bin=mysql_bin
server_id=1
log_slave_updates=true
sync_binlog=1
auto_increment_increment=2
auto_increment_offset=1
之后便可將服務(wù)啟動:
systemctl start mariadb
檢測3306端口是否開啟:
netstat -anpt | grep 3306
直接輸入“mysql”,便可進(jìn)入數(shù)據(jù)庫服務(wù)。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。