Versions Compared

Key

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

Requirements 

...

    • Extract zip files in flat structure using unzip -j (works on Windows and UNIX)
      • cd <tomcat lib folder>
      • unzip -j <path to temp folder>/adf-essentials.zip
      • unzip -j <path to temp folder>/adf-essentials-client-ear.zip
    • You should see a large number of jars now in the tomcat/lib folder.
  • Download the following jars and place them in tomcat/lib as well please.
  • FDLogFormatter.jar is found in the zip file with the FlexDeploy war. Please copy that file into the tomcat/lib folder as well.

Configure

...

context.xml

  • Open context.xml for editing. It is located in the conf folder where you extracted Tomcat.
  • Add the following text, changing <password for fd_admin> to the actual password, and if necessary, changing your jdbc url as well.
Code Block
languagexml
titleData Source
<!-- Prevent unnecessary warnings in the log.                                   -->
<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="jdbc:oracle:thin:@localhost:1521:xe" user="fd_admin" password="put password for fd_admin" maxActive="100" maxIdle="10" maxWait="60" validationQuery="select 1 from dual" testOnBorrow="true"/>

...