Default credentials (username and password) for Syncope administrator are:
username: adminpassword: passwordCredentials are defined in
core/src/main/resources/security.properties |
adminUser administrator usernameadminMD5Password MD5 hash of cleartext password (represented as sequence of 32 hexadecimal digits)Under GNU/Linux and Mac OS X, the MD5 password can be obtained via the md5sum command-line tool:
$ echo -n "new_password" | md5sum |
adminUser administrator usernameadminPassword SHA1 hash evaluation of cleartext password (represented as a sequence of 40 hexadecimal digits)adminPasswordAlgorithm algorithm to be used for hash evaluation (default value: SHA1)Under GNU/Linux and Mac OS X, the SHA1 password can be obtained via the sha1sum command-line tool:
$ echo -n "new_password" | sha1sum |