여러 ulimits(시스템은 rhel 7.5)를 설정하고 있지만 이에 대해 아무것도 찾을 수 없습니다 type
. 내부적으로 /etc/security/limits.conf
유형이 두 개의 값을 얻을 수 있는 반면 구성 예제에서는 파일에 3개의 값이 포함되어 있습니다.
- 부드러운
- 딱딱한
- - (대시)
아래 파일의 예에서@학생종류가 있어요-.
언제 질문하세요- (대시)을 위한?
....
#<type> can have the two values:
# - "soft" for enforcing the soft limits
# - "hard" for enforcing hard limits
.....
#<domain> <type> <item> <value>
#* soft core 0
#* hard rss 10000
#@student hard nproc 20
#@faculty soft nproc 20
#@faculty hard nproc 50
#ftp hard nproc 0
#@student - maxlogins 4
.....
답변1
답은 다음에서 찾을 수 있습니다.인원 제한.conf
<type>
hard
for enforcing hard resource limits. These limits are set by the superuser and enforced by the Kernel. The user cannot raise his requirement of system resources above such values.
soft
for enforcing soft resource limits. These limits are ones that the user can move up or down within the permitted range by any pre-existing hard limits. The values specified with this token can be thought of as default values, for normal system usage.
-
for enforcing both soft and hard resource limits together.
Note, if you specify a type of '-' but neglect to supply the item and value fields then the module will never enforce any limits on the specified user/group etc. .