设为首页 加入收藏

TOP

通向架构师的道路 ( 第十七天 ) IBM Websphere 集群探秘 – WASND(三)
2018-02-26 08:40:13 】 浏览:679
Tags:通向 架构 师的 道路 十七 IBM Websphere 集群 探秘 WASND
Identifier="jsessionid" Name="/cbbs/*fckeditor/editor/filemanager/connectors/*.*"/> <Uri AffinityCookie="JSESSIONID" AffinityURLIdentifier="jsessionid" Name="/cbbs/fckeditor/editor/filemanager/connectors/*"/>

这个plugin.xml很像“(第十六天)IBM Websphere与IBM HttpServer的集成”中的那个plugin文件,对吧?

区别在于这边的几行语句,这个就是IBM HttpServer与WASND结合时的plugin描述语句。

<ServerCluster CloneSeparatorChange="false" GetDWLMTable="false" IgnoreAffinityRequests="true"

LoadBalance="Round Robin" Name="mycluster" PostBufferSize="64" PostSizeLimit="-1"

RemoveSpecialHeaders="true" RetryInterval="60">

<Server CloneID="1756mq3p8" ConnectTimeout="5" ExtendedHandshake="false" LoadBalanceWeight="2"

MaxConnections="-1" Name="shnlap93Node01_server1" ServerIOTimeout="60"

WaitForContinue="false">

 <Transport Hostname="shnlap93" Port="9080" Protocol="http"/>

 <Transport Hostname="shnlap93" Port="9443" Protocol="https">

  <Property Name="keyring" Value="D:\IBM\HTTPServer\Plugins\config\demoweb\plugin-key.kdb"/>

   <Property Name="stashfile" Value="D:\IBM\HTTPServer\Plugins\config\demoweb\plugin-key.sth"/>

 </Transport>

</Server>

<Server CloneID="1756mq6cs" ConnectTimeout="5" ExtendedHandshake="false" LoadBalanceWeight="2"

MaxConnections="-1" Name="shnlap93Node02_server1" ServerIOTimeout="60"

WaitForContinue="false">

  <Transport Hostname="shnlap93" Port="9081" Protocol="http"/>

  <Transport Hostname="shnlap93" Port="9444" Protocol="https">

   <Property Name="keyring" Value="D:\IBM\HTTPServer\Plugins\config\demoweb\plugin-key.kdb"/>

   <Property Name="stashfile" Value="D:\IBM\HTTPServer\Plugins\config\demoweb\plugin-key.sth"/>

  </Transport>

</Server>

<PrimaryServers>

         <Server Name="shnlap93Node01_server1"/>

         <Server Name="shnlap93Node02_server1"/>

</PrimaryServers>

</ServerCluster>

第三步:

打开D:\IBM\HTTPServer\conf目录下的httpd.conf文件,最后几行确保是以下内容:

LoadModule was_ap20_module "d:\IBM\HTTPServer\Plugins\bin\mod_was_ap20_http.dll"

WebSpherePluginConfig "d:\IBM\HTTPServer\Plugins\config\demoweb\plugin-cfg.xml"

<VirtualHost *:80>

ServerName shnlap93

ServerAlias shnlap93

ServerAdmin admin@shnlap93

DocumentRoot d:/www

DirectoryIndex index.htm index.html index.jsp

<Directory "D:/www/cbbs">

    Options None

    AllowOverride None

    Order allow,deny

          Allow from all

</Directory>

</VirtualHost>

第四步:

保存我们修改的httpd.conf文件

首页 上一页 1 2 3 4 5 下一页 尾页 3/5/5
】【打印繁体】【投稿】【收藏】 【推荐】【举报】【评论】 【关闭】 【返回顶部
上一篇Dockerfile : tomcat 镜像编写 下一篇算法余晖

最新文章

热门文章

Hot 文章

Python

C 语言

C++基础

大数据基础

linux编程基础

C/C++面试题目