导言:在学习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就可以使用账号的密码了。

如下图所示:

wKiom1eHUw3DMV-rAABWogcNKjc336.png-wh_50

说明:这里的配置参数共有三种,分别为cookie,config和http;

1)、cookie : 使用cookie登录认证, 显示一个web登录页面,输入mysql的用户名和密码,然后进入管理界面。一般情况下,都是使用的cookie方式;

2)、config: 把mysql用户名和密码直接填入config.inc.php,不显示登录界面,直接进入管理界面;

3)、http : 使用HTTP认证,显示一个windows登录框,输入mysql的用户名和密码,然和进入管理。如果是使用IIS+PHP的方式,则HTTP认证是无效的,这个功能只能在apache服务器环境下使用。


BugFree软件测试工具之Linux实战课程

http://edu.51cto.com/course/course_id-4855.html