phpadmin安装过程全记录
时间:2010-10-12 来源:yilongtech
phpadmin安装过程全记录
一、安装环境:
centos 5
apache-2.2.14
php-5.2.11
mysql-5.0.88
phpMyAdmin-3.3.7
lamp环境已经搭建好,故这里不再叙述lamp的安装,直接讲解phpmyadmin的安装。
1. 下载phpMyAdmin-3.3.7
wget http://sourceforge.net/projects/phpmyadmin/files%2FphpMyAdmin%2F3.3.7%2FphpMyAdmin-3.3.7-all-languages.tar.gz/download
2. tar zxvf phpMyAdmin-3.3.7-all-languages.tar.gz
3. mv phpMyAdmin-3.3.7-all-languages /usr/local/apache/htdocs/phpMyAdmin
4. cd /usr/local/apache/htdocs/
5. chmod -R 777 phpMyAdmin/
6. cp config.sample.inc.php config.inc.php
7. vi config.inc.php修改以下的参数为:(如果没有,可自己添加)
$cfg['Servers'][$i]['auth_type'] = 'config';
/* Server parameters */
$cfg['Servers'][$i]['host'] = 'localhost';
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = 'sql#data88'; 8. 配置apache配置文件:/usr/local/apache/conf/extra/httpd-vhost.conf 添加: <VirtualHost 192.168.1.41:80>
ServerAdmin [email protected]
DocumentRoot "/usr/local/apache/htdocs/phpMyAdmin"
ServerName mysql.admin
ErrorLog "logs/mysql.admin-error_log"
CustomLog "logs/mysql.admin-access_log" common
</VirtualHost> 9. 重新启动apache服务 配置好hosts后,就可以通过http://mysql.admin来访问了。
/* Server parameters */
$cfg['Servers'][$i]['host'] = 'localhost';
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = 'sql#data88'; 8. 配置apache配置文件:/usr/local/apache/conf/extra/httpd-vhost.conf 添加: <VirtualHost 192.168.1.41:80>
ServerAdmin [email protected]
DocumentRoot "/usr/local/apache/htdocs/phpMyAdmin"
ServerName mysql.admin
ErrorLog "logs/mysql.admin-error_log"
CustomLog "logs/mysql.admin-access_log" common
</VirtualHost> 9. 重新启动apache服务 配置好hosts后,就可以通过http://mysql.admin来访问了。
相关阅读 更多 +