Introduction
The schema installation has 4 main steps, regardless of platform:
...
Code Block |
---|
cd $RELEASE/phixflow-x.y.z-yyyymmdd/install |
Create the database user
If you are Database Administrator (DBA) and no database / login have previously been set up, you should use the following commands to create a new database / user.
...
Platform | Create the database user | ||||||||||
Oracle: | This command will prompt for the name of the user to be created.
| ||||||||||
Sql Server: | This command requires the user, the password, the login and the database to be provided as parameters.
| ||||||||||
MariaDB: |
Create the user, supplying the name of the database, the user and the password in the commands below:
|
Populate the Database
Once you have created the database and/or database user, run the Installer installer to create the database tables and initial data.
- In your command console, change to the directory where you extracted the release zip then to the
install
directory. - Run the installation command for your database (listed below).
The customer name in the commands below must exactly match the customer name used by PhixFlow Support to generate licence files. This argument (–customer="Your Customer Name") is optional, but if you don't specify a valid customer name you will not be able to install the licence key and you will not be able to run any tasks in PhixFlow.
...
Code Block |
---|
java -jar bin/installer.jar -url="jdbc:sqlserver://myhost\myserver;databaseName=phixflow" -user=myuser -pass=mypass -install -customer="Your Customer Name" |
MySQLMariaDB:
Code Block |
---|
java -jar bin/installer.jar -url="jdbc:mysqlmariadb://localhost/phixflow" -user=<myuser> -pass=<mypass> -install -customer="Your Customer Name" |
...