Tagged Questions
The ulimit tag has no wiki summary.
15
votes
3answers
1k views
How to limit memory of a OS X program? ulimit -v neither -m are working
My programs run out of memory like half of the time I run them. Under Linux I can set a hard limit to the available memory using ulimit -v mem-in-kbytes. Actually, I use ulimit -S -v mem-in-kbytes, so ...
10
votes
3answers
3k views
Limit memory usage for a single Linux process
I'm running pdftoppm to convert a user-provided PDF into a 300DPI image. This works great, except if the user provides an PDF with a very large page size. pdftoppm will allocate enough memory to ...
7
votes
2answers
4k views
Python: ulimit and nice for subprocess.call / subprocess.Popen?
I need to limit the amount of time and cpu taken by external command line apps I spawn from a python process using subprocess.call , mainly because sometimes the spawned process gets stuck and pins ...
4
votes
1answer
603 views
(node) Hit max file limit?
I keep getting an error in my node.js instance where it reports the error:
(node) Hit max file limit. Increase "ulimit - n"
Yet when I check my ulimit -n, it says 65535.
There is no way in hell my ...
4
votes
2answers
950 views
Resident Set Size (RSS) limit has no effect
The following problem occurs on a machine running Ubuntu 10.04 with the 2.6.32-22-generic kernel: Setting a limit for the Resident Set Size (RSS) of a process does not seem to have any effect. I ...
4
votes
1answer
2k views
ulimit -t under ubuntu
I am running Ubuntu Linux (2.6.28-11-generic #42-Ubuntu SMP Fri Apr 17 01:57:59 UTC 2009 i686 GNU/Linux) and it seems that the command "ulimit -t" does not work properly. I ran:
ulimit -t 1; ...
3
votes
2answers
812 views
Linux per-process resource limits - a deep Red Hat Mystery
I have my own multithreaded C program which scales in speed smoothly with the number of CPU cores.. I can run it with 1, 2, 3, etc threads and get linear speedup.. up to about 5.5x speed on a 6-core ...
2
votes
0answers
153 views
How to configure ulimit with supervisord (to start varnish)
I am migrating a server configuration to supervisord (from init.d files).
There are a few instances of varish running. I remember when I started using varnish I had ulimit problems so there is the ...
2
votes
1answer
234 views
OS X max open files per process
What is a maximum open files count in Mac OS X (10.6) per process?
ulimit said than 256, sysctl said 10240, but my test program can create 9469 (under gdb), 10252 (without gdb) files..
2
votes
1answer
291 views
Need to “calculate” optimum ulimit and fs.file-max values according to my own server needs
Need to "calculate" optimum ulimit and fs.file-max values according to my own server needs.
Please do not conflict with "how to set those limits in various Linux distros" questions.
I am asking:
...
2
votes
3answers
438 views
Limiting access to resources for Cuda and OpenCL
We want to extend our batch system to support GPU computations.
The problem is that from the batch system viewpoint, the GPU is a resource. We can easily count used resources, but we also need to ...
2
votes
1answer
267 views
java - How accurate is Runtime.maxMemory - is it OK to see difference of 9gig?
I start application with -Xmx100G. The value returned by Runtime.maxMemory is 91G. Where does the remaining memory (9G) go?
I see from other posts that the API is not 100% accurate. I would like to ...
2
votes
4answers
668 views
How to increase the limit of “maximum open files” in C on Mac OS X
The default limit for the max open files on Mac OS X is 256 (ulimit -n) and my application needs about 400 file handlers.
I tried to change the limit with setrlimit() but even if the function ...
2
votes
4answers
3k views
ssh remote command execution and ulimit
I have the following script:
cat > /tmp/script.sh <<EndOfScript
#!/bin/sh
ulimit -n 8192
run_app
EndOfScript
which runs smoothly locally, it is always ok. But if I try to run it remotely ...
1
vote
1answer
52 views
Can one increase the hard limit for a ulimit parameter in Mac OS 10.7 (OS X Lion)?
Unfortunately, while trying to delete previous core dumps, I set my core file size hard limit to 0. Is there a way to change the hard limit of a ulimit parameter?
host-101-178:Labs evan$ ulimit -c 0
...
1
vote
3answers
138 views
Can I set ulimit from node.js?
I'd like to restrict child processes from writing too much data or taking up too much cpu time (infinite loop). In C, I'd call setrlimit(2) to do that. Is there something like this in node.js?
1
vote
2answers
1k views
Why ulimit can't limit resident memory successfully and how?
I start a new bash shell, and execute:
ulimit -m 102400
ulimit -a
"
core file size (blocks, -c) 0
data seg size (kbytes, -d) unlimited
scheduling priority (-e) 20
file ...
1
vote
4answers
2k views
How do I set a ulimit from inside a Perl script that applies to its children?
I have a Perl script that does various installation steps to set up a development box for our company. It runs various shell scripts, some of which crash due to lower than required ulimits ...
1
vote
1answer
395 views
Is ulimit needed launching memcached with -c?
If launching as root like this:
memcached -c 5000 ...
do I need my startup script to look like this:
ulimit -n 5000
memcached -c 5000 ...
Or will memcached set the max open files automatically?
1
vote
2answers
1k views
What does “ulimit -l” mean?
According to the manpage, "-l" in ulimit means "The maximum size that may be locked into memory". What does this sentence mean, exactly? How may it affect running programs?
1
vote
2answers
3k views
Windows equivalent of ulimit -n
What is the windows equivalent of the unix command " ulimit -n" ?
Basically, i want to set the maximum fd limit via command prompt.
0
votes
1answer
90 views
aix java core zero size
in my AIX 6.1 ,java 1.5.0
bash-3.2$ java -fullversion
java full version "J2RE 1.5.0 IBM AIX build pap32devifx-20080811c (SR8a)"
bash-3.2$
i am getting core by running java . but i see the size of ...
0
votes
1answer
65 views
Alternative to niceload command in ubuntu?
I'm looking for some alternative to niceload utility in Ubuntu. Is there some utility like niceload that is easily available (apt-get install ...) in that distribution ?
To be more specific I've ran ...
0
votes
1answer
65 views
ulimit returns 0 as exit status… how to get 1 if process killed?
I'm writing a shell script that called some programs that can use up all resources and effectively kill a machine. I must prevent this some happening.
My idea was to use ulimit to set resource limits ...
0
votes
1answer
153 views
ulimit first call ok second call fail, why?
On macosx 10.7, using bash
The first call to ulimit -n succeeds, while the second fails.
a:$ ulimit -n
2560
a:$ ulimit -n 5000
a:$ ulimit -n
5000
a:$ ulimit -n 6000
bash: ulimit: open files: ...
0
votes
0answers
219 views
ulimit overrides sysctl
I set sysctl fs.file-max = 4500000. However, ulimit still shows open files (-n) 1024
I understand that both values point to the max open file descriptors. How do I make ulmit ...
0
votes
1answer
248 views
Javamail does not completely close socket on timeout
When sending a mail trough javamail, a socket to the smtp server is opened. Now, we got the case, that the connection of the mail server went down while the connection was still alive and while ...
0
votes
1answer
466 views
Where is the default max locked memory value coming from?
So on one system, I have values that are pretty wide open:
$ ulimit -a | grep mem
max locked memory (kbytes, -l) 40000
max memory size (kbytes, -m) unlimited
virtual memory ...
0
votes
1answer
368 views
gdb: virtual memory exhausted
I am trying to debug an application using gdb on Linux. However, when loading symbols from the shared library I want to debug, gdb always fails with the error:
gdb/utils.c:904: internal error: ...
0
votes
1answer
2k views
JBoss deployment throws 'java.util.zip.ZipException: error in opening zip file' on Linux?
I deployed a large EAR (contained more than ~1024 jars/wars) on JBoss running with Java 6 on Linux, and the deployment process cried throwing the following exception:
java.lang.RuntimeException: ...