最佳答案
我可以很容易地授权访问一个 IP 使用这个代码:
$ 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;
但我需要允许整个子网192.168.1. * 远程访问数据库。
我该怎么做?