Versions Compared

Key

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

...

Syncope core's persistence is based on JPA: this allows deployment on a wide range of DBMS; when running in embedded mode, H2 (in-memory) is used for internal storage.

An A SQL web interface is available at http://localhost:9082/9080/syncope/db.jsp:

  1. Choose configuration 'Generic H2 (Embedded)'
  2. Insert
    Code Block
    jdbc:h2:mem:syncopedb
    as JDBC URL
  3. Click 'Connect' button

...

An H2 TCP database is available for propagation.

An A SQL web interface is available at http://localhost:9082/:

  1. Choose configuration 'Generic H2 (Server)'
  2. Insert
    Code Block
    jdbc:h2:tcp://localhost:9092/testdb
    as JDBC URL
  3. Set 'sa' as password
  4. Click 'Connect' button

...