LAMP全新安装 Linux Apache MySQL PHP phpMyadmin Zend
作者 佚名技术
来源 Linux系统
浏览
发布时间 2012-05-10
|
四:解压并安装php([url]http://www.php.net[/url] )
[root@redhat tmp]# tar zxvf php-5.2.3.tar.gz
[root@redhat php-5.2.3]# ./configure --prefix=/usr/local/php
--with-mysql=/usr/local/mysql --with-apxs2=/usr/local/httpd/bin/apxs
--with-libxml-dir=/usr/include/libxml2/libxml --with-gd=/usr/local/gd/
--with-png=/usr/local/png/ --with-jpeg=/usr/local/jpeg/ --with-xpm
--with-zlib --enable-debug --enable-magic-quotes --enable-libgcc
--enable-ftp --enable-mbstring --enable-sockets --with-gnu-ld
[root@redhat php-5.2.3]# make
[root@redhat php-5.2.3]# make install
[root@redhat php-5.2.3]# cp php.ini-recommended /usr/local/php/etc/php.ini
|
五:设置http.conf来支持PHP
[root@redhat php-5.2.3]# vi /usr/local/httpd/conf/httpd.conf
AddType application/x-httpd-php .php .phtml
AddType application/x-httpd-php-source .phps
DirectoryIndex index.html index.html.var index.htm index.php
|
六:解压并设置phpmyadmin
[root@redhat tmp]# tar zxvf phpMyAdmin-2.11.2-all-languages.tar.gz
[root@redhat tmp]# mv phpMyAdmin-2.11.2-all-languages /usr/local/httpd/htdocs/phpmyadmin
[root@redhat tmp]# cd /usr/local/httpd/htdocs/phpmyadmin
[root@redhat phpmyadmin]# cp ./libraries/config.default.php ./config.inc.php
[root@redhat phpmyadmin]vi config.inc.php
$cfg[''PmaAbsoluteUri''] = ''[url]http://localhost/phpmyadmin'';[/url]
$cfg[''Servers''][$i][''auth_type''] = ''http'';
|
七:建立php测试文件,启动apache
[root@redhat tmp]#vi /usrc/local/httpd/htdocs/phpinfo.php
----------------------------
<?php phpinfo(); ?>
----------------------------
[root@redhat tmp]# /usr/local/httpd/bin/apachectl start
|
此时,在浏览器中输入:[url]http://ip/phpinfo.php[/url],会出现以下画面,图中显示GD库已正确安装
再测试phpmyadmin,同样在浏览器中输入:[url]http://ip/phpmyadmin[/url]
八:安装Zend
[root@redhat tmp]# tar zxvf ZendOptimizer-3.2.2-linux-glibc21-i386.tar.gz
[root@redhat tmp]# cd ZendOptimizer-3.2.2-linux-glibc21
[root@redhat ZendOptimizer-3.2.2-linux-glibc21 ]# ./install.sh
|
至此,LAMP已完全安装成功,全面基于源码的方式安装完成,所用的系统及已安装的相关组件可以点这里查看.
|
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn
为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!
|