Apache+MySQL+PHP+imap



發言人: 花心大恐龍 (211.22.5.---)
發表日期: 03-12-01 17:22

注意事項: 
1.如果妳是用 Redhat based 的 Linux 的話,請執行 ntsysv 將 httpd 和 Mysql 不要執行 
2.將 DOWNLOAD 的檔案放到相同的目錄,再用 tar zxvf xxxxxxxx.tar.gz 來解壓縮,請依照要安裝的軟體進入適當的目錄。 
3.可以到 http://linuxnews.idv.tw/download 來下載所需的程式。 

MySQL: 
--------------------------------------------------------------- 
./configure --prefix=/usr/local/mysql --with-charset=big5 
make 
make install 
cd scripts 
./mysql_install_db 
cd /usr/local/mysql/share/mysql/ 
chmod 611 mysql.server 
./mysql.server start 
#編輯 /etc/rc.d/rc.local 加入底下這行以便開機時自動執行 mysql 
/usr/local/mysql/share/mysql/mysql.server start 

imap: 
--------------------------------------------------------------- 
make slx 
cp ipopd/ipop*.* /usr/sbin 
cp imapd/imapd /usr/sbin 
cp c-client/c-client.a /usr/local/lib 
#請確定你有 /usr/local/include 這個目錄 
cp c-client/rfc822.h /usr/local/include 
cp c-client/mail.h /usr/local/include 
cp c-client/linkage.h /usr/local/include 

GD: 
--------------------------------------------------------------- 
make 
make install 

Ldap: 
--------------------------------------------------------------- 
./configure --prefix=/usr/local/ldap 
make 
make depend 
cd tests 
make 
cd .. 
make install 


Apache: 
--------------------------------------------------------------- 
./configure --prefix=/usr/local/apache 

openssl: 
--------------------------------------------------------------- 
./config 
make 
make test 
make install 

mod_ssl: 
--------------------------------------------------------------- 
./configure --with-apache=../apache_1.3.19 --with-ssl=../openssl-0.9.6 --prefix=../apache_1.3.19 



php: 
--------------------------------------------------------------- 
./configure --with-mysql=/usr/local/mysql --with-apache=../apache_1.3.19 --enable-track-vars --with-gd=../gd-1.8.4 --with-imap=../imap-4.7c --enable-ftp --with-ldap=/usr/local/ldap 
make 
make install 

Apache: 
--------------------------------------------------------------- 
./configure --prefix=/usr/local/apache --activate-module=src/modules/php4/libphp4.a --enable-module=ssl 
make 
make certificate 
#這時會問你一些問題,就是有關於加密的問題,最後要要求輸入啟動的密碼,如果輸入密碼的話以後啟動 httpd 的時候會詢問密碼,若不輸 
#入密碼的話啟動就不會問了 
#PS.啟動http 
#要加密:apachectl startssl 
#不加密:apachectl start 
make install 
修改 /etc/rc.d/rc.local 加入 /usr/local/apache/bin/apachectl start 來開機時自動啟動 Apache 



再來就是修改 /usr/local/apache/conf/httpd.conf 的設定檔,將 php 的支援加入