Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

If FlexDeploy is being installed for first time, setup Tomcat server and a Data Source as explained in following steps. If only updating new war file, skip to WAR Installation 552371643. 

Install library jar files to Tomcat lib

...

Code Block
languagexml
themeRDark
titleData Source
<!-- Prevent unnecessary warnings in the log.<JarScanner scanManifest="false"/>

	<Resource name="jdbc/flexdbDS" auth="Container"
                type="oracle.jdbc.pool.OracleDataSource"
                factory="oracle.jdbc.pool.OracleDataSourceFactory"
 --> <JarScanner scanManifest="false"/>   <!-- Database Connection for the FlexDeploy Application    
                
             --> <Resource name="jdbc/flexdbDS" auth="Container" type="oracle.jdbc.pool.OracleDataSource" factory="oracle.jdbc.pool.OracleDataSourceFactory" url="**CONNECT_STRING**"
               url="jdbc:oracle:thin:@localhost:1521:xe" user="fd_admin"
                password="put password for fd_admin" maxActive="100" maxIdle="10" maxWait="60" "**FD_ADMIN_PASSWORD**"
                
                connectionCachingEnabled="true"
                connectionCacheProperties="{InitialLimit=0, MinLimit=0, MaxLimit=100, ConnectionWaitTimeout=60, InactivityTimeout=60, AbandonedConnectionTimeout=60, PropertyCheckInterval=30}"
                
				validationQuery="select 1 from dual"
				testOnBorrow="true"/>

</Context>

Configure Tomcat Environment

...