centos7安装mariadb

来源:互联网 发布:淘宝网品牌女裤 编辑:程序博客网 时间:2024/04/30 03:37
yum -y install mariadb*

service mariadb start

mysqladmin -u root password 'newpassword'

mysql -uroot -pxxxxx

grant all on *.* to 'root'@'%' identified by ''xxxx'';
flush privileges;

0 0