当前位置:文档之家› apache完全安装手册

apache完全安装手册

Unix 服务器的安装与配置 (FreeBSD) 之Apache的完全安装(apache+php4+mod_ssl+mod_perl+mod_fastcgi+mod_gzip)本文主要讨论源代码方式的安装。

从互联网下载以下几个程序(本文采用DSO方式安装),按如下步骤进行处理:1、apache_1.3.27.tar.gz2、mod_ssl-2.8.12-1.3.27.tar.gz3、mod_perl-1.0-current.tar4、mod_gzip-1.3.26.1a.tar.gz5、mod_fastcgi-2.4.0.tar.gz6、php-4.3.1.tar.gz(另需安装pth-1.4.1.tar.gz、mm-1.1.3.tar.gz、perl-5.6.1.tar.gz、zlib-1.1.4.tar.gz、libpng-1.2.5.tar.gz、png、gettext、freetype、jpeg、gd、gd2)安装pth-1.4.1server# tar zxvf pth-1.4.1.tar.gzserver# cd pth-1.4.1server# ./configure --enable-pthreadserver# makeserver# make testserver# make install安装mm-1.1.3server# tar zxvf mm-1.1.3.tar.gzserver# cd mm-1.1.3server# ./configure --disable-sharedserver# makeserver# make testserver# make install安装perl-5.6.1server# tar zxvf perl-5.6.1.tar.gzserver# cd perl-5.6.1server# sh Configure -deserver# makeserver# make testserver# make install安装zlib-1.1.4server# tar zxvf zlib-1.1.4.tar.gzserver# cd zlib-1.1.4server# ./configureserver# make testserver# make install安装libpng-1.2.5 (need zlib-1.1.4、png)server# pkg_add png-versionserver# tar zxvf libpng-1.2.5.tar.gzserver# cd libpng-1.2.5server# cp scripts/makefile.freebsd makefileserver# makeserver# make testserver# make install安装apache_1.3.27 + mod_ssl-2.8.12-1.3.27 (need OpenSSL、MM、Prel_5.6.0) + mod_perl-1.0-current1、解压缩包(以下文件解压在同一个目录下)server# tar zxvf apache_1.3.27.tar.gzserver# tar zxvf mod_ssl-2.8.12-1.3.27.tar.gzserver# tar zxvf mod_perl-1.0-current.tar2、配置mod_ssl-2.8.12-1.3.27server# cd mod_ssl-2.8.12-1.3.27server# ./configure --with-apache=../apache_1.3.27 \--with-mm=../mm-1.1.3 \--prefix=/usr/local/apache \--enable-shared=sslserver# cd ..3、配置安装mod_perl-1.27server# cd mod_perl-1.27server# perl Makefile.PL EVERYTHING=1APACHE_SRC="/A/apache_1.3.27/src" USE_APACI=1 PREP_HTTPD=1 DO_HTTPD=1 (Freebsd 4.7下有两处错误提示,忽略)server# makeserver# make installserver# cd ..4、配置安装apache_1.3.27server# cd apache_1.3.27server# ./configure --prefix=/usr/local/apache \--enable-module=ssl \--activate-module=src/modules/perl/libperl.a \--enable-module=most \--enable-shared=maxserver# makeserver# make certificate(生成证书,按提示选择,并记下密码) server# make install安装mod_gzip-1.3.26server# tar zxvf mod_gzip-1.3.26.1a.tar.gzserver# cd mod_gzip-1.3.26.1aserver# edit Makefile(将APXS的路径 APXS?=/usr/local/sbin/apxs 改成apache安装路径: APXS?=/usr/local/apache/bin/apxs) server# makeserver# make install安装mod_fastcgi-2.4.0server# tar zxvf mod_fastcgi-2.4.0.tar.gzserver# cd mod_fastcgi-2.4.0server# /usr/local/apache/bin/apxs -o mod_fastcgi.so -c *.c server# /usr/local/apache/bin/apxs -i -a -n fastcgimod_fastcgi.so安装php-4.3.1 (need gettext、freetype、jpeg、gd、gd2、png、这里假设my SQL已经安装并运行)server# pkg_add gettest-versionserver# pkg_add jpeg-versionserver# pkg_add gd-versionserver# pkg_add gd2-versionserver# tar zxvf php-4.3.1.tar.gzserver# cd php-4.3.1server# ./configure --with-apxs=/usr/local/apache/bin/apxs \--with-config-file-path=/usr/local/apache/conf \--with-mysql=/usr/local/MYSQL --with-my SQL-sock=/tmp/--enable-versioning \--enable-ftp --enable-bcmath --disable-debug --enable-memory-limit=yes \--enable-track-vars --enable-sysvsem --enable-sysvshm --with-gettext \--enable-trans-sid --enable-fastcgi --with-tsrm-pth=pth-config \ --with-freetype-dir=/usr/local --with-jpeg-dir=/usr/local --with-gd=/usr/local \--enable-gd-native-ttf --with-png-dir=/usr/local --with-zlib=/usr/local \--with-zlib-dir=/usr/local --with-mm=/usr/local --with-openssl --with-iconvserver# makeserver# make installserver# cp php.ini-dist /usr/local/apache/conf/php.ini配置apache是其支持php,及php.ini文件:在/use/local/apache/conf下有这两个文件:1、/usr/local/apache/conf/httpd.conf 示例:httpd.conf2、/usr/local/apache/conf/php.ini 示例:php.ini在httpd.conf中添加:AddType application/x-httpd-php .php .php3AddType application/x-httpd-php-source .phps配置php.ini:upload_tmp_dir /tmpdefault_charset gb2312register_globals On安装至此完成,可以使用如下命令启动apache:server# /usr/local/apache/bin/apachectl start如果要使用https则使用如下命令启动:server# /usr/local/apache/bin/apachectl startssl(键入证书密码,然后回车)编写apache的自启动文件(Freebsd下):server# edit /usr/local/etc/rc.d/apache-server.sh 示例:apache-server.shserver# chmod 755 apache-server.sh重新启动服务器,Bind9就可以自动运行!测试服务器:在/usr/local/apache/htdocs下编辑test.php来测试php是否安装成功示例:test.php<?phpinfo()?>在浏览器中的地址栏中输入/test.php即可以显示php的安装信息。

如果你使用的是apachects startssl命令启动的话,你可以在浏览器中的地址栏中输入:https:///test.php来显示php的安装信息。

虚拟服务器的设置(摘自化境编程界Apache Server设置虚拟WEB 作者:不详)原文,未加修改:一 、IP型虚拟主机IP型虚拟主机指每一虚拟主机对应唯一的IP。

可通过多个物理网卡或虚拟网口实现多IP,Solaris2.5和Windows NT都支持这种方式。

相关主题