English 中文(简体)
使用 PHP CHP 纸板配置的远程 MySQL 访问
原标题:Remote MySQL access with PHP cPanel configuration

很简单,但我解决不了 所以我希望有人能尽快给我答案

我有两个独立的服务器。 MySQL 数据库主机在服务器 # 1 上, 而服务器上的 PHP 文件正在通过查询来运行网站。 现在我希望通过远程访问同一个数据库和运行 DB 查询来在网站 # 2 上拥有相同的内容 。

我给了服务器 # 1 上的远程 IP 访问 DB IP 权限。 我将相同的 PHP 文件( 正在服务器 # 1 上查询) 复制到服务器 # 2, 并将本地主机更改为服务器的 IP 地址 。 用户名和密码保持不变 。

当我运行 PHP 文件时, 我收到一条信息“ 找不到数据库 ” 。

这是访问服务器 # 1 数据库的 PHP 代码, 与数据库所在的服务器相同 :

$user_name = "database_xxx";
$password = "xxx";
$database = "database_name";
$server = "localhost";

这是第二个案例,服务器#2上的 PHP 文件, 应该访问同一个数据库 :

$user_name = "database_xxx";
$password = "xxx";
$database = "database_name";
$server = "xx.xxx.xxx.xxx"; //IP address of server #1
问题回答

您说您已经检查过防火墙 & amp; 确保远程主机与 DB 的机器连接, 所以这些功能就会被关闭。 最容易检查的事情就是权限。 记住允许 < code> user@ host & amp; 您可能只允许访问 < code > user@ localhost 。 之后, 时间到了 < a href=" "http://dev. mysql. com/doc/ refman/5.5/ en/ can- non- connot- connect- to- server. html" rel= "nofolpt" > 查看您的数据库配置。 < / a >

如果您在使用 Cpanel 时, 您真正应该做的是去数据库下的远程 MySql... 在输入字段中, 它请求允许连接 。 只要输入服务器# 2 的域名, 输入您在问题中给出的相同配置 。 但这次, 而不是将服务器# 1 的 IP 地址放在服务器# 2 Php 连接代码中, 而是将服务器 # 1 的域名放在服务器 # 1 的域名上 。

$user_name = "database_xxx";
$password = "xxx";
$database = "database_name";
$server = "server#1.com"; //Domain name address of server #1




相关问题
SQL SubQuery getting particular column

I noticed that there were some threads with similar questions, and I did look through them but did not really get a convincing answer. Here s my question: The subquery below returns a Table with 3 ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

php return a specific row from query

Is it possible in php to return a specific row of data from a mysql query? None of the fetch statements that I ve found return a 2 dimensional array to access specific rows. I want to be able to ...

Character Encodings in PHP and MySQL

Our website was developed with a meta tag set to... <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> This works fine for M-dashes and special quotes, etc. However, I ...

Pagination Strategies for Complex (slow) Datasets

What are some of the strategies being used for pagination of data sets that involve complex queries? count(*) takes ~1.5 sec so we don t want to hit the DB for every page view. Currently there are ~...

Averaging a total in mySQL

My table looks like person_id | car_id | miles ------------------------------ 1 | 1 | 100 1 | 2 | 200 2 | 3 | 1000 2 | 4 | 500 I need to ...

热门标签