Versions Compared

Key

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

...

Populate the Database

Once you hcave have created the database and/or database user, you can use run the Installer to create the database tables and initial data.

...

To run the installer:

Code Block
cd $RELEASE/phixflow-x.y.z-yyyymmdd/install
java -jar bin/installer.jar [options]

To see the available options:

Code Block
java -jar bin/installer.jar
-help

Create the tables and Initial data

Use the Installer to create the database tables and the initial data in a single step. This step is the same for all database platforms, differing only in the Url used to identify the specific database to be used.

Oracle:

Code Block
java -jar bin/installer.jar -url="jdbc:oracle:thin:@localhost:1521:cview" -user=myuser -pass=mypass -install

...

Code Block
java -jar bin/installer.jar -url="jdbc:mysql://localhost/cview" -user=myuser -pass=mypass -install

...

Set the Customer Name in the Database

...

Code Block
java -jar bin/installer.jar -url="jdbc:oracle:thin:@localhost:1521:cview" -user=myuser -pass=mypass -customer="Your Customer Name"

Further information on the installer

The database installation is now complete. For further information on the installer:

  • See the appendices for how to specify URLs for the database platforms supported by PhixFlow

  • To see all available options for the installer:
Code Block
java -jar bin/installer.jar -help

Install the Webapp in the Tomcat application server

...