DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
Default credentials (username and password) to access administration console the for Syncope administrator are:
username:adminpassword:password
You can modify the both modifying the following fileCredentials are defined in
| Code Block |
|---|
core/src/main/resources/security.properties |
Apache Syncope < 1.1.0
For Syncope versions prior to 1.1.0 the following properties can be set:
adminUseradmin consoleadminUseradministrator usernameadminMD5PasswordMD5 hash evaluation of your cleartext password (represented as a sequence of 32 hexadecimal digits)
Under GNU Linux md5 /Linux and Mac OS X, the MD5 password can be obtained by via the md5sum command-line tool. (Don't forget -n to exclude the new line character):
| Code Block |
|---|
$>echo$ echo -n "new_password" | md5sum |
Apache Syncope >=
...
1.1.0
...
adminUseradministratoradminUser=adminadmin console usernameadminPasswordSHA1 hash evaluation of your cleartext password (represented as a sequence of 40 hexadecimal digits)adminPasswordAlgorithmalgorithm to be used for hash evaluation (default value:SHA1)
Under linux GNU/Linux and Mac OS X, the SHA1 password can be obtained by via the sha1sum command-line tool. (Don't forget -n to exclude the new line character):
| Code Block |
|---|
$>echo$ echo -n "new_password" | sha1sum |