ulimit gets or sets the upper limit for resources available to the current shell.
0
votes
1answer
47 views
How to set up core dumping on a mac?
I am writing code for an animation program and I have a problem. I need to set up core dumping. NetBeans is saying this: Failed to write core dump. Core dumps have been disabled. To enable core ...
0
votes
1answer
189 views
How is the ulimit -c unlimited command used and what does it do?
I'm helping to write a program right now, and on windows, the program works fine. On the mac, after changing the framework directory to the only suitable location, I'm getting this error:
run:
A ...
0
votes
1answer
115 views
Debian squeeze and setting ulimit
All
I want to permanently set the core file size to unlimited.
Reading about it, the suggestion is to modify the /etc/security/limits.conf.
I have done so with the following line:
soft core ...
0
votes
0answers
86 views
Open hundred of TCP (Websocket) Connections on one Client
I want to figure out how many connections my Server can handle. Thats why I wrote a script which actually creates a lot of connections (websocket-connections).
This works find until 200 Connections ...
1
vote
3answers
126 views
Configure ulimit using Puppet
I am wondering how to run the ulimit command using Puppets exec type. The problem with ulimit seems to be that it isn't a binary so it has to be called using /bin/bash in front of it. I am trying to ...
0
votes
0answers
109 views
Limiting memory usage for a single process in OSX /Darwin
I am trying to modify some JNI code to limit the amount of memory that a process can consume. Here is the code that I am using to test setRlimit on linux and osx. In linux it works as expected and the ...
2
votes
2answers
985 views
What does “ulimit -s unlimited” do?
There are understandably many related questions on stack allocation
What and where are the stack and heap?
Why is there a limit on the stack size?
Size of stack and heap memory
However on various ...
0
votes
1answer
131 views
sh via Ruby: Running ulimit and a program in the same line
I am trying to run some computational-intense program from Ruby via the following command:
%x(heavy_program)
However, I sometimes want to limit the running time of the program. So I tried doing
...
1
vote
1answer
2k views
Too many open files ( ulimit already changed )
I'm working on a debian server with tomcat 7 and java 1.7. This is an application that recieves several TCP connections, each TCP connection is an open file by the java process.
Looking at /proc/pid ...
0
votes
1answer
234 views
Python - OSError 24 (Too many open files) and shared memory
I faced with the problem there was exception OSError 24 ("Too many open files") raised on my mac os x in python script.
I had no idea what could caused that issue. lsof -p showed about 40-50 lines, ...
5
votes
3answers
315 views
Problems opening more than 10,000 files in Perl
I need to open more than 10,000 files in a Perl script, so I asked the system administrator to change the limit on my account to 14,000. ulimit -a now shows these settings:
core file size ...
0
votes
1answer
271 views
How to set ulimit to unlimited in perl?
I want all child processes of my perl script to generate core files in case of unexpected failures. So how can I set ulimit to unlimited inside perl?
0
votes
2answers
3k views
How to change the stack size using ulimit or per process on Mac OS X for a C or Ruby program?
It seems that the recommended way to set stack size for a C program or Ruby program (which uses the C stack), is by using ulimit in the Bash shell. But
$ ulimit -s
8192
$ ulimit -s 16384
-bash: ...
2
votes
3answers
1k views
Processes exceeding thread stack size limit on RedHat Enterprise Linux 6?
I have a couple of processes running on RHEL 6.3, but for some reason they are exceeding the thread stack sizes.
For example, the Java process is given the stack size of -Xss256k at runtime on ...
2
votes
3answers
399 views
how does “ulimit -v” work in the Linux OS?
I would like to limit memory used by a process started through bash with the ulimit command on Linux. I was wondering what OS mechanism is used to support ulimit. In particular, is it based on ...
7
votes
3answers
412 views
close on socket not releasing file descriptor
When conducting a stress test on some server code I wrote, I noticed that even though I am calling close() on the descriptor handle (and verifying the result for errors) that the descriptor is not ...
1
vote
1answer
70 views
How to get the number of timers in a process?
I'm having exactly the same problem described here:
timer_create() : -1 EAGAIN (Resource temporarily unavailable)
in short, some process is reserving a lot of timers via timer_create but never ...
0
votes
2answers
189 views
ulimit -t Linux
I wrote two simple programs on Eclipse- Ubuntu to test ulimit terminal command (Their binaries are attached)
++++++++++++++++++++++++++++++++
Iterator
#include<iostream>
using namespace std;
...
2
votes
1answer
64 views
I accidentally did ulimit -r1 and I want to go back to ulimit -r90+, how do I do this? [closed]
I then get that the hard limit has become 1..is there an easy way to "reset what i did"? This is a server I have logged onto via ssh.
1
vote
1answer
1k views
How to increase ulimit on Amazon EC2 instance?
After SSH'ing into EC2 instance running Amazon Linux AMI, I tried,
ulimit -n 20000
got the following error
-bash: ulimit: open files: cannot modify limit: Operation not permitted
However, shell ...
1
vote
1answer
900 views
increase ulimit for # of file descriptors
As normaluser:
$ ulimit -n 4096
-bash: ulimit: open files: cannot modify limit: Operation not permitted
As root it works as desired - but then it won't affect normaluser.
How to get out of this ...
0
votes
1answer
108 views
ulimit -a every half hour return back with old value
problem with ulimit -a every half hour return back with old value
every time i change it to
core file size (blocks, -c) unlimited
data seg size (kbytes, -d) unlimited
scheduling ...
0
votes
1answer
286 views
PAM limits.conf not working on www-data in ubuntu oneric ocelot
tried uncommenting pam_limits.so from the pam.d directory but no luck. Basic PAM seems to be installed as libpam are present in /usr/lib
Here is the ucommented part of limits.conf
www-data ...
2
votes
1answer
374 views
Resource limits on Windows?
What are the Windows equivalents to the resource limit mechanisms exposed on Unix systems by Python's resource module, and POSIX setrlimit?
Specifically, I'm limiting processor time for a child ...
0
votes
1answer
425 views
Finding hard and soft open file limits from within jvm in linux (ulimit -n and ulimit -Hn)
I have a problem where I need to find out the hard and soft open file limits for the process in linux from within a java/groovy program. When I execute ulimit from the terminal it gives separate ...
1
vote
1answer
3k views
Setting ulimits for apache on CentOS [closed]
I tried all the way to change the setting for ulimit parameters for apache running on CentOS. Here is the setting for my /etc/security/limits.conf
apache hard fszie 1024
apache soft fszie 1024
apache ...
0
votes
1answer
118 views
How to detect all file handlers that are open in order to close then?
I want to patch python popen2 which tries to close all open filehandres by having a loop on [3, SC_OPEN_MAX].
This means that if someone increases the upper limit using ulimit to a huge value like ...
1
vote
1answer
429 views
limit number of forks/child procs
I am hosting a computing service on Ubuntu 12.04 and I need a method to prevent users from forkbombing. I am currently using setrlimit(RLIMIT_NPROC) in Linux. However, this actually sets a global ...
1
vote
1answer
311 views
From terminal in ubuntu, change ulimit for file descriptor number
Fron the terminal I am trying to change the number of file descriptions open and they will not stick. How, from the terminal do I change the ulimit? Per the below, when I run uwsgi from the terminal, ...
1
vote
1answer
332 views
Global process spawn limit in PHP?
I have a PHP script which I am running on an Ubuntu linux machine. The script spawns multiple processes using the pcntl_fork() function, and uses the pcntl_waitpid() function to log that they are ...
1
vote
0answers
108 views
what should be the Ulimit and FTE_JVM_PROPERTIES size when the number of concurrent transfers is 1000 in WMQFTE ?
what should be the Ulimit and FTE_JVM_PROPERTIES size when the number of concurrent file transfers is 1000 in WMQFTE ? Does this affects the performance of the file transfer ? Thanks in advance.
4
votes
3answers
973 views
How do I close the files from tempfile.mkstemp?
On my machine Linux machine ulimit -n gives 1024. This code:
from tempfile import mkstemp
for n in xrange(1024 + 1):
f, path = mkstemp()
fails at the last line loop with:
Traceback (most ...
1
vote
1answer
185 views
Emacs eshell 'ulimit' command
why i could not find ulimit command in esehll mode
but M-x ansi-term had not this problem.
how could i fix it.
like this:
~ $ ulimit -c
ulimit: command not found
~ $
1
vote
1answer
421 views
How do I get a core dump on OS X Lion?
I am working on a PostgreSQL extension in C that segfaults, so I want to look at the core dump file on my OS X Lion box. However, there are no core files in /cores or anywhere else that I can find. It ...
4
votes
1answer
416 views
ulimit -Sc 1024 vs. ulimit -Hc 1024
What does Hard / Soft limits mean about core file size?
I usually put in my script ulimit -c unlimited before running a binary.
However, I want to limit the file size to avoid disk full.
And then I ...
1
vote
1answer
694 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
...
2
votes
3answers
1k 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?
0
votes
1answer
275 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 ...
3
votes
0answers
520 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 ...
0
votes
1answer
131 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
186 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 ...
1
vote
1answer
207 views
twisted and ulimit
I run command in bash:
ulimit
my_command
How to use ulimit ( or analog function ) in twisted ?
from twisted.internet import protocol, utils, reactor
def r():
...
0
votes
1answer
543 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: ...
2
votes
1answer
707 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..
3
votes
1answer
3k 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:
...
4
votes
1answer
1k 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 ...
2
votes
3answers
831 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 ...
0
votes
1answer
412 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
1k 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 ...
2
votes
0answers
346 views
java - How accurate is Runtime.maxMemory - is it OK to see difference of 9gig? [duplicate]
Possible Duplicate:
Java Runtime.maxMemory incorrect?
I start application with -Xmx100G. The value returned by Runtime.maxMemory is 91G. Where does the remaining memory (9G) go?
I see ...

