Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin

...

各ノードのweb.xmlファイルの「<web-app>」配下に、「<distributable/>」を追加します。例:

 

Code Block
themeEclipse
languagejavaxml
<web-app>
      <distributable/>
      <!-- System Event and Debug classes -->
      <listener>
            <listener-class>com.hof.servlet.SysSessionListener</listener-class>
      </listener>

 

セッションの複製を有効にするには、web.xmlファイル内の「ClusterManagementservletに以下を追加します。

Code Block
themeEclipse
languagexml
<init-param>
          <param-name>SessionReplication</param-name>
          <param-value>true</param-value>
</init-param>

 

 

server.xmlファイルの変更

server.xmlファイルの「Yellowfin/appserver/conf」ディレクトリに変更が必要です。

...

<host>」XMLブロック内に以下のXMLエントリーを追加します。

 

Code Block
languagejavaxml
<Cluster className="org.apache.catalina.ha.tcp.SimpleTcpCluster"/>

...

Yellowfin/appserver/conf/Catalina/localhost」ディレクトリ内のROOT.xmlから、以下の行を削除します。

 

Code Block
languagejavaxml
<Manager className="org.apache.catalina.session.PersistentManager" debug="0" distributable="false" saveOnRestart="false">
      <Store className="org.apache.catalina.session.FileStore" />
</Manager>

...