Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Define the crowd-home Directory by editing the crowd-init.properties file located in /crowd-webapp/WEB-INF/classes/
Uncomment the following line 

Code Block
languagebash
crowd.home=/var/crowd-home

Change the line to the directory you want to specify as crowd home in our case it was changed to the opt directory

Code Block
languagebash
crowd.home=/opt/crowd-data

After create the crowd-data directory and and allow serveradmin ownership

Code Block
languagebash
sudo mkdir /opt/crowd-data/
sudo chown -R serveradmin /opt/crowd-data

PostgreSQL

PostgreSQL is needed to start so if you haven't installed it already go to PostgreSQL
We need to create a database user so change back to your log in because serveradmin cannot use sudo.
First log in to PostgreSQL then: (remember to actually put a password to replace putYourPasswordHere)

...