1834798 Members
2450 Online
110070 Solutions
New Discussion

Re: ulimit error message

 
UNIX Team_10
Occasional Contributor

ulimit error message

Hi,
I had a problem on the ulimit .

sh[334]: ulimit :the specified value exceeds the user's allowable limit.

what does is mean by the value exceeds? Is that any parameter to be changed?
3 REPLIES 3
Patrick Wallek
Honored Contributor

Re: ulimit error message

I assume that this was when you submitted a job via the 'at' command?

If so, here is the solution which is taken from Document ID A5237772 in the ITRC TKB:

Solve the problem by replacing ulimit $l in
/var/adm/cron/.proto file with these lines:

if [ $l -eq 4194304 ]
then
ulimit unlimited
else
ulimit $l
fi

Please note that "$l" above is the dollar sign ($)
followed by the lower case letter 'ell' (not the
number one). See proto(4) for its special meaning in this context.
Philip Chan_1
Respected Contributor

Re: ulimit error message

Before making change to the system wide proto file (the /var/adm/cron/.proto file), I would suggest to check it isn't really the user having TOO MANY opened files and opened processes (especially the defunc'ed ones).

My idea is that we shouldn't get around a problem unless such problem cannot be fixed.

~Philip
S T
New Member

Re: ulimit error message

Hi Patrick & Chan,
Thanks you very much for the advise. I will try on it. Have a nice day.