aniri
aniri

Reputation: 1831

Websphere admin console not working

I have trouble opening the admin console for the websphere server. The server is up and running though, the application deployed and all. The only problem is with the console which gives a 404 error. Does anyone know how to fix this? Maybe reinstall/restore the console somehow?

Thanks.

Upvotes: 4

Views: 50770

Answers (4)

Tarun Varshney
Tarun Varshney

Reputation: 83

You can try to reinstall the admin console :

Goto C:\[PATH TO PROFILE]\bin

Then run the Jython commands, first to cleanup, then to reinstall :

wsadmin -lang jython -f deployConsole.py remove

Wait till the admin-console is uninstalled.

Now reinstall of administrative console (isclite) will complete without errors (hopefully)

wsadmin -lang jython -f deployConsole.py install

Admin console should work now.

Upvotes: 7

Jose
Jose

Reputation: 11

You can try this before trying to delete the new profile. I had this same problem where console was not coming up. I closed the RAD and re-opened it but didnt work. Go to Window --> Reset Perspective and then go to show view and get the console. If still you cant see the console, go to customize perspective and click general and enable console. If this doesnt work then only delete and recreate profile.

Upvotes: 0

sadhana
sadhana

Reputation: 71

I had a similar problem. I was able to solve it by:

  1. Deleting the existing profile
  2. Creating a new profile
  3. Running the WAS in RAD with that newly created profile

Profile management :- Method :- RAD -> windows > prefereneces > server > websphere application server > selecting the websphere server 7.0 > click the run profile management tool button in the bottom section.

Upvotes: 6

Robert
Robert

Reputation: 66

Check and make sure the DMGR is up and running on the primary node. Start --> Run --> Services.msc. Look for something that looks like "IBM WebSphere Application Server V6.1 - CellManager01" and ensure it is running. If not, browse to the installation location of Websphere "AppServer\profiles\Dmgr01\logs\dmgr" and look in the Systemout.log and the SystemErr.log for details. Also look in the "AppServer\profiles\Dmgr01\logs\ffdc" directory.

Upvotes: 5

Related Questions