远程的数据库时,我用了mysql_real_connect出了以下的错
在连接一个远程的数据库时,我用了mysql_real_connect(mysql,"202.118.117.56","root",,NULL,"hhh",0,NULL,0)的函数
但是由于使用了“202。。。。”的IP作为参数,出了以下的错
mysql_real_connect:Can't connect to MySQL server on '202.118.117.56' (101) not successful!
请问是什么原因,如何解决?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
use the following command line:
mysql -u root -p -h 202.118.117.56
to make sure that you can access the MySQL database on 202.118.117.56 from the machine you run mysql_real_connect