Versions Compared

Key

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

...

Code Block
cd $RELEASE/phixflow-x.y.z-yyyymmdd/install

Oracle:

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

Oracle:

Code Block
jdbc:oracle:thin:@hostname:1521/phixflow
Info
The only difference between the connection strings is to use a '/' instead of':' before [SID], so that [SID] is treated as a SERVICE name rather than an SID. This is due to Oracle 12c introducing pluggable databases (PDB's).

SQL Server:

Code Block
java -jar bin/installer.jar -url="jdbc:sqlserver://myhosthostname\myservermyservice;databasedatabaseName=phixflow" -user=myuser -pass=mypass -install -customer="Your Customer Name"

MySQL:

Code Block
java -jar bin/installer.jar -url="jdbc:mysql://localhosthostname/phixflow" -user=myuser -pass=mypass -install -customer="Your Customer Name"

Further information on the installer

...