当前位置: 移动技术网 > 网络运营>服务器>Linux > Apache 安装和使用文档

Apache 安装和使用文档

2019年05月07日  | 移动技术网网络运营  | 我要评论
一、准备工作:
1台pc机,安装linux操作系统 参考文档linux安装.docx
2 gcc的安装 参考文档gcc的安装.zip
3 apache的安装包httpd-2.0.63.tar.gz

二、安装aoache:
#cd /opt
#gunzip httpd-2.0.63.tar.gz
#tar –xvf httpd-2.0.63.tar
#cd httpd-2.0.63
#./configure --prefix=/opt/apache2 –enable-so –enable-proxy –enable-proxy-ajp –enable-proxy-http –enable-proxy-ftp –enable-proxy-connect –enable-proxy-balancer
#make
#make install
注意:1路径,要安装到/opt/apache2下
2 在make执行的时候可能会报缺少文件,那是因为linux没有安装gcc,所以要先安装gcc,gcc的安装参考《gcc的安装.zip》


三、补充apache缺少的文件
以上执行完毕后,把mod_wl_20.so这个文件copy到/opt/apache2/moules下
mode_wl_20.so可以在bea \server\lib\linux\i686下找到



四、配置apache
apache的配置文件在/opt/apache2/conf/httpd.conf,找到listen 80这一行,在下面添加以下内容。
include conf/weblogic.conf
在conf下新建一个文件:weblogic.conf,里面配置如下。
loadmodule weblogic_module modules/mod_wl_20.so

<location /acs-server/acs>
sethandler weblogic-handler
weblogiccluster 135.251.218.17:7013,135.251.218.14:7013
debug all
wltempdir "/opt/apache2/logs"
debugconfiginfo on
dynamicserverlist off
</location>
<location /acs-server/hnmacs>
sethandler weblogic-handler
weblogiccluster 135.251.218.17:7013,135.251.218.14:7013
debug all
wltempdir "/opt/apache2/logs"
debugconfiginfo on
dynamicserverlist off
</location>
<location /csr>
sethandler weblogic-handler
weblogiccluster 135.251.218.17:7013,135.251.218.14:7013
debug all
wltempdir "/opt/apache2/logs"
debugconfiginfo on
dynamicserverlist off
</location>
<location /report>
sethandler weblogic-handler
weblogiccluster 135.251.218.17:7013,135.251.218.14:7013
debug all
wltempdir "/opt/apache2/logs"
debugconfiginfo on
dynamicserverlist off
</location>
<location /hdm>
sethandler weblogic-handler
weblogiccluster 135.251.218.17:7013,135.251.218.14:7013
debug all
wltempdir "/opt/apache2/logs"
debugconfiginfo on
# dynamicserverlist off
</location>
<ifmodule mod_weblogic.c>
#include conf/weblogic.conf
weblogiccluster 135.251.218.17:7013,135.251.218.14:7013
matchexpression *.jsp
matchexpression *.do
debug all
wllogfile logs/wlacess_mimm.log
wltempdir "/opt/apache2/logs"
# statpath true
debugconfiginfo on
keepaliveenabled true
keepalivesecs 15
</ifmodule>


五、运行和测试
#cd /opt/apache2/bin
#./apachectl start
启动apache
如果你输入http://apache所在ip/hdm 可以访问到14和17上部署的hdm,那么就证明已经配置成功了!
你shutdown14和17的任意一个机器,仍然可以访问
#./apachectl stop
关闭apache


六、注意事项
1、 根据将要布署的应用名要在weblogic.conf中配置一个location
2、 如果安装目录在/opt/apache2的话,可以直接copy现有的weblogic.conf和httpd.conf

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网