/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>

相关推荐
林间码客2 小时前
从DevOps到DevSecOps:构建现代软件交付的基石与护城河
大数据·运维·devsecops·devops
李白你好3 小时前
Windows 离线 Linux 提权辅助查询工具
linux
Lust Dusk3 小时前
记一次Linux应急响应题目解析
linux·运维·服务器·网络·安全·网络安全
ShineWinsu4 小时前
对于Linux:五种IO模型以及非阻塞IO的详细解析
linux·c++·面试·io·阻塞·非阻塞·fcntl
千千寰宇4 小时前
[Linux/Ollama] Termux : 一款运行在 Android 平台上的开源终端模拟器与 Linux 环境应用、支持在手机上基于Ollama部署LLM
linux
轻揉小乔 真新人4 小时前
使用memc-nginx和srcache-nginx模块构建高效透明的缓存机制
运维·nginx·缓存
Yan_chen6665 小时前
SSH(Secure Shell)安全外壳协议详解
运维·网络协议·ssh
lingran__6 小时前
Linux 基础常用指令万字详解(上)|文件目录命令,结合底层原理剖析
linux·运维·服务器·后端·centos·linux基础指令
各类产品分享7 小时前
电力行业AR智能运维哪个品牌好
运维·ar·ar巡检
Dlrb12117 小时前
Linux驱动---sys文件系统自动添加设备节点、添加调试节点以及MISC设备驱动的解释
linux·imx6ull·misc·设备节点·sys文件系统