Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

Using ulimit to limit (See related posts)

I put this in
profile.d/
:

 ####################
#limit amount of virtula memory, 
#CPU time and number of processes
#used by normal users.
#
if [ $UID -ge 500 ]
then
    ulimit -m 1000000
    ulimit -v 1000000
    ulimit -u 150
fi
#####################


With this script, I am able to survive http://www.bigbold.com/snippets/posts/show/78

You need to create an account or log in to post comments to this site.


Click here to browse all 4881 code snippets

Related Posts