Resetting "admin" password for dyn/admin
Password after resetting: "admin123"
update das_account set
password='c1f59dd0bb1078b65a6c7f19f312e83ef6823716da2ba864507f1bb2eb393799'
where account_name='admin';
commit;
OR
Delete the admin row and reinsert.
delete from das_account where account_name='admin';
Insert into das_account
(ACCOUNT_NAME,TYPE,FIRST_NAME,LAST_NAME,PASSWORD,DESCRIPTION,
LASTPWDUPDATE)
values
('admin',1,'Andy','Administrator',
'c1f59dd0bb1078b65a6c7f19f312e83ef6823716da2ba864507f1bb2eb393799',null,to_date(
'07-NOV-12','DD-MON-RR'));
commit;
Not working both of them it keeps on reloading
ReplyDeleteDelete all the rows from table das_account and Restart the production/Publishing live Instance.
ReplyDeleteThis Creates all the Rows again in the tables with all the default values.
Login to dynadmin with admin/admin. And Reset to desired Value from dyn admin.
This is correct!
Deletehow to do this atg 11.1 version
Delete@Guide,
DeleteDid you migrate from ATG lower version to ATG 11.1? If yes, override the component '/atg/dynamo/security/PasswordHasherConfigurer' and set 'PasswordHasherConfigurer.properties'. It will use old PasswordHasher.
If No, Then use MD5Hashed encrypted value for 'admin123' in above update script.
Thanks,
Iranna