授权远程连接MySQL(Linux)_MySQL
程序员文章站
2022-05-21 16:45:01
...
MySQL远程访问的命令 格式: mysql -h主机地址 -u用户名 -p用户密码
首先在目标服务器上(115.159.66.51)修改mysql的my.cnf文件:
数据库):
grant all privileges on haibao.* to ‘root’@’115.159.66.51’ identified by ‘xiongchao’ with grant option;
赋予任何主机以root的身份访问数据权限(注:访问haibao数据库):
grant all privileges on haibao.* to ‘root’@’%’ identified by ‘xiongchao’ with grant option;
修改生效:
flush privileges;
上一篇: nginx平台上运行PHP将会变得非常轻松_PHP教程
下一篇: 对ArrayList进行分组