Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Note
titleVersion warning

Content of this page applies to Apache Syncope >= 1.1.X

Table of Contents
styledecimal

Introduction

Starting from Apache Syncope 1.1.0 a standalone package is available, containing a full working distribution.

...

  1. be sure that hostname is resolved either via hosts file or DNS server
  2. unzip the distribution archive
  3. go into the Apache Tomcat directory
  4. start Apache Tomcat
    • Unix

      Code Block
      
      $ chmod 755 ./bin/*.sh
      $ ./bin/startup.sh
      
    • Windows

      Code Block
      
      bin/startup.bat
      

Please refer to Apache Tomcat documentation for more advanced setup and instructions.

...

If you want instead to make your changes persistent, replace

Code Block

jpa.url=jdbc:h2:mem:syncopedb;DB_CLOSE_DELAY=-1 

with

Code Block

jpa.url=jdbc:h2:~/syncopedb;DB_CLOSE_DELAY=-1

in webapps/syncope/WEB-INF/classes/persistence.properties from the Apache Tomcat directory. This will create H2 database files in the home directory of the user running Apache Syncope.

Please refer to H2 documentation for more options.

...