Saturday, June 30, 2018

BEA-149205 Failed to initialize the application '_ALSB'

Problem

Getting the following error when starting up the OSB managed server. Multiple applications are failing, and this is just a snippet of one of the errors:
<Feb 28, 2018 12:38:45 PM GMT> <Error> <Deployer> <BEA-149205> <Failed to initialize the application '_ALSB_1491592089579' due to error weblogic.management.DeploymentException: Exception occured while downloading files.
weblogic.management.DeploymentException: Exception occured while downloading files
        at weblogic.deploy.internal.targetserver.datamanagement.AppDataUpdate.doDownload(AppDataUpdate.java:43)
        at weblogic.deploy.internal.targetserver.datamanagement.DataUpdate.download(DataUpdate.java:56)
        at weblogic.deploy.internal.targetserver.datamanagement.Data.prepareDataUpdate(Data.java:97)
        at weblogic.deploy.internal.targetserver.BasicDeployment.prepareDataUpdate(BasicDeployment.java:704)
        at weblogic.deploy.internal.targetserver.BasicDeployment.stageFilesForStatic(BasicDeployment.java:747)
        Truncated. see log file for complete stacktrace
Caused By: java.io.IOException: [DeploymentService:290066]Error occurred while downloading files from admin server for deployment request "0". Underlying error is: "null"
        at weblogic.deploy.service.datatransferhandlers.HttpDataTransferHandler.getDataAsStream(HttpDataTransferHandler.java:86)
        at weblogic.deploy.service.datatransferhandlers.DataHandlerManager$RemoteDataTransferHandler.getDataAsStream(DataHandlerManager.java:165)
        at weblogic.deploy.internal.targetserver.datamanagement.AppDataUpdate.doDownload(AppDataUpdate.java:39)
        at weblogic.deploy.internal.targetserver.datamanagement.DataUpdate.download(DataUpdate.java:56)
        at weblogic.deploy.internal.targetserver.datamanagement.Data.prepareDataUpdate(Data.java:97)
        Truncated. see log file for complete stacktrace
>
 
Solution

1. You must undeploy these applications

2. Start up the AdminServer

3. Connect through WLST and run the following. Make sure to undeploy the applications that are showing up in the logs, so do not use the same exact values here.
cd /u01/app/oracle/middleware/wlserver_10.3/common/bin/ 
./wlst.sh 
connect( 'weblogic', 'welcome1', 't3://localhost:7001') 
stopApplication('_ALSB_1492546342692') 
undeploy('_ALSB_1492546342692')  
stopApplication('_ALSB_1492545743924')
undeploy('_ALSB_1492545743924')
stopApplication('_ALSB_1491592307429')
undeploy('_ALSB_1491592307429')
stopApplication('_ALSB_1491592306429')
undeploy('_ALSB_1491592306429')
stopApplication('_ALSB_1491592089579')
undeploy('_ALSB_1491592089579')
disconnect()
4. Login to WebLogic Admin Console and activate the session

References
Applicable Versions
  • Oracle Service Bus (OSB) 11g (11.1.1.9.0)

 

1 comment:

Ramana said...

Hi Sir,

Need one one help.
We are using oracle service bus 10g3 in my application one of the managed server is in starting state from last one month due to "BEA-149205" error could you please help me for the solution.