Thursday, March 12, 2015

OpenIDM and OrientDB

OpenIDM comes with OrientDB as the embedded database. It is a NoSQL database and makes things much easier to go with something OOTB. The following artifacts are stored in the OrientDB.

  • User / Group info
  • Activity Audit
  • Reconciliation Audit.
You can download the console from OrientDB Console Download

Start the console from $ORIENT_DB_HOME/bin directory as ./console.sh

Default DBName : openidm
Default credentials to connect to the db : admin/admin

SuperUser: openidm-admin / openidm-admin

Curl Command to Reset the admin password ( in repository and config files ) :

$ curl \
 --cacert self-signed.crt \
 --header "X-OpenIDM-Username: openidm-admin" \
 --header "X-OpenIDM-Password: openidm-admin" \
 --header "Content-Type: application/json" \
 --request POST \
 "https://localhost:8443/openidm/repo?_action=updateDbCredentials&user=admin&password=newPassword"
   




No comments:

Post a Comment