先关闭selinux,和清除防护墙(测试用)
用到的套件
php-5.2.5.tar.gz
phpMyAdmin-3.4.0-all-languages.tar.gz
配置的部分
[root@localhost ~]# cd /tmp/
[root@localhost tmp]# tar zxvf php-5.2.5.tar.gz
[root@localhost tmp]# cd php-5.2.5
[root@localhost php-5.2.5]# ./configure --prefix=/usr/local/php --with-mysql=/usr/local/mysql --with-apxs2=/usr/local/apache2/bin/apxs
[root@localhost php-5.2.5]# make
[root@localhost php-5.2.5]# make test
[root@localhost php-5.2.5]# make install
[root@localhost php-5.2.5]# vi /etc/ld.so.conf(更新链接库,添加php识别,加上下面的那句话)
/usr/local/mysql/lib
[root@localhost php-5.2.5]# ldconfig
[root@localhost apache2]# cd /usr/local/apache2/conf/
[root@localhost conf]# vi httpd.conf(与mysql的整合)
AddType application/x-httpd-php .php
<IfModule dir_module>
DirectoryIndex index.html index.jsp index.php
</IfModule>
[root@localhost conf]# cd ../htdocs/
[root@localhost htdocs]# vi index.php
<?
phpinfo();
?>
[root@localhost htdocs]# cd /tmp
[root@localhost tmp]# tar phpMyAdmin-3.4.0-all-languages.tar.gz
[root@localhost htdocs]# cp -rv /tmp/phpMyAdmin-3.4.0-all-languages .
[root@localhost htdocs]# cd ../bin
[root@localhost bin]# ./apachectl restart
测试的部分
在外部IE栏中输入 出来php的测试页面
在外部IE栏中输入出来登录页面,输入mysql的用户和密码,就可以以web的形式管理linux的数据库