WAS:如何在WebSphere6上配置http server

  (1)安装WebSphere Application Server。(假设目录为D:\WebSphere6.0\)
  (2)安装IBM Http Server。(假设目录为D:\WebSphere6.0\IBM HTTP Server\)
     安装成功后可访问如下地址:
     IBM Http Server: http://localhost:80/
     IBM Http Administration: http://localhost:8008/wasadmin
  (3)安装Web服务器插件。(假设目录为D:\WebSphere6.0\Plugins\)
  (4)装完后会在“Web 服务器”中看到webserver1,然后“生成插件”,会生成plugin-cfg.xml文件;最后“传播插件”,
    会在D:\WebSphere6.0\IBM HTTP Server\conf\httpd.conf文件中加入如下两项:
    LoadModule ibm_app_server_http_module
    WebSpherePluginConfig
   “LoadModule ibm_app_server_http_module”对应的路径必须包含D:\WebSphere6.0\Plugins\bin下的dll文件或so文件
   “WebSpherePluginConfig”对应的路径必须包含(4)中生成的plugin-cfg.xml文件

你可能感兴趣的:(WAS)