首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > Mysql >

转载:设立mysql的远程访问

2012-11-15 
转载:设置mysql的远程访问1.登陆Mysqlmysql -u root -p2.允许任何IP访问,其中密码为admingrant all privil

转载:设置mysql的远程访问

1.登陆Mysqlmysql -u root -p2.允许任何IP访问,其中密码为admingrant all privileges on *.* to root@"%" identified by "admin" with grant option;3.允许特定IP访问,其中密码为admingrant all privileges on *.* to root@"192.168.0.1" identified by "passw0rd" with grant option; flush privileges;

热点排行