`

/etc/security/limits.conf 设置----ORACLE安装

 
阅读更多

为Oracle用户设定Shell的限制

一般来说,出于性能上的考虑,还需要需要进行如下的设定,以便改进Oracle用户的有关 nofile(可打开的文件描述符的最大数)和nproc(单个用户可用的最大进程数量)

 

1、修改限制

# vi /etc/security/limits.conf

# 添加如下的行

* soft nofile 4096

* hard nofile 65536

* soft nproc  2047

* hard nproc  16384

 

也可以只为oracle用户设定限制

oracle soft nofile 4096

oracle hard nofile 65536

orcle  soft nproc  2047

oracle hard nproc  16384

 

 

2、为使其后续生效,运行命令vi /etc/pam.d/login,在其中加入

session required /lib/security/pam_limits.so 

session required pam_limits.so 

 

3、检查修改的参数

Check the soft and hard limits for the file descriptor setting. Ensure that the result is in the recommended range. For example

$ ulimit -Sn

$ ulimit -Hn

 

Check the soft and hard limits for the number of processes available to a user. Ensure that the result is in the recommended range. For example:

$ ulimit -Su

$ ulimit -Hu

分享到:
评论

相关推荐

    在Ubuntu Server(804,904)上安装Oracle 10g企业版

    echo "* hard nproc 16384" >> /etc/security/limits.conf echo "* soft nofile 1024" >> /etc/security/limits.conf echo "* hard nofile 65536" >> /etc/security/limits.conf ``` #### 环境变量设置 为了使...

    Red_Hat_Linux5.5 下安装 oracle

    echo 'oracle hard nofile 65536' >> /etc/security/limits.conf ``` 同时,在 `/etc/pam.d/login` 文件中添加以下行: ```bash echo 'session required pam_limits.so' >> /etc/pam.d/login ``` ##### 2.6 关闭 ...

    Redhat5及Oracle11g详细安装配置及管理.doc

    echo 'oracle hard nofile 65536' >> /etc/security/limits.conf echo 'oracle soft nproc 2047' >> /etc/security/limits.conf echo 'oracle hard nproc 16384' >> /etc/security/limits.conf ``` **二、进行...

    oracle11g设置内核参数和limit的增强

    传统的Oracle数据库安装过程中,数据库管理员(DBA)需要手动编辑`/etc/sysctl.conf`和`/etc/security/limits.conf`这两个关键文件来调整操作系统级别的内核参数和资源限制。这种做法不仅耗时费力,而且容易出现人为...

    11gR2 RAC搭建

    oracle 11gR2 rac 1 更改网卡别名配置 /etc/udev/rules...10 配置权限参数 /etc/security/limits.conf 11 配置全局shell /etc/profile 12 互信 13 时钟同步 14 配置共享磁盘 验证安装Grid环境

    终极版Deepin静默安装oracle.docx

    vim /etc/security/limits.conf 修改内容如下: oracle soft nproc 2047 oracle hard nproc 16384 oracle soft nofile 1024 oracle hard nofile 65536 oracle soft stack 10240 最后,我们需要修改 login 文件。...

    linux5.4安装oracle11gR2.docx

    echo 'oracle soft nofile 65536' >> /etc/security/limits.conf echo 'oracle hard nofile 65536' >> /etc/security/limits.conf echo 'oracle soft nproc 16384' >> /etc/security/limits.conf echo 'oracle hard ...

    RHEL6.1安装oracle 10G

    在`/etc/security/limits.conf`文件末尾添加以下内容: ```bash oracle soft nproc 2047 oracle hard nproc 16384 oracle soft nofile 1024 oracle hard nofile 65536 ``` ##### 2.3 修改`/etc/pam.d/login` 在`/...

    安装oracle11gR2数据库环境快速准备神器oracle-rdbms-server-11gR2-preinstall

    4. **配置限制文件**:工具会更新`/etc/security/limits.conf`,设置针对Oracle用户的资源限制,如最大文件描述符数、堆栈大小等,确保数据库服务能够高效运行。 5. **关闭NUMA(非一致内存访问)**:NUMA架构可能...

    linux系统安装oracle11G完整版

    知识点:/etc/security/limits.conf 文件是 Linux 系统中用于设置用户限制的文件,通过修改该文件,可以调整用户的资源使用量。 2. 修改 /etc/pam.d/login 文件 修改 /etc/pam.d/login 文件,添加 session ...

    linux+oracle11g_安装文档

    # 编辑 /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 ...

    Linux下-Oracle11G安装

    - 使用root用户权限执行命令 `vi /etc/security/limits.conf` 进入编辑模式。 - 将以下内容添加至文件末尾: ``` oraclesoft nproc 2047 oracle hard nproc 16384 oraclesoft nofile 1024 oracle hard nofile...

    centos6.6 Oracle11G安装文档

    1.1、修改 /etc/security/limits.conf 文件 Oracle 需要修改用户的 SHELL 限制,以便满足数据库的运行要求。输入命令:`vi /etc/security/limits.conf`,将以下内容加入该文件: ``` .oracle soft nproc 2047 ....

    Linux下安装Oracle11g服务器(详细图解).pdf

    - 使用root用户权限编辑`/etc/security/limits.conf`文件。 - 命令: `vi /etc/security/limits.conf` - 在文件末尾添加以下内容: ```conf oraclesoft nproc 2047 oracle hard nproc 16384 oraclesoft nofile ...

    Linux系统(X64)安装Oracle11g完整安装图文教程.docx

    1. **编辑 `/etc/security/limits.conf` 文件**: - 打开终端并切换至root用户。 - 使用`vi /etc/security/limits.conf`命令打开文件。 - 在文件末尾添加以下内容: ```plaintext oraclesoftnproc 2047 ...

    ubuntu 8.0.4 server 安装oracle10.2成功

    2. 编辑`/etc/security/limits.conf`文件: ```bash oracle soft nofile 65536 oracle hard nofile 65536 ``` 通过以上步骤,可以确保在Ubuntu 8.0.4 Server上成功安装Oracle 10.2。这些步骤不仅覆盖了软件的...

    rhel5+oracle10gr2安装配置

    以root用户执行,添加以下内容到`/etc/security/limits.conf`和`/etc/pam.d/login`文件中: ```bash #vi /etc/security/limits.conf oracle soft nproc 2047 oracle hard nproc 16384 oracle soft nofile 1024 ...

    rhel安装oracle11

    - 修改 `/etc/security/limits.conf` 文件,添加关于Oracle用户的限制。 - 修改系统环境变量 `/etc/profile`,确保Oracle环境变量正确设置。 #### 三、安装过程 完成上述准备工作后,就可以开始安装过程了。 **1...

    Linux下oracle_11g的安装

    接下来需要配置Oracle用户的资源限制,这通常通过编辑`/etc/security/limits.conf`文件完成。 ```bash # vi /etc/security/limits.conf ``` 向文件末尾添加以下内容: ```bash oracle soft nproc 2047 oracle ...

    ubuntu 10.04上搭建oracle 11g个人总结

    修改文件 /etc/security/limits.conf,添加以下内容: czlq soft nproc 2047 czlq hard nproc 16384 czlq soft nofile 1024 czlq hard nofile 65536 修改文件 /etc/pam.d/login,添加以下内容: session required...

Global site tag (gtag.js) - Google Analytics