2013-07-29 159 views
1

我下載後:1045無法登錄到MySQL服務器

  • Wampserver 2.4
  • Apache的版本2.4.4
  • PHP版本5.4.12
  • MySQL版本5.6.12

在Wampserver 2.4上,讓網上 - >全部啓動 - >點擊localhost - >點擊phpMyAdmin。

在phpMyAdmin的屏幕:

歡迎到phpMyAdmin

語言 - 英語

登錄

用戶名

密碼

phpMyAdmin需要用戶名和密碼。

我沒有爲phpMyAadmin提供任何用戶名和密碼。

我不知道,但如果我插入一些用戶名和密碼, 它說:

1045無法登錄到MySQL服務器

請讓我知道我做了什麼錯誤。

供您參考, wamp\apps\phpmyadmin4.0.4\config.in.php代碼:

<?php 
    /* vim: set expandtab sw=4 ts=4 sts=4: */ 
    /** 
    * phpMyAdmin sample configuration, you can use it as base for 
    * manual configuration. For easier setup you can use setup/ 

* 
* All directives are explained in documentation in the doc/ folder 
* or at <http://docs.phpmyadmin.net/>. 
* 
* @package PhpMyAdmin 
*/ 

/* 
* This is needed for cookie based authentication to encrypt password in 
* cookie 
*/ 
$cfg['blowfish_secret'] = 'a8b7c6d'; /* YOU MUST FILL IN THIS FOR COOKIE AUTH! */ 

/* 
* Servers configuration 
*/ 
$i = 0; 

/* 
* First server 
*/ 
$i++; 
/* Authentication type */ 
$cfg['Servers'][$i]['auth_type'] = 'cookie'; 
/* Server parameters */ 
$cfg['Servers'][$i]['host'] = 'localhost'; 
$cfg['Servers'][$i]['connect_type'] = 'tcp'; 
$cfg['Servers'][$i]['compress'] = false; 
/* Select mysql if your server does not have mysqli */ 
$cfg['Servers'][$i]['extension'] = 'mysqli'; 
$cfg['Servers'][$i]['AllowNoPassword'] = true; 

/* 
* phpMyAdmin configuration storage settings. 
*/ 

/* User used to manipulate with storage */ 
// $cfg['Servers'][$i]['controlhost'] = ''; 
// $cfg['Servers'][$i]['controluser'] = 'pma'; 
// $cfg['Servers'][$i]['controlpass'] = 'pmapass'; 

/* Storage database and tables */ 
// $cfg['Servers'][$i]['pmadb'] = 'phpmyadmin'; 
// $cfg['Servers'][$i]['bookmarktable'] = 'pma__bookmark'; 
// $cfg['Servers'][$i]['relation'] = 'pma__relation'; 
// $cfg['Servers'][$i]['table_info'] = 'pma__table_info'; 
// $cfg['Servers'][$i]['table_coords'] = 'pma__table_coords'; 
// $cfg['Servers'][$i]['pdf_pages'] = 'pma__pdf_pages'; 
// $cfg['Servers'][$i]['column_info'] = 'pma__column_info'; 
// $cfg['Servers'][$i]['history'] = 'pma__history'; 
// $cfg['Servers'][$i]['table_uiprefs'] = 'pma__table_uiprefs'; 
// $cfg['Servers'][$i]['tracking'] = 'pma__tracking'; 
// $cfg['Servers'][$i]['designer_coords'] = 'pma__designer_coords'; 
// $cfg['Servers'][$i]['userconfig'] = 'pma__userconfig'; 
// $cfg['Servers'][$i]['recent'] = 'pma__recent'; 
/* Contrib/Swekey authentication */ 
// $cfg['Servers'][$i]['auth_swekey_config'] = '/etc/swekey-pma.conf'; 

/* 
* End of servers configuration 
*/ 

/* 
* Directories for saving/loading files from server 
*/ 
$cfg['UploadDir'] = ''; 
$cfg['SaveDir'] = ''; 

/** 
* Defines whether a user should be displayed a "show all (records)" 
* button in browse mode or not. 
* default = false 
*/ 
//$cfg['ShowAll'] = true; 

/** 
* Number of rows displayed when browsing a result set. If the result 
* set contains more rows, "Previous" and "Next". 
* default = 30 
*/ 
//$cfg['MaxRows'] = 50; 

/** 
* disallow editing of binary fields 
* valid values are: 
* false allow editing 
* 'blob' allow editing except for BLOB fields 
* 'noblob' disallow editing except for BLOB fields 
* 'all' disallow editing 
* default = blob 
*/ 
//$cfg['ProtectBinary'] = 'false'; 

/** 
* Default language to use, if not browser-defined or user-defined 
* (you find all languages in the locale folder) 
* uncomment the desired line: 
* default = 'en' 
*/ 
//$cfg['DefaultLang'] = 'en'; 
//$cfg['DefaultLang'] = 'de'; 

/** 
* default display direction (horizontal|vertical|horizontalflipped) 
*/ 
//$cfg['DefaultDisplay'] = 'vertical'; 


/** 
* How many columns should be used for table display of a database? 
* (a value larger than 1 results in some information being hidden) 
* default = 1 
*/ 
//$cfg['PropertiesNumColumns'] = 2; 

/** 
* Set to true if you want DB-based query history.If false, this utilizes 
* JS-routines to display query history (lost by window close) 
* 
* This requires configuration storage enabled, see above. 
* default = false 
*/ 
//$cfg['QueryHistoryDB'] = true; 

/** 
* When using DB-based query history, how many entries should be kept? 
* 
* default = 25 
*/ 
//$cfg['QueryHistoryMax'] = 100; 

/* 
* You can find more configuration options in the documentation 
* in the doc/ folder or at <http://docs.phpmyadmin.net/>. 
*/ 
?> 
+1

如果您在安裝過程中沒有輸入任何用戶名/密碼,您的默認用戶名應該是** root **,並且在提示輸入密碼時,只需按Enter鍵即可。這應該工作。 –

回答

7

登錄使用默認的口令:

用戶名:根

密碼:[空]

與[null]我mea根本沒有密碼。

+0

親愛的克里斯:謝謝你的迴應。謝謝 – Happy

+1

With [null]我的意思是根本沒有密碼 – Joren

+0

此外,我還沒有輸入任何密碼,但我仍然有同樣的錯誤,我的名字叫Joren,你的文章的編輯的名字是Chris。 – Joren

1

安裝完成後,在開始菜單上,嘗試右鍵單擊「啓動WampServer」和「以管理員身份運行」。 然後可以以root身份登錄到MySQL(PHPMyAdmin),無需任何密碼。我試着點擊「啓動WampServer」,它只會上升到橙色。在搜索了幾個博客後指着改變某個配置文件,上面發生在我身上,它的工作)。

0

1)打開你的MySQL控制檯 - 使用WAMP,左鍵點擊你的WAMP的圖標位於桌面的右下角和MySQL的控制檯點擊 系統將提示您輸入密碼,如果你有一個可以忽略以下步驟

按ENTER 式中:使用的MySQL

按ENTER

2)輸入命令行以下

設置您的MySQL密碼:UPDATE mysql.user SET Password = PASSWORD(「EnterYourPasswordHere」)WHERE User =「root」; 用您選擇的新密碼替換「EnterYourPasswordHere」。

按ENTER鍵。

沖洗權限: 類型FLUSH PRIVILEGES;

退出鍵入:退出

然後按ENTER

3)打開和編輯您的config.inc.php文件位於本地服務器的文件

進入我的電腦> C驅動器>(你的本地服務器文件夾,WAMP/MAMP/XAMPP)>應用程序> PHPMYADMIN> config.inc.php 找到這行代碼:$ cfg ['Servers'] [$ i] ['password'] =''; // MySQL的密碼

更改「密碼」到新選擇的密碼,您從步驟2

創建單擊保存。

4)您可以通過訪問http://localhost/phpMyAdmin/訪問phpMyAdmin。

恭喜!您現在可以訪問您的數據庫。

+0

請格式化您的答案。現在它不太可讀。 – Opal

+0

當MySQL要求輸入密碼時,我按下Enter鍵。它只是關閉 – CodyBugstein

相關問題