1.通过navicat或者命令行,将user表中原来host=localhost的改为host=% 命令行方式: mysql> update user set host = '%' where host= 'localhost'; 2.授权访问给root用户 mysql>grant all privileges on *.* to 'root'@'%' identified by 'password' with grant option; 3.刷新mysql的权限配置 mysql> fl…
在 ASP.NET 开发中,WebService部署成站点之后,如果在本地测试WebService可以运行,在远程却显示“测试窗体只能用于来自本地计算机的请求”或 者"The test form is only available for requests from the local machine. ",那是因为没有开启远程访问.…