linux信号量超过系统限制

部署一台新服务器,信号量报错,观察也没有key冲突,错误分析及解决如下:

创建一个不存在的信号量集返回参数错误的报错,因为信号量集的信号量数量超过了系统限制。
系统默认
/home/poc#ipcs -ls

------ Semaphore Limits --------
max number of arrays = 128
max semaphores per array = 250
max semaphores system wide = 32000
max ops per semop call = 100
semaphore max value = 32767
信号量的配置文件路径   /etc/sysctl.conf
kernel.sem配置项
直接修改配置文件不会立即生效,调用sysctl命令可以修改文件并刷新系统配置
sysctl -w kernel.sem="40960 2048000  40960  20480"
/home/poc#ipcs -ls

------ Semaphore Limits --------
max number of arrays = 20480
max semaphores per array = 40960
max semaphores system wide = 2048000
max ops per semop call = 40960
semaphore max value = 32767 

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。