During the install or cloning, the OUI calls the following OS routine
sysconfig(_CONFIG_OPEN_FILES)
If we trace the pid by the truss command, you could see the below
truss -p pid
pid - get from top command
9899: close(281016741) Err#9 EBADF
9899: close(281016742) Err#9 EBADF
9899: close(281016743) Err#9 EBADF
9899: close(281016744) Err#9 EBADF
9899: close(281016745) Err#9 EBADF
9899: close(281016746) Err#9 EBADF
...
Solution:
---------
Set the HARD File limit to a lower value (i.e. 2048).
Note: setting the Soft limit does not resolve the issue
OPTION 1: Request the Unix Administrator change your HARD File limit
OPTION 2: Issue the following
% plimit -n 2048,2048 $$
It will set for the particular session only.
To set permanantly contact your unix admin
Re-run the autoconfig or rapid clonig or start installation
Reference Id: 454943.1
sysconfig(_CONFIG_OPEN_FILES)
If we trace the pid by the truss command, you could see the below
truss -p pid
pid - get from top command
9899: close(281016741) Err#9 EBADF
9899: close(281016742) Err#9 EBADF
9899: close(281016743) Err#9 EBADF
9899: close(281016744) Err#9 EBADF
9899: close(281016745) Err#9 EBADF
9899: close(281016746) Err#9 EBADF
...
Solution:
---------
Set the HARD File limit to a lower value (i.e. 2048).
Note: setting the Soft limit does not resolve the issue
OPTION 1: Request the Unix Administrator change your HARD File limit
OPTION 2: Issue the following
% plimit -n 2048,2048 $$
It will set for the particular session only.
To set permanantly contact your unix admin
Re-run the autoconfig or rapid clonig or start installation
Reference Id: 454943.1
Comments