Quantcast
Channel: Doyensys Allappsdba Blog..
Viewing all articles
Browse latest Browse all 1640

Article 2

$
0
0
FAILED_NOT_RESTARTABLE in WebLogic Server 12C

CAUSE :
 - Weblogic Server which you are trying to start is already running.
 - Weblogic Server which you are trying to start did not stop cleanly.

SYMPTOMS:

Normally when weblogic server starts, it creates two lock files
i) $DOMAIN_HOME/servers/<server_name>/tmp/<servername>.lok
ii) $DOMAIN_HOME/servers/<server_name>/data/ldap/ldapfiles/EmbeddedLDAP.lok

When WebLogic server stops, it removes these two files. If you not stop server properly these lock files remains on that location and creating a problem when you attempt to start a server again and after more than one attempt your server goes in FAILED_NOT_RESTARTABLE state.

SOLUTION:

So, in order to fix this identify if server is running on port configured for WebLogic Server by using netstat.

-- netstat -an | grep <WebLogic_Server_Port > for LINUX
-- netstat -aon | findstr <WebLogic_Server_Port > for  WIN

If server is running then you should see output like
tcp        0      0 ::ffff:<IP>:<weblogic_port>      :::* LISTEN 
(Listen here identifies that it is listening)

Note: There could be other process using this port
How to identify which port is configured for weblogic server?
To identify port configured for weblogic server open weblogic configuration file
- $DOMAIN_HOME/config/config.xml and search for listen-port
You should see entry like
<listen-port>7006</listen-port>

- If server is not running then you can safely remove these lok files under WebLogic server. And if server is running then trying to stop it from console, backend or by killing the process id of the particular server then remove the .lok files.

Note: If this is weblogic managed server (not Admin Server) then you can safely remove entire managed server directory (including sub directories) $DOMAIN_HOME/servers/<server_name> or rename it as a backup. When you start managed server again, Admin Server will create these directories.

Viewing all articles
Browse latest Browse all 1640

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>