Skip to main content

Posts

Showing posts from November, 2014

BEA-141281 unable to get file lock

Issue: I was not able to start the Managed Server (WLS_WMS2)  <BEA-141281> <unable to get file lock, will retry ...> <BEA-141281> <unable to get file lock, will retry ...> <BEA-141281> <unable to get file lock, will retry ...> <BEA-141281> <unable to get file lock, will retry ...> Solution: 1. Go to $MW_HOME/user_projects/domain/WLS_WMS2/servers/WLS_WMS2/tmp 2. rm -rf *.lok  After this, again try to startup the service and it will be done.

Native Library(terminalio) not found

Issue: <Nov 30, 2014 03:20:32 AM PST> <Info> <Security> <BEA-090065> <Getting boot identity from user.>  Enter username to boot WebLogic server:<Nov 30, 2014 03:20:32 AM PST> <Error> <Security> <BEA-090782> <Server is Running in Production Mode and Native Library(terminalio) to read the password securely from commandline is not found.>  <Nov 30, 2014 03:20:32 AM PST> <Notice> <WebLogicServer> <BEA-000388> <JVM called WLS shutdown hook. The server will force shutdown now Solution: Looks like  library "terminalio" is missing on your system, this is a OS related issue, however you can workaround this in weblogic by the following method. $MW_HOME/user_projects/domains/<domain_name>/servers/AdminServer/security if security folder is not found under adminserver, go ahead an create it. and provide it 777 permissions (chmod -r -R 777 security) If security directory is not present...

After Clone Concurrent Managers not coming up

Issue: After cloning R12 instance, concurrent managers were not coming up. Actual and Target value of Concurrent managers are different. Actual 0 and Target 1 Solution: 1.  Stop all middle tier services including the concurrent managers. 2.  Stop the database. 3.  Start the database. 4.  Connect SQLPLUS as APPS user and run the following : EXEC FND_CONC_CLONE.SETUP_CLEAN; COMMIT; EXIT; 5.  Run AutoConfig on all tiers, firstly on the DB tier and then the APPS tiers and webtiers to repopulate the required system tables. 6.  Connect to SQLPLUS as APPS user and run the following statement : select CONCURRENT_QUEUE_NAME from FND_CONCURRENT_QUEUES where CONCURRENT_QUEUE_NAME like 'FNDSM%'; If the above SQL does not returning any value then please do the following: Go to $FND_TOP/patch/115/sql Connect SQLPLUS as APPS user and run the following script : SQL> @afdcm037.sql; This script will create libraries for FNDSM and create managers for preexisting no...