DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
Version Warning
The content below is for Apache Syncope <= 1.2 - for later versions the Reference Guide is available.
Default credentials (username and password) for Syncope administrator are:
username:adminpassword:password
Credentials are defined in the security.properties file, located:
- under the
conf.directoryspecified during build (for projects generated from archetype) or specified in the GUI installer - please note that you might need to copy the file fromcore/src/main/resourcesin your project's source tree, if not present - under
$CATALINA_HOME/webapps/syncope/WEB-INF/classesfor standalone distribution - under
/etc/apache-syncopefor deb packages
Note: text encoding must be set to UTF-8.
Apache Syncope < 1.1.0
adminUseradministrator usernameadminMD5PasswordMD5 hash of cleartext password (represented as sequence of 32 hexadecimal digits)
GNU/Linux and Mac OS X
The MD5 password can be obtained via the md5sum command-line tool of GNU Core Utilities:
$ echo -n "new_password" | md5sum
MS Windows
Some options are available:
MS File Checksum Integrity Verifier
install, save your password to a file (e.g.password.txtwithout EOL) and issue at command line:fciv.exe -md5 password.txt
- GnuWin32 port of GNU utilities for MS Windows
- Cygwin Unix-like environment and command-line interface for Microsoft Windows (featuring GNU Core Utilities)
Apache Syncope >= 1.1.0
adminUseradministrator usernameadminPasswordSHA1 hash evaluation of cleartext password (represented as a sequence of 40 hexadecimal digits)adminPasswordAlgorithmalgorithm to be used for hash evaluation (default value:SHA1)
GNU/Linux and Mac OS X
The SHA1 password can be obtained via the sha1sum command-line tool of GNU Core Utilities:
$ echo -n "new_password" | sha1sum
MS Windows
Some options are available:
MS File Checksum Integrity Verifier
install, save your password to a file (e.g.password.txtwithout EOL) and issue at command line:fciv.exe -sha1 password.txt
- GnuWin32 port of GNU utilities for MS Windows
- Cygwin Unix-like environment and command-line interface for Microsoft Windows (featuring GNU Core Utilities)