网站根目录为/your/path,phpmyadmin安装包在/path-to-install下。
[root@CentOS ~]# tar -zxvf /tmp/phpMyAdmin-2.11.9-all-languages.tar.gz -C /usr/local/src
[root@CentOS ~]# mv phpMyAdmin-2.11.9-all-languages /your-path/phpmyadmin
[root@CentOS ~]# cp /your-path/phpmyadmin/libraries/config.default.php /your-path/phpmyadmin/config.php
[root@CentOS ~]# vi /your-path/phpmyadmin/config.php
下面就来修改文档。
1,查找 $cfg['PmaAbsoluteUri'] 修改为你将上传到空间的phpMyAdmin的网址
例如:$cfg['PmaAbsoluteUri'] = '';
2,$cfg['Servers'][$i]['host'] = 'localhost';(通常用默认,不用修改)
3,$cfg['Servers'][$i]['auth_type'] = 'cookie';
在调试用config;如果在网络上用cookie
4,$cfg['Servers'][$i]['user'] = 'root'; // MySQL user(mysql用户名;)
5,$cfg['Servers'][$i]['password'] = ''; // MySQL password (mysql用户的密码;)
6,$cfg['Servers'][$i]['only_db'] = ''; // If set to a db-name, only(你只有一个数据就设置一下;如果你在本机或想架设服务器,那么建议留空)
7,$cfg['DefaultLang'] = 'zh';
如果出现“配置文件现在需要绝密的短语密码(blowfish_secret)”那么请在$ cfg['blowfish_secret'] = ' ';的等号里面设置你网站的cookie,例如:$cfg['blowfish_secret'] = '任意字符';这是因为你的“$cfg['Servers'][$i]['auth_type'] = 'cookie'的原因。
打开 输入用户名和密码,不出意外,应该就能正常登陆。
阅读(1664) | 评论(0) | 转发(0) |