欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

用IHS+WebSphere构建虚拟主机

程序员文章站 2024-02-23 12:12:04
...
用IHS+WebSphere构建虚拟主机

软件环境: IBM WebSphere Application Server Network Deployment V7.0 IBM HTTP Server V7.0 Web server Plug-


软件环境:

IBM WebSphere Application Server Network Deployment V7.0

IBM HTTP Server V7.0

Web server Plug-ins for IBM Websphere Application Server

1.         安装配置WAS。

2.         安装IHS

3.         启动 Http Server & administration

4.         安装Web server Plug-ins for IBM Websphere Application Server。在安装过程中指定如下值:

      Plug-ins安装路径

      WAS安装路径

      WAS的概要文件

      WEB服务器名

5.         启动IBM WAS

6.         将plugin_install_root/bin下的configureWeb_server_name.bat拷贝到was_install_root /bin目录下,然后行该文件。登录WAS控制台,打开页面:Servers->Server Types->Web Servers,将自动出现一个已配置好的websever条目。

7.         根据需要,在WAS中创建数据源。

8.         在WAS上安装两个应用程序:TestApp(对应包为TestApp.ear)和DemoApp(对应包为DemoApp.ear)。

9.         进入页面Environment-> Virtual hosts。删除虚拟主机default_host对应的两个别名:*/80和*/443。创建两个虚拟主机:vh1和vh2。为vh1创建两个别名:www.test.com/80,443。为vh2创建两个别名:www.demo.com/80,443。

10.     进入Applications->Application Types->WebSphere enterprise applications->TestApp->

configuration->manage modules页面,同时选中应用服务器和web服务器。对DemoApp同样操作。

11.     进入Enterprise Applications > TestApp > Context Root For Web Modules页面,修改Context_root为/。对DemoApp同样操作。

12.     进入Servers->Server Types->Web Servers页面,选中webserver,点击Generate Plug-in 和 Propagate Plug-in。

13.     重新启动HTTP Server和HTTP administration。

14.     在DNS服务器中增加www.test.com/ip和www.demo.com/ip映射条目。至此在一台服务器上就建立了两个虚拟主机www.test.com和www.demo.com,分别对应两个应用程序服务。

从浏览器上键入www.test.com或者www.demo.com 将访问对应的应用程序。