1、授权访问
以下为允许任何主机使用myuser
账号和mypwd
密码连接到MySQL
服务器
mysql> GRANT ALL PRIVILEGES ON *.* TO 'myuser'@'%' IDENTIFIED BY 'mypwd' WITH GRANT OPTION;
2、刷新授权
mysql> FLUSH PRIVILEGES;
3、使用root远程访问
root账号默认不允许从远程登陆,只能从localhost
登录。可以通过修改 MySQL
数据库里的user
表里的Host
项,将localhost
改为%
,%
表示所有机器都允许。文章源自新逸网络-https://www.xinac.net/8861.html
mysql> use mysql;
mysql> update user set Host='%' where User='root';
# 远程登录MySQL
mysql -h127.0.0.1 -uroot -p
文章源自新逸网络-https://www.xinac.net/8861.html
文章源自新逸网络-https://www.xinac.net/8861.html 文章源自新逸网络-https://www.xinac.net/8861.html
新逸IT技术
扫一扫关注微信公众号
评论