summaryrefslogtreecommitdiffstats
path: root/sys-utils/prlimit.1.adoc
blob: bc8c9a12d4a983f7eb0ae685f14c60c373dcbe17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
//po4a: entry man manual
////
prlimit.1 --
Copyright 2011 Davidlohr Bueso <dave@gnu.org>
May be distributed under the GNU General Public License
////
= prlimit(1)
:doctype: manpage
:man manual: User Commands
:man source: util-linux {release-version}
:page-layout: base
:command: prlimit
:colon: :

== NAME

prlimit - get and set process resource limits

== SYNOPSIS

*prlimit* [options] [*--resource*[=_limits_]] [*--pid* _PID_]

*prlimit* [options] [*--resource*[=_limits_]] _command_ [_argument_...]

== DESCRIPTION

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_ parameter is composed of a soft and a hard value, separated by a colon (:), in order to modify the existing values. If no _limits_ are given, *prlimit* will display the current values. If one of the values is not given, 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 limit must be lower or equal to the high limit (also called the ceiling). To see all available resource limits, refer to the *RESOURCE OPTIONS* section.

//TRANSLATORS: Keep {colon} untranslated.
* _soft_{colon}_hard_ Specify both limits.
* _soft_{colon} Specify only the soft limit.
* {colon}__hard__ Specify only the hard limit.
* _value_ Specify both limits to the same value.

== GENERAL OPTIONS

*--noheadings*::
Do not print a header line.

*-o, --output* _list_::
Define the output columns to use. If no output arrangement is specified, then a default set is used. Use *--help* to get a list of all supported columns.

*-p, --pid*::
Specify the process id; if none is given, the running process will be used.

*--raw*::
Use the raw output format.

*--verbose*::
Verbose mode.

include::man-common/help-version.adoc[]

== RESOURCE OPTIONS

*-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.

== NOTES

The *prlimit*(2) system call is supported since Linux 2.6.36, older kernels will break this program.

== EXAMPLES

*prlimit --pid 13134*::
Display limit values for all current resources.

*prlimit --pid 13134 --rss --nofile=1024:4095*::
Display the limits of the RSS, and set the soft and hard limits for the number of open files to 1024 and 4095, respectively.

*prlimit --pid 13134 --nproc=512:*::
Modify only the soft limit for the number of processes.

*prlimit --pid $$ --nproc=unlimited*::
Set for the current process both the soft and ceiling values for the number of processes to unlimited.

*prlimit --cpu=10 sort -u hugefile*::
Set both the soft and hard CPU time limit to ten seconds and run *sort*(1).

== AUTHORS

mailto:dave@gnu.org[Davidlohr Bueso] - In memory of Dennis M. Ritchie.

== SEE ALSO

*ulimit*(1p),
*prlimit*(2)

include::man-common/bugreports.adoc[]

include::man-common/footer.adoc[]

ifdef::translation[]
include::man-common/translation.adoc[]
endif::[]