|
prlimit — get and set a process resource limits.
prlimit
[options]
[−−{resource_name}[
=limits]
] [ −−pid
PID ]
prlimit
[options]
[−−{resource_name}[
=limits]
] command [
argument... ]
Given a process id and one or more resources, prlimit tries to retrieve and/or modify the limits.
When command
is
given, prlimit
will run this command with the given arguments.
The limits format is composed by a soft and a hard (ceiling) value, separated by a semicolon (:), in order to modify the existing value(s). If no limits are used, prlimit will only display the current values. If one of the values is not used, then the existing one will be used. To specify the unlimited or infinity limit (RLIM_INFINITY), the -1 or 'unlimited' string can be passed.
Because of the nature of limits, the soft value must be lower or equal to the high limit. To see all the available resource limits, refer to the RESOURCE OPTIONS section.
<soft>:<hard>
Specify both limits<soft>:
Specify
only the soft limit:<hard>
Specify
only the hard limit<value>
Specify
both soft and hard limits to the same value−p,
−−pid
Specify the process id, if none is given, it will use the running process.
−o,
−−output
listDefine the output columns to use. If no output
arrangement is specified, then a default set is used.
Use −−help
to
get list of all supported columns.
−V,
−−version
Display version information and exit.
−−verbose
Verbose mode.
−−raw
Use the raw output format.
−−noheadings
Do not print a header line.
−h,
−−help
Display help text and exit.
−c,
−−core
[=limits]Maximum size of a core file.
−d,
−−data
[=limits]Maximum data size.
−e,
−−nice
[=limits]Maximum nice priority allowed to raise.
−f,
−−fsize
[=limits]Maximum file size.
−i,
−−sigpending
[=limits]Maximum number of pending signals.
−l,
−−memlock
[=limits]Maximum locked-in-memory address space.
−m,
−−rss
[=limits]Maximum Resident Set Size (RSS).
−n,
−−nofile
[=limits]Maximum number of open files.
−q,
−−msgqueue
[=limits]Maximum number of bytes in POSIX message queues.
−r,
−−rtprio
[=limits]Maximum real-time priority.
−s,
−−stack
[=limits]Maximum size of the stack.
−t,
−−cpu
[=limits]CPU time, in seconds.
−u,
−−nproc
[=limits]Maximum number of processes.
−v,
−−as
[=limits]Address space limit.
−x,
−−locks
[=limits]Maximum number of file locks held.
−y,
−−rttime
[=limits]Timeout for real-time tasks.
Display limit values for all current resources.
Display the limits of the RSS and set the soft and hard limits for the number of open files to 1024 and 4095, respectively.
Modify only the soft limit for the number of processes.
Set the number of processes for both soft and ceiling values to unlimited.
Set the soft and hard CPU time limit and run 'sort'.