DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
...
| Code Block |
|---|
core/src/main/resources/security.properties |
Note: text encoding of cleartext password 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 , the MD5 password can be obtained via the md5sum command-line tool of GNU Core Utilities:
| Code Block |
|---|
$ echo -n "new_password" | md5sum |
MS Windows
Some options are availableUnder MS Windows doesn't exist a native command-line tool for MD5 evaluation, can be used any external utility like:
- MS File Checksum Integrity Verifier
install utility, save your password in to a file (e.g.password.txtwithout EOL character) and issue at command line:Code Block fciv.exe -md5 password.txt
- GnuWin32 porting port of GNU utilities for windows 32bitMS 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 , the SHA1 password can be obtained via the sha1sum command-line tool of GNU Core Utilities:
| Code Block |
|---|
$ echo -n "new_password" | sha1sum |
MS Windows
Some options are availableUnder MS Windows doesn't exist a native command-line tool for SHA1 evaluation, can be used any external utility like:
- MS File Checksum Integrity Verifier
install utility, save your password in to a file (e.g.password.txtwithout EOL character) and issue at command line:Code Block fciv.exe -sha1md5 password.txt
- GnuWin32 porting port of GNU utilities for windows 32bitMS Windows
- Cygwin Unix-like environment and command-line interface for Microsoft Windows (featuring GNU Core Utilities)