...
Requirements
See FlexDeploy System Requirements for details on software and hardware requirements.
...
Info |
---|
Database name is setup as flexdeploy various documentation steps, you are free to use different name. If you use database name other than flexdeploy, then consider following points. Modify commands below appropriately for different database name. Modify <FlexDeploy Unzip Folder>/database/postgres/install/scripts/CreateSchemas.sql, statement "GRANT CONNECT ON DATABASE flexdeploy TO FD_ADMIN;" should be modified for proper database name. Adjust JDBC URL in context.xml appropriately during application installation.
|
These are high level steps, you can find more detailed steps in PostgreSQL documentation.
Code Block |
---|
|
cd <PosgreSQL Install Home>\pgsql\bin
initdb.exe -D <Data Folder> --username=postgres --auth=trustmd5
pg_ctl -D ../data<Data Folder> -l logfile start
pg_ctl start -l <Data Folder>\server.log -D <Data Folder>
createdb flexdeploy |
...
Code Block |
---|
|
cd <Unzip Folder>/database/postgres/install
<Path C:\path\to\ psql.exe> -U postgres -h hostname -p 5432 -d flexdeploy -a -b -e -f CreateFlexDeploySchemas.sql > PostgresDDL.txt |