首先,系統(tǒng)為干凈的系統(tǒng) 未安裝apache mysql php等程序
(1).安裝gd庫
tar zxvf gd-2.0.35.tar.gz
cd gd-2.0.35
./configure --prefix=/web/gd
必須顯示png jpeg freetype 狀態(tài)為yes 說明編譯正確,否則需要查找問題
make
make install
(2).apache
./configure --prefix=/web/apache --with-ssl --enable-ssl --enable-so --enable-rewrite --disable-cgid --disable-cgi
將apache設(shè)置成開機自啟動的兩種方法:
a.在/etc/rc.d/rc.local文件中加入一行
/usr/local/apache2/bin/apachectl start
這樣每次重啟以后apache也會隨系統(tǒng)一起啟動
b.或者將apache安裝為系統(tǒng)服務(wù)
#cp /web/apache/bin/apachectl /etc/rc.d/init.d/httpd
然后vi /etc/rc.d/init.d/httpd添加(#!/bin/sh下面)
#chkconfig:2345 10 90
#description:Activates/Deactivates Apache Web Server
最后,運行chkconfig把Apache 添加到系統(tǒng)的啟動服務(wù)組里面
#chkconfig --add httpd
#chkconfig httpd on
(3).mysql5
./configure --prefix=/web/mysql --with-comment=Source --with-server-suffix=-enterprise-gpl --with-mysqld-user=mysql --without-debug --with-socket-path=/myweb/mysql/var/mysql.sock --with-big-tables --with-charset=utf8 --with-collation=utf8_general_ci --with-extra-charsets=all --with-pthread --enable-static --enable-thread-safe-client --with-client-ldflags=-all-static --with-mysqld-ldflags=-all-static --enable-assembler --without-innodb --without-ndb-debug --without-isam --enable-local-infile --with-readline --with-raid
make
make install
groupadd mysql
useradd -g mysql mysql
cd /web/mysql
chown -R mysql . //修改用戶
chgrp -R mysql . //修改用戶組
bin/mysql_install_db --user=mysql //安裝基本庫
chown -R root .
chown -R mysql var
cp share/mysql/my-medium.cnf /etc/my.cnf
cp share/mysql/mysql.server /etc/rc.d/init.d/mysqld
chmod 755 /etc/rc.d/init.d/mysqld
chkconfig --add mysqld
chkconfig --level 3 mysqld on
/etc/rc.d/init.d/mysqld start
bin/mysqladmin -u root password 123456
http://www.yyblog.com.cn/post/76.html
(4).安裝php5
./configure --prefix=/web/php --with-apxs2=/web/apache/bin/apxs --with-zlib-dir --with-bz2 --with-libxml-dir --with-gd=/web/gd --enable-gd-native-ttf --enable-gd-jis-conv --with-freetype-dir --with-jpeg-dir --with-png-dir --with-ttf --enable-mbstring --with-mysql=/web/mysql --with-config-file-path=/etc --with-iconv --disable-ipv6 --enable-static --enable-zend-multibyte --enable-inline-optimization --enable-zend-multibyte --enable-sockets --enable-soap --with-openssl --with-gettext --enable-ftp
make
make install
cp php.ini-recommended /etc/php.ini
(5).整合apache與php
#vi /web/apache/conf/httpd.conf
找到DocumentRoot "/web/websit"
<Directory"/web/website">
把它變成自己的服務(wù)目錄
找到AddType application/x-gzip .gz .tgz在其下面加如下內(nèi)容
AddType application/x-httpd-php .php
查找(設(shè)置WEB默認(rèn)文件)
Directorylndex index.html
修改為
Directorylindex index.php index.html index.htm
找到這一段
#AllowOverride controls what directives may be placed in.htaccess files.
#Options Fileinfo AuthConfig Limit
#
AllowOverride none
更改為AllowOwerride all
允許appache rewrite
保存httpd.conf 退出
(6).zend安裝
tar zxvf zend.tar.gz
cd zend
./install.sh
修改安裝目錄
指定php.ini的地址
指定apache 的apachectl的目錄
重啟apache顯示安裝成功
zend的作用主要是使php運行更加安全,無法提高php的速度更高。eaccelerator可以使效率更高
(7).eaccelerator-0.9.5.2.tar.bz2的安裝
tar jxvf eaccelerator-0.9.5.2.tar.bz2
cd eaccelerator-0.9.5.2
export PHP_PREFIX="/web/php" //加載php的安裝目錄
$PHP_PREFIX/bin/phpize //顯示php,zend的版本
./configure --enable-eaccelerator=shared --with-php-config=$PHP_PREFIX/bin/php-config
make
make install
編譯安裝后我們會看到屏幕提示的eaccelerator.so所在的目錄,php5.2X系列是在
/web/php/lib/php/extensions/no-debug-non-zts-20060613/eaccelerator.so
/web/php/lib/php/extensions/no-debug-non-zts-20060613/
安裝完畢,配置
在zend的安裝目錄下,打開php.ini
在文件最后,[zend]的下一行加入如下的代碼
zend_extension="/web/php/lib/php/extensions/no-debug-non-zts-20060613/eaccelerator.so"
eaccelerator.shm_size="16"
eaccelerator.cache_dir="/tmp/eaccelerator"
eaccelerator.enable="1"
eaccelerator.optimizer="1"
eaccelerator.check_mtime="1"
eaccelerator.debug="0"
eaccelerator.filter=""
eaccelerator.shm_max="0"
eaccelerator.shm_ttl="0"
eaccelerator.shm_prune_period="0"
eaccelerator.shm_only="0"
eaccelerator.compress="1"
eaccelerator.compress_level="9"
然后
#mkdir /tmp/eaccelerator //創(chuàng)建目錄
#chmod 777 /tmp/eaccelerator //修改目錄權(quán)限
注意:以上配置默認(rèn)情況下,iptables已經(jīng)開放80端口,selinux為允許模式,如果為強制模式,而網(wǎng)站代碼不在apache中默認(rèn)的位置,則需要設(shè)置web路徑的上下文設(shè)置即用到chcon 命令
|