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.
- Extract zip files in flat structure using unzip -j (works on Windows and UNIX)
- Download the following jars and place them in tomcat/lib as well please.
- FDLogFormatter.jar is found on the support site, and should also be put in the tomcat/lib folder.
Configure Data Source
- 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.
Code Block | ||||
---|---|---|---|---|
| ||||
<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="<password for fd_admin>" maxActive="100" maxIdle="10" maxWait="60" validationQuery="select 1 from dual" testOnBorrow="true"/> |
...
- Create file setenv.bat in the tomcat \ bin folder
- edit the file.
Code Block | ||||
---|---|---|---|---|
| ||||
set CATALINA_OPTS=%CATALINA_OPTS% -verbose:gc -Xms1024m -Xmx2048m -Doracle.mds.cache=simple -Dorg.apache.el.parser.SKIP_IDENTIFIER_CHECK=true -Dflexagon.fd.repository.root=<real path on your server> -Dflexagon.fd.install.root=<real path on your server> -Djava.awt.headless=true |
...
- Create file setenv.sh in the tomcat / bin folder.
- edit the file.
Code Block | ||||
---|---|---|---|---|
| ||||
JAVA_HOME=<Path to your JAVA_HOME> CATALINA_OPTS='-verbose:gc -Xms1024m -Xmx2048m -Doracle.mds.cache=simple -Dorg.apache.el.parser.SKIP_IDENTIFIER_CHECK=true -Dflexagon.fd.repository.root=<real path on your server> -Dflexagon.fd.install.root=<real path on your server> -Djava.awt.headless=true' |
...