我创建了一个网站,需要访问家里PC上的MySQL服务器,但无法连接
我得到了这个错误
mysql.connector.errors.DatabaseError: 2003 (HY000): Can't connect to MySQL server on 'my public ip' (10061)
是否使用PC的公网IP?或者服务器有自己的服务器吗?
我已经将绑定地址设置为0.0.0.0并打开了端口3306,我可以使用本地主机和我的私有IP连接到服务器
我做了自己的自定义计数器,用来计算连接到我网站的人数。代码如下:
$date=date("Y-m-d H:i:s");
$ip=$_SERVER['REMOTE_ADDR'];
$query=mysql_query("SELECT date, id FROM views WHERE ip='$ip' ORDER BY date DESC",$mydb);
if(mysql_num_rows($query)!=0){
$id_ip=mysql_result($query,0,'id');
$limi
我注册了一个免费虚拟主机的账号。该站点提供MySQL数据库,我正尝试使用windows应用程序访问它,但无法连接到服务器。请考虑我的代码:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using MySql.Data.MySqlClient;
namespace MySql
我有一个db服务器db.example.com CNAME到它的外部ec2域ec2-some-ip.aws.com
我有一个客户端ec2-another-ip.aws.com试图连接到我的db.example.com。我授予特权:
grant all privileges on *.* to 'some_user'@'ec2-another-ip.aws.com';
在客户端尝试:
mysql -u some_user -h db.example.com
只得到:
ERROR 1130 (00000): Host 'my-client-internal-
我无法连接到由主机提供商保存的MySQL数据库。
我已经在cPanel中正确设置了帐户,以便在从php服务器运行php代码时能够连接到数据库。
但是现在我想通过Mac上的数据库工具而不是phpmyadmin来访问它。我添加了我的IP ( IP和DNS名称.)到cPanel中的“远程数据库访问主机”。我已经尝试从PHP和直接连接。我总是得到:
MySQL Said: Can't connect to MySQL server on 'xxx.xxx.xxx.xxx' (4)
Use the following configuration settings for con