警告:mysql_connect() [function.mysql-connect]: [2002] 无法建立连接,因为目标机器在 D:\Hosting\8224951\html\word 中主动(尝试通过 tcp://localhost:3306 连接) \wp-includes\wp-db.php 在第 1141 行
警告:mysql_connect() [function.mysql-connect]:无法建立连接,因为目标机器主动拒绝。在第 1141 行的 D:\Hosting\8224951\html\word\wp-includes\wp-db.php
尝试连接到我的 wordpress 网站时,我总是遇到此错误。我到处搜索,似乎找不到解决方案。
这是我的 wp_db 文件包含在 1141 上。
if ( WP_DEBUG ) {
$this->dbh = mysql_connect(':/Applications/MAMP/tmp/mysql/mysql.sock', 'ShiftBusinessSol', '123456!');
} else {
$this->dbh = mysql_connect(':/Applications/MAMP/tmp/mysql/mysql.sock', 'ShiftBusinessSol', '123456!');
}
至于配置我有这个:
/** The name of the database for WordPress */
define('DB_NAME', 'ShiftBusinessSol');
/** MySQL database username */
define('DB_USER', 'ShiftBusinessSol');
/** MySQL database password */
define('DB_PASSWORD', '123456!');
/** MySQL hostname */
define('DB_HOST', '127.0.0.1:3306');
/** Database Charset to use in creating database tables. */
define('DB_CHARSET', 'utf8');
/** The Database Collate type. Don't change this if in doubt. */
define('DB_COLLATE', '');