英雄幻影贴吧:CentOS5.5下快速编译安装最新的LAMP环境

来源:百度文库 编辑:九乡新闻网 时间:2024/04/30 02:14:07

首先安装相关依赖包:
 

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:
 

[root@lamptest~]#tar zxvf mysql-5.1.51.tar.gz
[root@lamptest~]#cd mysql-5.1.51/
[root@lamptest 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
[root@lamptest mysql-5.1.51]#make && make install
[root@lamptest mysql-5.1.51]#groupadd mysql
[root@lamptest mysql-5.1.51]#useradd –g mysql mysql
[root@lamptest mysql-5.1.51]#/usr/local/mysql/bin/mysql_install_db –user=mysql
[root@lamptest mysql-5.1.51]#cp /usr/local/mysql/share/mysql/my-medium /etc/my.cnf
[root@lamptest mysql-5.1.51]#chown –R mysql /usr/local/mysql/var
[root@lamptest mysql-5.1.51]#chgrp –R mysql /usr/local/mysql/.
[root@lamptest mysql-5.1.51]#cp /usr/local/mysql/share/mysql/mysql.server /etc/init.d/mysql
[root@lamptest mysql-5.1.51]#chmod 755 /etc/init.d/mysql
[root@lamptest mysql-5.1.51]#chkconfig –level 345 mysql on
[root@lamptest mysql-5.1.51]#echo “/usr/local/mysql/lib/mysql” >> /etc/ld.so.conf
[root@lamptest mysql-5.1.51]#echo “/usr/local/lib” >> /etc/ld.so.conf
[root@lamptest mysql-5.1.51]#ldconfig
[root@lamptest mysql-5.1.51]#ln –s /usr/local/mysql/lib/mysql /usr/lib/mysql
[root@lamptest mysql-5.1.51]#ln –s /usr/local/mysql/include/mysql /usr/include/mysql
[root@lamptest mysql-5.1.51]#service mysql start
[root@lamptest mysql-5.1.51]#/usr/local/mysql/bin/mysqladmin –u root password $mysqlpass (这里填写你的mysql的密码)
[root@lamptest mysql-5.1.51]#service mysql restart
[root@lamptest mysql-5.1.51]#service mysql stop
[root@lamptest mysql-5.1.51]#cd ../复制代码



安装Apache:
 

[root@lamptest~]#tar zxvf httpd-2.2.17.tar.gz
[root@lamptest~]#cd httpd-2.2.17/
[root@lamptest 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'
[root@lamptest httpd-2.2.17]#make && make install
[root@lamptest httpd-2.2.17]#/usr/local/apache/bin/apachectl start
[root@lamptest httpd-2.2.17]#cd ../复制代码



安装PHP:
 

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

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

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

[root@lamptest~]#tar zxvf mcrypt-2.6.8.tar.gz
[root@lamptest~]#cd mcrypt-2.6.8/
[root@lamptest mcrypt-2.6.8]#/sbin/ldconfig
[root@lamptest mcrypt-2.6.8]#./configure
[root@lamptest mcrypt-2.6.8]#make && make install
[root@lamptest mcrypt-2.6.8]#cd ../

[root@lamptest~]#tar zxvf php-5.2.14.tar.gz
[root@lamptest~]#gzip –d ./suhosin-patch-5.2.14-0.9.7.patch.gz
[root@lamptest~]#gzip –cd php-5.2.14-fpm-0.9.7.diff.gz | patch –d php-5.2.14 -p1
[root@lamptest~]#cd php-5.2.14/
[root@lamptest php-5.2.14]#patch –p 1 –i ../suhosin-patch-5.2.14-0.9.7.patch.gz
[root@lamptest php-5.2.14]#./buildconf --force
[root@lamptest 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
[root@lamptest php-5.2.14]#make ZEND_EXTRA_LIBS=’-liconv’
[root@lamptest php-5.2.14]#make install
[root@lamptest php-5.2.14]#./libtool –finish /usr/local/src/php-5.2.14/libs
[root@lamptest php-5.2.14]#cp php.ini-dist /usr/local/php/etc/php.ini
[root@lamptest php-5.2.14]#echo ‘ulimit –SHn 65535’ >> /etc/rc.local
[root@lamptest php-5.2.14]#cd ../复制代码



修改httpd.conf 添加
AddType applications /x-httpd-php .php
AddType applications /x-httpd-source-php .phps
在DirectoryIndex 添加index.php
curl返回信息:

2010-10-21 17:02 上传下载附件 (46.65 KB) 


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