Access the answers to your technology questions today.
Subscribe Now
30-day free trial. Register in 60 seconds.
What Makes Experts Exchange Unique?
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.
Try it out and discover for yourself.
Subscribe Now
30-day free trial. Register in 60 seconds.
Join the Community
Give a Little. Get a Lot.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Join the Community
by: HonorGodPosted on 2009-08-20 at 07:42:13ID: 25143125
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.