您好,登錄后才能下訂單哦!
導言:在學習bugfree的時候,很多學員反映需要遠程訪問phpmyadmin,但是配置好外網訪問后,發現phpmyadmin不需要登錄就能進去,感到不安全,于是有了一下的配置,幫助大家設置密碼和正常的用戶名和賬號登錄phpmyadmin。
步驟如下:
1、首先建議大家檢查一下自己是否設置了一系列的安全賬號,進入linux系統的命令終端,輸入:sudo /opt/lampp/lampp security;
2、然后就會出現一些列的賬號設置,大家一路設置下去就行,總體設置如下所示:
XAMPP: Quick security check...
XAMPP: Your XAMPP pages are NOT secured by a password.
XAMPP: Do you want to set a password? [yes] yes (1)
XAMPP: Password: ******
XAMPP: Password (again): ******
XAMPP: Password protection active. Please use 'lampp' as user name!
XAMPP: MySQL is accessable via network.
XAMPP: Normaly that's not recommended. Do you want me to turn it off? [yes] yes
XAMPP: Turned off.
XAMPP: Stopping MySQL...
XAMPP: Starting MySQL...
XAMPP: The MySQL/phpMyAdmin user pma has no password set!!!
XAMPP: Do you want to set a password? [yes] yes
XAMPP: Password: ******
XAMPP: Password (again): ******
XAMPP: Setting new MySQL pma password.
XAMPP: Setting phpMyAdmin's pma password to the new one.
XAMPP: MySQL has no root passwort set!!!
XAMPP: Do you want to set a password? [yes] yes
XAMPP: Write the passworde somewhere down to make sure you won't forget it!!!
XAMPP: Password: ******
XAMPP: Password (again): ******
XAMPP: Setting new MySQL root password.
XAMPP: Setting phpMyAdmin's root password to the new one.
XAMPP: The FTP password for user 'nobody' is still set to 'lampp'.
XAMPP: Do you want to change the password? [yes] yes
XAMPP: Password: ******
XAMPP: Password (again): ******
XAMPP: Reload ProFTPD...
XAMPP: Done.
3、如果設置完畢之后(最好先重啟lampp服務),還是不能通過賬號和密碼訪問phpmyadmin,那么需要修改一個文件。
打開phpMyAdmin根目錄下的config.inc.php,按照以下行修改就可以了:
把$cfgServers[$i]['auth_type']= 'config';修改成:
$cfgServers[$i]['auth_type']= 'cookie';
4、保存文件,重新訪問phpmyadmin就可以使用賬號的密碼了。
如下圖所示:
說明:這里的配置參數共有三種,分別為cookie,config和http;
1)、cookie : 使用cookie登錄認證, 顯示一個web登錄頁面,輸入mysql的用戶名和密碼,然后進入管理界面。一般情況下,都是使用的cookie方式;
2)、config: 把mysql用戶名和密碼直接填入config.inc.php,不顯示登錄界面,直接進入管理界面;
3)、http : 使用HTTP認證,顯示一個windows登錄框,輸入mysql的用戶名和密碼,然和進入管理。如果是使用IIS+PHP的方式,則HTTP認證是無效的,這個功能只能在apache服務器環境下使用。
http://edu.51cto.com/course/course_id-4855.html
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。