CentOS5.5下快速编译安装最新的LAMP环境

文章转自linuxtone论坛:http://bbs.linuxtone.org/thread-7579-1-1.html

首先安装相关依赖包:
 

sudo -s 
LANG=C
yum -y install gcc gcc-c++ autoconf libjpeg libjpeg-devel libpng libpng-devel freetype freetype-devel libxml2 libxml2-devel zlib zlib-devel glibc glibc-devel glib2 glib2-devel bzip2 bzip2-devel ncurses ncurses-devel curl curl-devel e2fsprogs e2fsprogs-devel krb5 krb5-devel libidn libidn-devel openssl openssl-devel openldap openldap-devel nss_ldap openldap-clients openldap-servers
复制代码



安装MySQL:
 

[[email protected]~]#tar zxvf mysql-5.1.51.tar.gz
[[email protected]~]#cd mysql-5.1.51/
[[email protected] mysql-5.1.51]#./configure --prefix=/usr/local/mysql --with-extra-charsets=all --enable-thread-safe-client --enable-assembler --with-charset=utf8 --enable-thread-safe-client --with-extra-charsets=all --with-big-tables --with-readline --with-ssl --with-embedded-server --enable-local-infile
[[email protected] mysql-5.1.51]#make && make install
[[email protected] mysql-5.1.51]#groupadd mysql
[[email protected] mysql-5.1.51]#useradd –g mysql mysql
[[email protected] mysql-5.1.51]#/usr/local/mysql/bin/mysql_install_db –user=mysql
[[email protected] mysql-5.1.51]#cp /usr/local/mysql/share/mysql/my-medium /etc/my.cnf
[[email protected] mysql-5.1.51]#chown –R mysql /usr/local/mysql/var
[[email protected] mysql-5.1.51]#chgrp –R mysql /usr/local/mysql/.
[[email protected] mysql-5.1.51]#cp /usr/local/mysql/share/mysql/mysql.server /etc/init.d/mysql
[[email protected] mysql-5.1.51]#chmod 755 /etc/init.d/mysql
[[email protected] mysql-5.1.51]#chkconfig –level 345 mysql on
[[email protected] mysql-5.1.51]#echo “/usr/local/mysql/lib/mysql” >> /etc/ld.so.conf
[[email protected] mysql-5.1.51]#echo “/usr/local/lib” >> /etc/ld.so.conf
[[email protected] mysql-5.1.51]#ldconfig
[[email protected] mysql-5.1.51]#ln –s /usr/local/mysql/lib/mysql /usr/lib/mysql
[[email protected] mysql-5.1.51]#ln –s /usr/local/mysql/include/mysql /usr/include/mysql
[[email protected] mysql-5.1.51]#service mysql start
[[email protected] mysql-5.1.51]#/usr/local/mysql/bin/mysqladmin –u root password $mysqlpass (这里填写你的mysql的密码)
[[email protected] mysql-5.1.51]#service mysql restart
[[email protected] mysql-5.1.51]#service mysql stop
[[email protected] mysql-5.1.51]#cd ../
复制代码



安装Apache:
 

[[email protected]~]#tar zxvf httpd-2.2.17.tar.gz
[[email protected]~]#cd httpd-2.2.17/
[[email protected] httpd-2.2.17]#./configure --prefix=/usr/local/apache --enable-rewrite=shared --enable-so --enable-ssl --with-charset=UTF8 --disable-access --disable-auth --disable-charset-lite --disable-include --disable-log-config --disable-env --disable-setenvif --disable-mime --disable-status --disable-autoindex --disable-asis --disable-cgid --disable-cgi --disable-negotiation --disable-dir --disable-actions --disable-userdir --disable-alias --enable-so --enable-mods-shared='access auth auth_anon auth_dbm auth_digest dav dav_fs actions alias asis autoindex cache cern_meta cgi charset_lite deflate dir disk_cache env expires file_cache headers include info log_config logio mime mime_magic negotiation rewrite setenvif speling status unique_id userdir usertrack vhost_alias'
[[email protected] httpd-2.2.17]#make && make install
[[email protected] httpd-2.2.17]#/usr/local/apache/bin/apachectl start
[[email protected] httpd-2.2.17]#cd ../
复制代码



安装PHP:
 

[[email protected]~]#tar zxvf libiconv-1.13.tar.gz
[[email protected]~]#cd libiconv-1.13/
[[email protected] libiconv-1.13]#./configure –prefix=/usr/local
[[email protected] libiconv-1.13]#make && make install
[[email protected] libiconv-1.13]#cd ../ 

[[email protected]~]#tar zxvf libmcrypt-2.5.8.tar.gz
[[email protected]~]#cd libmcrypt-2.5.8/
[[email protected] libmcrypt-2.5.8]#./configure
[[email protected] libmcrypt-2.5.8]#make && make install
[[email protected] libmcrypt-2.5.8]#/sbin/ldconfig
[[email protected] libmcrypt-2.5.8]#cd libltdl/
[[email protected] libltdl]#./configure –enable-ltdl-install
[[email protected] libltdl]#make && make install
[[email protected] libltdl]#cd ../../ 

[[email protected]~]#tar zxvf mhash-0.9.9.9.tar.gz
[[email protected]~]#cd mhash-0.9.9.9/
[[email protected] mhash-0.9.9.9]#./configure
[[email protected] mhash-0.9.9.9]#make && make install
[[email protected] mhash-0.9.9.9]#cd ../ 
[[email protected]~]#ln –s /usr/local/lib/libmcrypt.la /usr/lib/libmcrypt.la
[[email protected]~]#ln –s /usr/local/lib/libmcrypt.so /usr/lib/libmcrypt.so
[[email protected]~]#ln –s /usr/local/lib/libmcrypt.so.4 /usr/lib/libmcrypt.so.4
[[email protected]~]#ln –s /usr/local/lib/libmcrypt.so.4.4.8 /usr/lib/libmcrypt.so.4.4.8
[[email protected]~]#ln –s /usr/local/lib/libmhash.a /usr/lib/libmhash.a
[[email protected]~]#ln –s /usr/local/lib/libmhash.la /usr/lib/libmhash.la
[[email protected]~]#ln –s /usr/local/lib/libmhash.so /usr/lib/libmhash.so
[[email protected]~]#ln –s /usr/local/lib/libmhash.so.2 /usr/lib/libmhash.so.2
[[email protected]~]#ln –s /usr/local/lib/libmhash.so.2.0.1 /usr/lib/libmhash.so.2.0.1
[[email protected]~]#ln –s /usr/local/bin/libmcrypt-config /usr/bin/libmcrypt-config 

[[email protected]~]#tar zxvf mcrypt-2.6.8.tar.gz
[[email protected]~]#cd mcrypt-2.6.8/
[[email protected] mcrypt-2.6.8]#/sbin/ldconfig
[[email protected] mcrypt-2.6.8]#./configure
[[email protected] mcrypt-2.6.8]#make && make install
[[email protected] mcrypt-2.6.8]#cd ../

[[email protected]~]#tar zxvf php-5.2.14.tar.gz
[[email protected]~]#gzip –d ./suhosin-patch-5.2.14-0.9.7.patch.gz
[[email protected]~]#gzip –cd php-5.2.14-fpm-0.9.7.diff.gz | patch –d php-5.2.14 -p1
[[email protected]~]#cd php-5.2.14/
[[email protected] php-5.2.14]#patch –p 1 –i ../suhosin-patch-5.2.14-0.9.7.patch.gz
[[email protected] php-5.2.14]#./buildconf --force
[[email protected] php-5.2.14]#./configure --prefix=/usr/local/php --with-config-file-path=/usr/local/php/etc --enable-mbstring --enable-ftp --with-gd --with-jpeg-dir=/usr --with-png-dir=/usr --enable-magic-quotes --with-mysql=/usr/local/mysql --with-pear --enable-sockets --with-ttf --with-freetype-dir=/usr --enable-gd-native-ttf --with-zlib --enable-sysvsem --enable-sysvshm --with-libxml-dir=/usr --with-apxs2=/usr/local/apache/bin/apxs --with-iconv-dir=/usr/local --with-xmlrpc --enable-xml --enable-shmop --enable-zip --with-mhash --with-mcrypt --enable-discard-path --enable-bcmath --enable-inline-optimization --with-curl --with-curlwrappers --enable-mbregex --with-openssl
[[email protected] php-5.2.14]#make ZEND_EXTRA_LIBS=’-liconv’
[[email protected] php-5.2.14]#make install
[[email protected] php-5.2.14]#./libtool –finish /usr/local/src/php-5.2.14/libs
[[email protected] php-5.2.14]#cp php.ini-dist /usr/local/php/etc/php.ini
[[email protected] php-5.2.14]#echo ‘ulimit –SHn 65535’ >> /etc/rc.local
[[email protected] php-5.2.14]#cd ../
复制代码



修改httpd.conf 添加
AddType applications /x-httpd-php .php
AddType applications /x-httpd-source-php .phps
在DirectoryIndex 添加index.php
curl返回信息:
CentOS5.5下快速编译安装最新的LAMP环境


相关安全设置:
修改php.ini expose_php=off
disable_functions=symlink,shell_exec,exec,proc_close,proc_open,popen,
system,dl,passthru,escapeshellarg, escapeshellcmd



本文转自holy2009 51CTO博客,原文链接:http://blog.51cto.com/holy2010/430105