Home  >  Article  >  Database  >  解决root 用户无法切换到oracle用户

解决root 用户无法切换到oracle用户

WBOY
WBOYOriginal
2016-06-07 15:31:261779browse

今天发现公司linux服务器在root用户下无法通过su - oracle切换到oracle用户,于是百度。得到的结果是打开文件数太多了,考虑到kill 进程风险太大,决定修改修改/etc/security/ limits.conf vi /etc/security/ limits.conf 将* soft nofile 1024 * hard nofil

今天发现公司linux服务器在root用户下无法通过su - oracle切换到oracle用户,于是百度。得到的结果是打开文件数太多了,考虑到kill 进程风险太大,决定修改修改/etc/security/limits.conf
vi /etc/security/limits.conf

 

 

将* soft nofile 1024

* hard nofile 8192

修改为

* soft nofile 2048

* hard nofile 8192
修改后,用ulimit -Hn和ulimit -Sn确认修改已生效。

又试了一下

su - oracle

成功

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn