How to reset WAS password?
Password reset for administrative user in WAS (v. 8.x & 9.x) |
2 answers
David Honey (1.8k●1●7)
| answered Dec 10 '21, 12:43 p.m.
FORUM ADMINISTRATOR / FORUM MODERATOR / JAZZ DEVELOPER I'm not a WAS expert. But a quick Google provided these links:
https://www.ibm.com/docs/en/iis/11.5?topic=wasndapc-changing-websphere-application-server-administrator-password-in-stand-alone-installation
|
To reset the PW to the default credencial, follow one of the 2 steps:
1. By editing the security xml file:
1. Locate the security.xml file and take a backup of it.
2. open security.xml file for editing and search for enabled=”true”
3. modify it to enabled=”false” (you need to do this only for the very first occurrence of enabled=”true”)
4. Restart the servers. ...
5. Log into admin console using ADMIN , ADMIN.
or
2. Using the wsadmin command:
1. /wasInstallPath/AppServer1/bin/># wsadmin -conntype NONE
2. wsadmin> securityoff
3. wsadmin> exit
4. Restart the servers.
5. Enable the security from administrative console.
Enjoy.
|
Your answer
Dashboards and work items are no longer publicly available, so some links may be invalid. We now provide similar information through other means. Learn more here.