phpMyAdmin安装
安装环境:LANMP 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‘] = ‘1‘; 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来访问了。
本文出自 “Linux_Config” 博客,请务必保留此出处http://jialiang1026.blog.51cto.com/10119067/1632260
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。