Tomcat Application Server における Interact の配置

Interact WAR を Tomcat アプリケーション・サーバー (TAS) に配置できます。

Tomcat アプリケーション・サーバーの構成中に含める手順

Interact を Tomcat アプリケーション・サーバーで構成している場合、次の手順を実行する必要があります。

テスト、実稼働および対話ランタイム・データ・ソースを、Campaign Tomcat インスタンスの Campaign.xml に追加する必要があります。例:
<Resource name="<testDataSource>" factory="com.unica.manager.tomcat.utils.TomcatDSFactory" 
auth="Application" type="javax.sql.DataSource"
maxActive="30" maxIdle="10" maxWait="10000"
username="<db user for test schema>" password="<db password>" driverClassName=
"<db specific class name>" url="<db specific jdbc url>"/>

<Resource name="<prodDataSource>" factory="com.unica.manager.tomcat.utils.TomcatDSFactory"
 auth="Application" type="javax.sql.DataSource"
maxActive="30" maxIdle="10" maxWait="10000"
username="<db user for prod schema>" password="<db password>" driverClassName=
"<db specific class name>" url="<db specific jdbc url>"/>

<Resource name="<InteractRunTimeDataSource>" factory="com.unica.manager.tomcat.utils.TomcatDSFactory" 
auth="Application" type="javax.sql.DataSource"
maxActive="30" maxIdle="10" maxWait="10000"
username="<db user for runtime schema>" password="<db password>" 
driverClassName="<db specific class name>" url="<db specific jdbc url>"/>

<Resource name="<InteractLearningDS>" factory="com.unica.manager.tomcat.utils.TomcatDSFactory" 
auth="Application" type="javax.sql.DataSource"
maxActive="30" maxIdle="10" maxWait="10000"
username="<db user for runtime schema>" password="<db password>" 
driverClassName="<db specific class name>" url="<db specific jdbc url>"/>
Note  - {{You can encrypt DB password using  }}encryptTomcatDBPasswords utility located in <Platform_Home>/tools/bin