/bin/bash: Resource temporarily unavailable

有现场反馈plsql无法连接数据库了,登录环境查看时发现从root切换到grid时报错/bin/bash: Resource temporarily unavailable

root@db1 \~# su - grid

Last login: Thu Jul 27 18:45:04 CST 2023

su: failed to execute /bin/bash: Resource temporarily unavailable

使用root用户查看grid用户的nproc和nofile较小,当前连接数2000多

root@db1 \~# grep grid /etc/security/limits.conf

grid soft nproc 2047

grid hard nproc 32768

grid soft nofile 1024

grid hard nofile 250000

grid soft stack 10240

grid hard stack 32768

root@db1 \~# ps -ef |grep LOCAL=NO|wc -l

2038

处理办法,调整/etc/security/limits.conf文件的grid用户参数,修改后如图:

root@db1 \~# grep grid /etc/security/limits.conf

grid soft nproc 20470

grid hard nproc 32768

grid soft nofile 10240

grid hard nofile 250000

grid soft stack 10240

grid hard stack 32768

root@db1 \~#

配置后,再次从root用户切换到grid,登录正常

root@db1 \~# su - grid

Last login: Thu Jul 27 18:35:04 CST 2023

grid@db1>

相关推荐
^yi4 分钟前
【Linux系统编程】库的制作与使用
linux·运维·服务器
LUCKY-LIVING20 分钟前
ELF File in linux
android·java·linux
深耕时光,自成山海24 分钟前
for,while等循环
运维
bksczm31 分钟前
popen解析
linux·运维·服务器
深念Y38 分钟前
技术探索记录 在 Android 手机上运行 One API
android·linux·服务器·智能手机·go·交叉编译·服务
qetfw1 小时前
Debian 配置 AIDE 文件完整性检测:基线初始化、变更检查与数据库更新
linux·网络·数据库·debian
俊哥工具1 小时前
文件批量转换工具 本地运行更快更安全
运维·服务器·django·音视频·tornado
小生不才yz1 小时前
Linux设备与存储精读 · L02-02 | inode 与目录项:名字、元数据、数据分别在哪
linux
陈聪.1 小时前
HAProxy 知识整理:从负载均衡原理到实战配置
运维·负载均衡
AOwhisky3 小时前
Linux(CentOS)系统管理入门笔记(第二十一期)——防火墙管理(Firewalld)——zone、服务端口、富规则与端口转发
linux·运维·笔记·安全·centos·防火墙