...
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 parametersBefore creating the database, ensure that default collation is Latin1_General_CI_AS:
If it is not, please talk to the database administrator to get this updated to the required collation (see also Install MS SQL Server). This command creates a local (SQL Server) login, a user with required user mappings, sets the password for the login and creates the database.
| |||||||||||||
MariaDB: |
If you followed the suggested PhixFlow installation notes for installing MariaDB, you will be using unix_socket authentication (see Install MariaDB), and the command to log into the database as root is simply:
Create the user, supplying the name of the database, the user and the password in the commands below:
|
...
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 |
---|
cd $RELEASE/phixflow-x.y.z-yyyymmdd/install
|
SQL Server:
Note | ||
---|---|---|
If a database, with login details, was provided (i.e. you did not perform the step above for creating the login, user and database), please check that the database has the correct collation:
|
...
E.g.
|
Then run the command:
Code Block |
---|
java -jar bin/installer.jar -url="jdbc:oracle:thin:@localhost:1521:sqlserver://myhost\myserver;databaseName=phixflow" -user=myuser -pass=mypass -install -customer="Your Customer Name" |
Oracle (> 12c with PDB containers)MariaDB:
Code Block |
---|
java -jar bin/installer.jar -url="jdbc:oracle:thin:@hostname:1521mariadb://localhost/phixflow" -user=myuser<myuser> -pass=mypass<mypass> -install -customer="Your Customer Name" |
SQL ServerOracle:
Code Block |
---|
java -jar bin/installer.jar -url="jdbc:sqlserver://myhost\myserver;databaseName=oracle:thin:@localhost:1521:phixflow" -user=myuser -pass=mypass -install -customer="Your Customer Name" |
MySQLOracle (> 12c with PDB containers):
Code Block |
---|
java -jar bin/installer.jar -url="jdbc:mysql://localhostoracle:thin:@hostname:1521/phixflow" -user=<myuser>myuser -pass=<mypass>mypass -install -customer="Your Customer Name" |
...