/etc/security/limits.conf
发布时间:2020-12-15 18:20:22 所属栏目:安全 来源:网络整理
导读:ulimit 命令用来限制系统用户对 shell 资源的访问,但只是临时生效,想要永久生效需要配置? /etc/security/limits.conf 文件,语法及常见配置如下: [[email?protected] ~]$ cat /etc/security/ limits.conf # /etc/security/limits.conf ## Each line descr
ulimit 命令用来限制系统用户对 shell 资源的访问,但只是临时生效,想要永久生效需要配置?/etc/security/limits.conf 文件,语法及常见配置如下: [[email?protected] ~]$ cat /etc/security/limits.conf # /etc/security/limits.conf # #Each line describes a limit for a user in the form: # #<domain> <type> <item> <value> # #Where: #<domain> can be: # - an user name # - a group name,with @group syntax # - the wildcard *,for default entry # - the wildcard %,can be also used with %group syntax, # for maxlogin limit # #<type> can have the two values: # - "soft" for enforcing the soft limits # - "hard" for enforcing hard limits # #<item> can be one of the following: # - core - limits the core file size (KB) # - data - max data size (KB) # - fsize - maximum filesize (KB) # - memlock - max locked-in-memory address space (KB) # - nofile - max number of open files # - rss - max resident set size (KB) # - stack - max stack size (KB) # - cpu - max CPU time (MIN) # - nproc - max number of processes # - as - address space limit (KB) # - maxlogins - max number of logins for this user # - maxsyslogins - max number of logins on the system # - priority - the priority to run user process with # - locks - max number of file locks the user can hold # - sigpending - max number of pending signals # - msgqueue - max memory used by POSIX message queues (bytes) # - nice - max nice priority allowed to raise to values: [-20,19] # - rtprio - max realtime priority # #<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 # End of file * soft nofile 65535 * hard nofile 65535 (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |
推荐文章
站长推荐
- GlassFish上开发部署JAX-WS WebService应用( by
- 基本bash shell命令
- twitter-bootstrap – 简单的Bootstrap页面在iPh
- 用JAX-WS开发WebService服务端并用tomcat发布Web
- 在Vim中,在两个括号之间粘贴文本?
- angularjs – Angular-UI typeahead:显示标签,但
- cxf webservice执行数据库操作
- angularjs – 从Angular-ui bootstrap datepicke
- angularjs – 用于ClojureScript的客户端MVC框架
- Angular 5无法在html表上调整单元格高度
热点阅读