您当前的位置: 首页 > 学无止境 > 心得笔记 网站首页心得笔记
mysql允许指定ip链接
发布时间:2017-04-19 19:12:25编辑:雪饮阅读()
$ mysql -u root -p
Enter password:
mysql> use mysql
mysql> GRANT ALL ON *.* to root@'192.168.1.4' IDENTIFIED BY 'your-root-password';
mysql> FLUSH PRIVILEGES;
关键字词:mysql,指定,ip
下一篇:curl的post方式提交数据