Neoheurist
Neoheurist

Reputation: 3474

404 when accessing the integrated WebLogic server console from JDeveloper 12.1.3

I can start the integrated WebLogic application server from JDeveloper and can even deploy and test my servlets, but I cannot access the WebLogic console application (e.g. http://localhost:7101/console). My configuration has the port set as 7101 (my servlets are successfully executing on this port)

The strange thing is that until 2 days ago I was able to access the console and I'm not sure what I managed to snark up...

At this point I have uninstalled and reinstalled JDeveloper which did not help, I have no idea where to look for a log file that might be indicating an error condition but I have poked through a number of WebLogic log files, but these showed me nothing useful... (although I might well have been looking in the wrong location)...

Where should I look to find the appropriate log files?

What XML configuration files control how the console application is deployed (e.g. what its port and URL will be)...

Why didn't the uninstall / reinstall solve the problem?

Very frustrating... Help!

Upvotes: 0

Views: 3174

Answers (1)

SridharS
SridharS

Reputation: 923

couple of suggestions - Firstly look for the number of java processes running and their PID's Check what ports are in use. You say you are able to deploy and access your servlets which means that WLS is running, once you know which ports are in use you should get a clue for your wls admin console url.

Second option - Look for the file config.xml for your domain, this should have the listen address for the admin server. Check if you have configured a admin channel

Whats the url you are using to access your servlet ?

Upvotes: 1

Related Questions