标签:
在centos7用MariaDB代替了mysql数据库
yum install mariadb maraidb-server
systemctl start mariadb #设置开机启动 systemctl enable mariadb #关闭mariadb systemctl stop mariadb #重启maraidb systemctl restart mariadb
--这里测试修改root用户的密码 --password是一个加密函数 update user set password=password(‘root‘) where user=‘root‘;
flush privileges;
--授权给所有机器的所有用root/root登录的用户对所有的表的增删改查的权限 grant all on *.* to ‘root‘@‘%‘ identified by ‘root‘; -- all 所有权限 -- *.* 所有的表等 -- ‘root‘@‘%‘ 所有机器的root用户 -- identified by ‘root‘ 使用root密码登录的
执行3.2中的语句,是设置生效
设置完成!
标签:
原文地址:http://www.cnblogs.com/hpuCode/p/5203184.html