...
Table of Contents | ||||
---|---|---|---|---|
|
Requirements
See FlexDeploy System Requirements for details on software and hardware requirements.
Automated Installer Instructions
If you are using the automated installer, do not follow this guide.
Manual Schema Creation
Tip |
---|
You must be in /database/postgres/install folder from extracted zip when executing scripts. |
...
Open a command prompt or putty window to the <FlexDeploy Unzip Folder>/database/postgres/install folder from extracted zip, launch psql (use full path if not available on PATH environment)
Run as a user like postgres with privileges to create users and schemas within that database. You may be prompted for password, enter password for user (with -U argument) that you use in psql command.
Change the bold text as needed in your environment.
Run the appropriate command below.
Linux
Run FlexDeploy scripts. Type the password when asked. PostgresDDL.txt records the output of the script so that you can refer back to it later.
Code Block | ||
---|---|---|
| ||
cd <Flexdeploy Unzip Folder>\database\postgres\install /path/to/psql -U postgres -h hostname -p 5432 -d flexdeploy -a -b -e -f CreateFlexDeploySchemas.sql > PostgresDDL.txt |
Windows
Run FlexDeploy scripts. Type the password when asked. PostgresDDL.txt records the output of the script so that you can refer back to it later.
...