mysql 开启远道 访问
程序员文章站
2023-12-27 17:44:51
...
mysql 开启远程 访问 mysql -uroot -p 输入密码,执行下面这条语句 grant all privileges on *.* to ‘user‘@’%‘ identified by ‘password‘ with grant option; 其中,user是用户名,mysql默认的是root ,password是密码自己设置 。%表示任意主机。这样
mysql 开启远程 访问mysql -uroot -p
输入密码,执行下面这条语句
grant all privileges on *.* to ‘user‘@’%‘ identified by ‘password‘ with grant option;
其中,user是用户名,mysql默认的是root ,password是密码自己设置 。%表示任意主机。这样就允许远程任意一台主机访问了。