centos6.5上安装5.7版本的mysql
Posted moris5013
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos6.5上安装5.7版本的mysql相关的知识,希望对你有一定的参考价值。
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的主要内容,如果未能解决你的问题,请参考以下文章
Linux 使用rpm方式安装最新mysql(5.7)步骤以及常见问题解决
如何将 MySQL 5.5.40 升级到 MySQL 5.7