Versions Compared

Key

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

...

  • Start glassfish:
  • cd $GLASSFISH_HOME/glassfish/bin
  • asadmin
  • start-domain $DOMAIN_NAME
  • Set GLASSFISH_HOME to the install location of glassfish
  • Set DOMAIN_NAME to the name of your domain (like fddomain)
  • Login into GlassFish Administration Console (http://hostname:4848)
  • Create Data Source
  • Go to Resources – JDBC - JDBC Connection Pools
    • Set following values, then next
    • Pool Name: FlexDBDSPool
    • Resource Type: javax.sql.DataSource
    • Database Driver Vendor: Oracle
    • Scroll down to properties
    • Set the following values, then Save
    • Name: URL Value: jdbc URL for database
    • Name: User Value: fd_admin
    • Name: PasswordValue: <password for fd_admin>
    • Go to General tab and then Save
  • Go to Resources – JDBC - JDBC Resources
    • Set following values, then Save
    • JNDI Name: jdbc/flexdbDS
    • Pool Name: FlexDBDSPool
  • Add the following options JVM arguments on the server (click on Configurations, server-config, JVM Settings, JVM Options)
Code Block
languagetext
titleJVM arguments
-verbose:gc -Xms1024m -Xmx2048m -Dflexagon.fd.install.root=/opt/flexdeploy/application -Dflexagon.fd.repository.root=/opt/flexdeploy/repository -Doracle.jdbc.autoCommitSpecCompliant=false -Doracle.mds.cache=simple

...

Info

Please make sure to modify the arguments for Server working directory (-Dflexagon.fd.install.root) and Artifacts repository (-Dflexagon.fd.repository.root) as per your installation.

Warning

NOTE: be careful in copying arguments due to potential character changes.

  • Setup Logger Configurations.
    • From the extracted zip directory, navigate to the GlassFish directory and locate this file:
    • FDGlassFishLogFormatter.jar
    • Copy the FDGlassFishLogFormatter.jar to the lib sub-directory of the domain.

...