There isn't one...
If you see an input field for both userid & password for the admin console, then security was enabled, and a userid & password were specified.
If it is enabled, and you need to disable it:
- Open a command prompt
- "cd" to the WebSphere\AppServer\bin directory
- start the wsadmin utility in "local mode", e.g.,
> wsadmin -conntype none -lang jacl
- disable global security by typing "securityoff" at the "wsadmin>" command prompt
- enter "quit" at the "wsadmin>" prompt to terminate the utility
When you stop, and restart your AppServer, global security should be disabled, and no "password" is needed to access the admin console.
On the other hand, if you want, after disabling global security using the wsadmin tool, you could also enable it, and define a userid and password before you exist the wsadmin tool. The command to do this is:
securityon userid password
So, the commands to be used are:
- Disable global security with:
securityoff
- Enable global security and define the administrative userid & password using:
securityon userid password
- Terminate the wsadmin utility using
quit
Hopefully this helps.
Good luck & let me know how it goes.