source: branches/fc11-dev/server/fedora/config/etc/security/limits.conf @ 1220

Last change on this file since 1220 was 1180, checked in by mitchb, 15 years ago
Provide enough memory for java to spit out its usage message Java has become an insanely memory-hungry hog and requires the virtual memory address space limits to be raised beyond anything sane. Bump the "as" limit in limits.conf from 1GB to 1.25GB, and the "RLimitMEM" directive in httpd.conf from 0.5GB to 1.25GB.
File size: 2.0 KB
Line 
1# /etc/security/limits.conf
2#
3#Each line describes a limit for a user in the form:
4#
5#<domain>        <type>  <item>  <value>
6#
7#Where:
8#<domain> can be:
9#        - an user name
10#        - a group name, with @group syntax
11#        - the wildcard *, for default entry
12#        - the wildcard %, can be also used with %group syntax,
13#                 for maxlogin limit
14#
15#<type> can have the two values:
16#        - "soft" for enforcing the soft limits
17#        - "hard" for enforcing hard limits
18#
19#<item> can be one of the following:
20#        - core - limits the core file size (KB)
21#        - data - max data size (KB)
22#        - fsize - maximum filesize (KB)
23#        - memlock - max locked-in-memory address space (KB)
24#        - nofile - max number of open files
25#        - rss - max resident set size (KB)
26#        - stack - max stack size (KB)
27#        - cpu - max CPU time (MIN)
28#        - nproc - max number of processes
29#        - as - address space limit (KB)
30#        - maxlogins - max number of logins for this user
31#        - maxsyslogins - max number of logins on the system
32#        - priority - the priority to run user process with
33#        - locks - max number of file locks the user can hold
34#        - sigpending - max number of pending signals
35#        - msgqueue - max memory used by POSIX message queues (bytes)
36#        - nice - max nice priority allowed to raise to values: [-20, 19]
37#        - rtprio - max realtime priority
38#
39#<domain>      <type>  <item>         <value>
40#
41
42# No limits for root
43root             -
44
45# For everyone else,
46*                soft    core            0
47*                -       rss             524268
48*                -       data            1048576
49*                -       as              1310720
50
51#*               soft    core            0
52#*               hard    rss             10000
53#@student        hard    nproc           20
54#@faculty        soft    nproc           20
55#@faculty        hard    nproc           50
56#ftp             hard    nproc           0
57#@student        -       maxlogins       4
58
59# End of file
Note: See TracBrowser for help on using the repository browser.