Posts

How to Decrypt WebLogic Admin Console Password

Image
WebLogic Password     The WebLogic password is used to access the WebLogic console. There may be a chance to forgot the WebLogic password or there may be a chance to loss the WebLogic password. In the following way we can easily get the lost password of the WebLogic admin console. Decrypting WebLogic Console Password      This assumes you had server access and logged in with the respective  account. Go to Oracle bin directory  D:\oracle\midtierjsp\oracle_common\common\bin Execute the wlst.cmd You will get WLST prompt in offline mode, invoke the following command Note:  change the domain path if necessary. You can take the encrypted weblogic password from the boo.properties file. The boot.properties file will be available in the below location, "  <ORACLE_HOME>/user_projects/domains/<your_domain>/servers/<server_name>/security "  domain = "D:\\oracle\\midtierjsp\\user_projects\\domains\\test" service = weblog...

Weblogic Admin server failed to start with error JPS-02592: Failed to push ldap config data to libOvd for service instance "idstore.ldap" in JPS context "default

The INFRA admin server was not getting started with below error message in the out file. Location of the out file:   $DOMAIN_HOME /user_projects/domain/infra/servers/Adminserver/logs/Admin.out oracle.security.jps.JpsException: JPS-02592: Failed to push ldap config data to libOvd for service instance "idstore.ldap" in JPS context "default", cause: org.xml.sax.SAXException: Error Parsing at line #2: 1. org.xml.sax.SAXParseException; lineNumber: 2; columnNumber: 1; <Line 2, Column 1>: XML-20108: (Fatal Error) Start of root element expected. The Admin server was not starting because of the corrupted configuration files adapters.os_xml and server.os_xml. So we need to examine the above configuration files from "  $DOMAIN_HOME \user_projects\domains\infra\config\fmwconfig\ovd\default"   to confirm whether they are corrupted or not. We can compare those by using the original file which was available in the location , $DOMAIN_HOME \oracle_common\modules\or...

How to Startup Oracle WebLogic

Image
  Steps to Startup WebLogic      The WebLogic is being started from the location of the oracle domain or we can use the scripts to start up the WebLogic from any location.      We need to mention the configuration details of the WebLogic domain in this batch file to start up the WebLogic. Example oracle domain:      ORACLE_HOME\user_projects\domains\DEV\bin      The command startWebLogic.cmd is used to startup the WebLogic. Stages of the WebLogic startup      In WebLogic the managed server or any server JVM starts though specific process or stages.       It is vital that every stage has to be successful.           Starting -> Standby -> Started -> Admin -> Resuming -> Running      If the WebLogic is started without any errors, then you will get a result as <Server state changed to RUNNING.>.       ...