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.
Creating the database user is heavily dependent on the database platform, and will often have to be varied to meet local requirements regarding naming and security. These example commands will be adequate basic installations.
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.
| ||||||||||
MySQLMariaDB: |
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 to create the database tables and initial data.
...
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" |
...