Powered By Blogger

Monday, April 16, 2012

Error deploying the composite ORABPEL-01010 Process Generation Failed.- deploy.lock (No such file or directory)

I have come across above said exception while I was deploying SOA 11.1.1.5 composite to Weblogic through Jdeveloper.

When I analyzed the issue what I understood  was, this error must be something to do with environment.
The probable reasons are listed down from most relevant to least.

Deployment utility has to create some temporary files  during deployment and for that we need sufficient space on server.These temporary files will be deleted later by same utility.
  • Disk space issue
  • OS file descriptor issue
Disk space issue:
  1. Check your server mounted disk space using df command for Unix/Linux OS(For windows use different method)
  2. If you find less space then add more space or clean up unnecessary files like logs
  3. Now try deployment again(server restart not necessary)
OS file descriptor issue :
  1. Check maximum number of files allowed to be open using ulimit -n command
  2. If required, increase it.This depends upon type of shell we use.
You may use sysctl
 or
other ways:
In tcsh
limit descriptors 65535

In bash
ulimit -n 65535
Please talk to your admin to perform this activity.

No comments:

Post a Comment