Versions Compared

Key

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

...

Code Block
languagexml
<jdbc:data-source jndi-url="java:comp/env/jdbc/ispn"/>

Modeshape 5.x

Databases tested with the experimental Modeshape 5.0 branch:

  • MySQL 5.5.49
  • PostgreSQL 9.4 - 9.5

Database Setup

PostgreSQL

To create a new database and user in PostgreSQL, assuming a username of user1 and a password of xyz:

Code Block
$ sudo -u postgres psql
> create database fcrepo;
> create user user1;
> alter user user1 password 'xyz';
> grant all privileges on database fcrepo to user1;
> \q