Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Initial version and modified title in "Set administration console credentials"

Default credentials (username and password) to access administration console the are:

  • username: admin
  • password: password

You can modify the both modifying the following file

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:

  • adminUser admin console username
  • adminMD5Password MD5 hash evaluation of your cleartext password (represented as a sequence of 32 hexadecimal digits)

Under GNU Linux md5 password can be obtained by md5sum command line tool. (Don't forget -n to exclude the new line character)

Code Block
$>echo -n "new_password" | md5sum 

Apache Syncope >= 1.1.0

From version 1.1.0 (and above) MD5 hash function has been deprecated and replaced by SHA1 (default). The following properties can be set:

  • adminUser=admin admin console username
  • adminPassword SHA1 hash evaluation of your cleartext password (represented as a sequence of 40 hexadecimal digits)
  • adminPasswordAlgorithm algorithm to be used for hash evaluation (default value SHA1)

Under linux SHA1 password can be obtained by sha1sum command line tool. (Don't forget -n to exclude the new line character)

Code Block
$>echo -n "new_password" | sha1sum