Need to reset Password in Windows base installations

Started by rajeewa, August 21, 2018, 09:23:40 AM

Previous topic - Next topic

rajeewa

Hi All,

I don't know whether that topic was old but need some key point to reset in widows base installation

I done windows 2012 server environment NetXms instillation ,i forget the password and how i reset this has to properway. Any solution for this very appreciate

I went through the some of post i am not clear about that

Below i read that path and i not confidence where it would be executing,Appreciate u re full of help to this 

Passwords in NetXMS are stored in hashed, not-reversible way, so there are no way to recover it, but it can be reseted.

New in version 1.2.9.

Use following command to reset password and unlock account:

nxdbmgr resetadmin
Deprecated since version 1.2.9.

To reset password to installation default ("netxms"):

Stop netxmsd

Run nxdbmgr check to make sure that server is down and database is unlocked

Create temporary file "reset.sql" with following content:

UPDATE users SET
  password='3A445C0072CD69D9030CC6644020E5C4576051B1',
  flags=8,
  grace_logins=5,
  auth_method=0,
  auth_failures=0,
  disabled_until=0
WHERE id=0;
Execute reset.sql:

nxdbmgr batch reset.sql


Kind Rgeards
Rajeewa