今天看到ulimit命令,追溯到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, 限制maxlogins时可以使用%group
# for maxlogin limit
#
#<type> can have the two values:
# - "soft" for enforcing the soft limits
# - "hard" for enforcing hard limits
# soft 指的是当前系统生效的设置值。hard 表明系统中所能设定的最大值。soft 的限制不能比har 限制高。用 - 就表明同时设置了 soft 和 hard 的值
#<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) 以分钟为单位的最多 CPU 时间
# - nproc - max number of processes 进程的最大数目
# - as - address space limit 地址空间限制
# - 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
# - 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
分享到:
相关推荐
# 编辑 /etc/security/limits.conf 文件 echo "* soft nproc 2407" >> /etc/security/limits.conf echo "* hard nproc 16384" >> /etc/security/limits.conf echo "* soft nofile 1024" >> /etc/security/limits....
*永久修改 ulimit 值需要修改 /etc/security/limits.conf 文件,并确保 pam_limits.so 文件被加入到启动文件中。 六、相关知识点 * ulimit 命令:用于设置最大进程数和最大文件打开数,是系统优化的必要手段。 * ...
知识点:/etc/security/limits.conf 文件是 Linux 系统中用于设置用户限制的文件,通过修改该文件,可以调整用户的资源使用量。 2. 修改 /etc/pam.d/login 文件 修改 /etc/pam.d/login 文件,添加 session ...
2. 修改 /etc/security/limits.conf 文件,输入命令:vi /etc/security/limits.conf,将以下内容加入该文件: ``` oracle soft nproc 2047 oracle hard nproc 16384 oracle soft nofile 1024 oracle hard nofile ...
1.1、修改 /etc/security/limits.conf 文件 Oracle 需要修改用户的 SHELL 限制,以便满足数据库的运行要求。输入命令:`vi /etc/security/limits.conf`,将以下内容加入该文件: ``` .oracle soft nproc 2047 ....
* 编辑 /etc/security/limits.conf 文件,添加 oracle 用户的 SHELL 限制 * 编辑 /etc/pam.d/login 文件,添加 pam_limits.so 限制 * 编辑 /etc/sysctl.conf 文件,添加内核参数配置 * 使 /etc/sysctl.conf 文件修改...
1. 修改用户的 SHELL 的限制,修改 /etc/security/limits.conf 文件,添加以下内容: ``` oracle soft nproc 2047 oracle hard nproc 16384 oracle soft nofile 1024 oracle hard nofile 65536 ``` 2. 修改 /etc/pam...
oracle 11gR2 rac 1 更改网卡别名配置 /etc/udev/rules...10 配置权限参数 /etc/security/limits.conf 11 配置全局shell /etc/profile 12 互信 13 时钟同步 14 配置共享磁盘 验证安装Grid环境
1. 修改用户的 SHELL 限制:需要修改/etc/security/limits.conf 文件,增加 Oracle 用户的 SHELL 限制。 2. 修改 /etc/pam.d/login 文件:需要修改/etc/pam.d/login 文件,以便于 Oracle 12c 的安装和配置。 3. 修改...
1. **修改/etc/security/limits.conf文件** - 使用root用户权限执行命令 `vi /etc/security/limits.conf` 进入编辑模式。 - 将以下内容添加至文件末尾: ``` oraclesoft nproc 2047 oracle hard nproc 16384 ...
通过修改`/etc/security/limits.conf`文件,可以设置Oracle用户的最大可打开文件数和最大可拥有进程数。具体操作步骤如下: ```bash vi /etc/security/limits.conf ``` 在文件末尾添加以下行: ``` oracle soft ...
解决办法是修改/etc/security/limits.conf文件,增加nofile参数的值。具体来说,需要添加两行:`* soft nofile 102400`和`* hard nofile 409600`。然后,需要在/etc/pam.d/目录下添加一行`session required /lib/...
# 编辑 /etc/security/limits.conf 文件 # vi /etc/security/limits.conf # 添加以下内容 * soft nproc 2047 * hard nproc 16384 * soft nofile 1024 * hard nofile 65536 ``` #### 四、禁用 SELinux 为了防止 ...
通常我们通过终端连接到linux系统... 如果想变更需要修改/etc/security/limits.conf 文件,如下: vi /etc/security/limits.conf * hard nofile 102400 * soft nofile 102400 保存退出后重新登录,其大文
在/etc/security/limits.conf文件中添加以下参数: #for oracle oracle soft nproc 2047 oracle hard nproc 16384 oracle soft nofile 1024 oracle hard nofile 65536 oracle soft stack 10240 #for grid grid ...
解决方法是修改 /etc/security/limits.conf 文件,增加打开文件数的限制。具体操作是:vi /etc/security/limits.conf,添加以下内容:* soft nofile 102400 * hard nofile 409600。然后,cd /etc/pam.d/,sudo vi ...
在修改用户限制文件时,我们需要编辑/etc/security/limits.conf文件,并添加相关的配置,例如oracle软限制和硬限制。 在修改/etc/pam.d/login文件时,我们需要添加相关的配置,以便让PAM模块可以读取限制文件。 ...
使用 vi 编辑器打开 /etc/security/limits.conf 文件,命令如下:vi /etc/security/limits.conf 在最后添加四条语句,需添加的语句如下: dmdba hard nofile 65536 dmdba soft nofile 65536 dmdba hard stack ...
# 编辑 /etc/security/limits.conf 文件 vi /etc/security/limits.conf # 在文件末尾添加以下内容 oracle soft nproc 2047 oracle hard nproc 16384 oracle soft nofile 1024 oracle hard nofile 65536 ...