...
Copy the default hibernate config file and edit so that at least hibernate.connection.url
, hibernate.connection.username
and hibernate.connection.password
are set.
...
file:
Code Block |
---|
cd /usr/src/GROUPER_2_1_1/grouper/conf cp grouper.hibernate.example.properties grouper.hibernate.properties |
and edit accordingly. Note that the values should not be enclosed in quotes:
Code Block | ||
---|---|---|
| ||
# Example:
hibernate.connection.url = jdbc:postgresql://ip6-localhost:5432/grouper
hibernate.connection.username = grouper_user
hibernate.connection.password = hackme |
Download the latest/greatest sources and compile:
...