Centos7安装mariadb
yum install -y mariadb-server
systemctl enable mariadb
systemctl start mariadb
systemctl status mariadb
mysql_secure_installation
firewall-cmd --add-port=3306/tcp --permanent
firewall-cmd --reload
mysql -u root -p
MariaDB [(none)]> GRANT ALL ON . TO ‘%‘ IDENTIFIED BY "yourpassword";
MariaDB [(none)]> FLUSH PRIVILEGES;
MariaDB [(none)]> exit
相关推荐
Gexrior 2020-10-22
Lostinthewoods 2020-10-29
txt 2020-06-14
azhou 2020-06-12
hungzz 2020-06-11
CharlesYooSky 2020-06-05
aliuge 2020-06-03
URML 2020-05-30
lwwishes 2020-05-29
83173052 2020-05-29
tanyhuan 2020-05-28
muzirigel 2020-05-26
饮马天涯 2020-05-20
aliuge 2020-05-12
83173052 2020-05-10
Mrbianxin 2020-05-07
InJavaWeTrust 2020-05-04