2010-04-29 161 views
0

我在Drupal中配置數據庫設置時遇到問題。我在這裏提出一些樣本數據:Drupal,mysql服務器設置

Database Mysql: 
Database: databaseName 
User: user 
Password: password 
Server: server.com 
Server Choice: mysqldb2 (in phpmyadmin I have this option and I can choose between mysqldb1 and mysqldb2 to access to the mysql server) 

該錯誤消息我得到的是:

MySQL的錯誤是:拒絕訪問 用戶: '用戶名@ localhost' 的(使用 密碼:YES )。

我試過在settings.php配置如下行,但我總是得到同樣的錯誤信息:

$db_url = 'mysql://user:[email protected]/databaseName'; 
$db_url = 'mysql://user:[email protected]/databaseName/mysqldb2'; 

的用戶名和密碼的工作在phpMyAdmin,所以我敢肯定,他們是正確的。

感謝

回答

0

server.com?我認爲您必須在您的字符串中更改localhostserver.com

$db_url = 'mysql://user:[email protected]/databaseName';