Tagged Questions
2
votes
2answers
90 views
How to constrain the resources an application can use on a linux web server
This is the situation:
I have a PHP/MySQL web application that does some PDF processing and thumbnail creation. This is done by using some 3rd party command line software on the server. Both kinds of ...
6
votes
1answer
2k views
How to check, which limit was exceeded? (Process terminated because of ulimit. )
Let's assume process runs in ulimited environment :
(
ulimit ... -v ... -t ... -x 0 ...
./program
)
Program is terminated.
There might be many reasons : memory/time/file limit exceeded ; just ...