CMDBuild Forum

resetting admin password

I “inherited” a CMDBuild 3.1 instance with unknown admin password.

How can I reset the password to a known state? It seems all available information isn’t current anymore (or my Google-fu is too weak).

I have full control of the machine, so I can do whatever.

Hi, one way is to access the database and manually set the password of the user you need, if for example the user is with username admin you can use this query:

UPDATE “User” set “Password”=‘changeme’ where “Username”=‘admin’ and “Status”=‘A’;

than login with user/pass admin/changeme