码迷,mamicode.com
首页 > 数据库 > 详细

centos 安装mariadb 替代mysql

时间:2019-12-23 22:28:17      阅读:111      评论:0      收藏:0      [点我收藏+]

标签:span   install   ber   iad   with   允许   start   初始化   mct   

yum install mariadb-server mariadb
systemctl start mariadb
mysql -uroot -p
默认密码
mysql -uroot -p
mysql_secure_installation  初始化设置  



//允许用户testuser从ip为222.129.1.1的主机连接到mysql服务器,并使用testpassword作为密码 MariaDB [(none)]> grant all privileges on *.* to ‘testuser‘@‘222.129.1.1‘ identified by ‘testpassword‘ with grant option; (若是允许所有ip:GRANT ALL PRIVILEGES ON *.* TO ‘testuser’@‘%’ IDENTIFIED BY ‘testpassword’ WITH GRANT OPTION;) MariaDB [(none)]> flush privileges; //刷新权限缓存 MariaDB [(none)]> show privileges; MariaDB [(none)]> show grants for ‘testuser‘@‘222.129.1.1


systemctl restart mariadb

centos 安装mariadb 替代mysql

标签:span   install   ber   iad   with   允许   start   初始化   mct   

原文地址:https://www.cnblogs.com/vana/p/12088510.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!