博主辛苦了,我要打赏银两给博主,犒劳犒劳站长。
【摘要】在WAMP环境下,phpMyAdmin是默认安装的,只要在你的本地环境下的项目根目录后面加/phpMyAdmin即可,如:http://127.0.0.1:8080/phpMyAdmin,这样就会直接跳转到phpMyAdmin的页面去。
在WAMP环境中默认是安装了phpMyAdmin的,当然也可以从phpmyadmin官网上去下载,网址:
下载后可以放到自己网站的目录下面,可以用来方便自己的数据界面方式的管理。
另外,WAMP环境下的phpMyAdmin在目录:wamp\apps\phpmyadmin4.1.14下面(当然版本号是不一样的),其实有一个文件是从官网上下载比较中,多的一个文件,是后面创建的:文件名是config.inc.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]['verbose'] = 'mysql wampserver';
//$cfg['Servers'][$i]['auth_type'] = 'cookie';
$cfg['Servers'][$i]['auth_type'] = 'config';
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = '';
/* Server parameters */
$cfg['Servers'][$i]['host'] = '127.0.0.1';
$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.
*/
// No warning on pmadb tables
$cfg['PmaNoRelation_DisableWarning'] = true;
这个配置文件是用来预先写入数据库用户名和密码的,当用户直接输入http://127.0.0.1:8080/phpMyAdmin/index.php的时候可以直接登录,而不用输入用户名即密码,如果并不想要使用这个配置文件,则可以把这文件删除,则每次都需要输入数据库用户名及密码。
版权归 马富天博客 所有
本文标题:《phpMyAdmin 的安装简介》
本文链接地址:http://www.mafutian.net/201.html
转载请务必注明出处,小生将不胜感激,谢谢! 喜欢本文或觉得本文对您有帮助,请分享给您的朋友 ^_^
顶0
踩0