1. 程式人生 > >Centos 7 如何安裝mysql server

Centos 7 如何安裝mysql server

centos下yum暫時沒有mysql-server直接安裝包;
MariaDB是MySQL社群開發的分支,也是一個增強型的替代品;
安裝MariaDB
yum -y  install mariadb-server mariadb mariadb-devel
systemctl start mariadb
systemctl enable mariadb
mysql_secure_installation
firewall-cmd --permanent --add-service mysql
systemctl restart firewalld.service
iptables -L -n|grep 3306
登入資料庫檢視下是否有變好
msyql -uroot -p
show databases;

#Web服務

firewall-cmd --permanent --add-service http
systemctl restart firewalld.service
iptables -L -n|grep 80