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

centos6.5上安装5.7版本的mysql

时间:2019-05-07 01:23:56      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:sele   机器   roo   htm   nbsp   with   set   指定   date   

centos6.5上安装5.7版本的mysql

 https://www.cnblogs.com/lzj0218/p/5724446.html

 

设置root可以在本机以外的机器访问

 mysql -uroot -ppassword

> use mysql
> select host , user from user;
> update user set host = ‘%‘ where user = ‘root‘;
> select host , user from user;

 

搜权 myuser 用户可以用mypassword,从指定ip访问 所有的库中所有表

grant all privileges on *.* to ‘myuser‘@‘192.168.0.1‘ identified by ‘mypassword‘ with grant option

 

centos6.5上安装5.7版本的mysql

标签:sele   机器   roo   htm   nbsp   with   set   指定   date   

原文地址:https://www.cnblogs.com/moris5013/p/10823147.html

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