If the size of the heap data segment is limited then for large process we may have a core dump because of the way the memory management is implemented in AIX.
Following are the quick solution to try out :-
1. ulimit -d unlimited ------ should allow larger process.
2. Increase the LDR_CNTRL=MAXDATA setting at the AIX level prior to executing the command.
export LDR_CNTRL=MAXDATA=0x20000000 ( Default on AIX is 0x10000000)
To make the setting permanent, place the LDR_CNTRL=MAXDATA=0x20000000 to the end of the/etc/environment file.
All must be set in the environment of the netbackup processes at startup.
3. NBU since 6.0.MP7 takes care of such issues. Because later the way the binaries were built was changed to take into consideration such scenarios. Making the changes in the /etc/environment will make the changes for the entire system.
Technical Explaination:-
On AIX, the 32-bit address space (= 232 or 4 GB) is divided into...