当前位置:Gxlcms > mysql > mysql开启远道访问

mysql开启远道访问

时间:2021-07-01 10:21:17 帮助过:21人阅读

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是密码自己设置 。%表示任意主机。这样就允许远程任意一台主机访问了。

人气教程排行