HP-UX的Apache安装配置
HP-UX上面的WEB组件都包括在HP提供的HP-UX Web Server Suite中,里面包括:
HP-UX Apache-based Web Server
HP-UX Tomcat-based Servlet Engine
HP-UX Webmin-based Admin
HP-UX XML Web Server Tools
这些组件的默认安装目录为:
HP-UX Apache-based Web Server /opt/hpws/apache/
HP-UX Tomcat-based Servlet Engine /opt/hpws/tomcat/
HP-UX Webmin-based Admin /opt/hpws/webmin/
HP-UX XML Web Server Tools /opt/hpws/xmltools/
因为HP提供了BIN包,所以可以用swinstall直接安装。
安装之前,必须保证已经安装的所有Apache,Tomcat,Webmin服务都停止。如:
% $OLD_APACHE_HOME/bin/apachectl stop
% $OLD_TOMCAT_HOME/bin/shutdown.sh
% $OLD_WEBMIN_HOME/webmin-init stop
然后即可安装,按照向导提示安装。
Apache服务安装后并不自动运行。需要手动启停。
启动HP-UX Apache-based Web Server服务:
$ /opt/hpws/apache/bin/apachectl start
停止HP-UX Apache-based Web Server服务:
$ /opt/hpws/apache/bin/apachectl stop
然后就可以用浏览器来查看WEB有没有发布了。
也可以启动带SSL的HP-UX Apache-based Web Server服务:
$ /opt/hpws/apache/bin/apachectl startssl
停止服务为:
$ /opt/hpws/apache/bin/apachectl stop
还要说说HP-UX WEBMIN-BASED ADMIN。这个是基于WEB的web服务配置工具,可以用root来Log in,然后启动服务:
$ /opt/hpws/webmin/webmin-init start
用浏览器访问: http://yourserver.com:10000/
Login : admin
Password : hp.com
停止这个服务用:$ /opt/hpws/webmin/webmin-init stop
如果启动Webmin服务的时候有问题,可以查看下 有没有安装Perl 5.1.6或者以上的版本,安装目录是否在/opt/perl/bin/perl
正文到此结束