HP-UX平台Oracle启动实例遭遇ORA-27300/ORA-27301/ORA-27302报错

近期某客户因业务发展,需要将ORACLE数据库的PROCESS连接数,从3500改动到10000.经过前期沟通,计划在晚上进行RAC的2个节点轮流重启的方式来进行修改,尽可能的减少对业务的影响。

该平台为hpux 11.31环境的oracle 11.2.0.4版本,2节点RAC集群环境。

正常的配置参数后开始重启:

SQL> alter system set processes=10000 scope=spfile sid='hisdb1';

System altered.

SQL> alter system set processes=10000 scope=spfile sid='hisdb2';

System altered.

重启数据库报错,如下:

$ sqlplus / as sysdba

SQL*Plus: Release 11.2.0.4.0 Production on Mon Mar 9 20:18:51 2026

Copyright (c) 1982, 2013, Oracle. All rights reserved.

Connected to an idle instance.

SQL> startup nomount

ORA-27154: post/wait create failed

ORA-27300: OS system dependent operation:semget failed with status: 28

ORA-27301: OS failure message: No space left on device

ORA-27302: failure occurred at: sskgpcreates

对该报错进行分析,是系统内核参数的限制,因此尝试修改内核参数,发现HPUX的这几个内核参数修改,需要重启HPUX系统才可以生效。因此将PROCESS修改为5000,先启用数据库。

kctune -h -B semmni=16384

kctune -h -B semmns=32768

* The automatic 'backup' configuration has been updated.

* Future operations will update the backup without prompting.

* The requested changes have been saved, and will take effect at

next boot.

Tunable Value Expression

semmni (now) 8192 8192

(next boot) 16384 16384

kctune -h -B semmns=32768

* The automatic 'backup' configuration has been updated.

* Future operations will update the backup without prompting.

* The requested changes have been saved, and will take effect at

next boot.

Tunable Value Expression

semmns (now) 16384 16384

(next boot) 32768 32768

后续经过分析,在HPUX上修改PROCESS参数,需要对应修改如下参数:

修改命令:

kctune -h -B semmni=16384

kctune -h -B semmns=32768

kctune -h -B nkthread=34768

kctune -h -B nproc=32768

kctune -h -B maxuprc=32000

参数值查看:

kctune|grep nproc

kctune|grep semmn

kctune|grep maxuprc

kctune|grep nkthread

再次申请停机维护窗口,将HPUX的5个参数修改后,数据库的PROCESS参数成功修改到10000.

相关推荐
xier_ran3 小时前
【infra之路】GPU 存储层次总结:L1 / L2 / HBM
java·网络·数据库
山甫aa4 小时前
Javaweb---MyBatis增删改查
java·数据库·后端·mybatis·springboot
@insist1235 小时前
系统集成项目管理工程师-信息和文档管理
网络·数据库·软考·系统集成项目管理工程师·软考中项·软件水平考试
残 风6 小时前
PostgreSQL 存储机制详解
数据库·postgresql·开源·数据库开发
JacksonMx7 小时前
Java CompletableFuture 异步编程实战:从入门到架构师避坑指南
linux·数据库·python
tachibana27 小时前
性能指标的口径选择
数据库·人工智能·架构·大模型·llm
机器人梦想家8 小时前
具身机器人视觉服务的异步回调与并发控制
数据库·算法·机器人
小妖同学学AI8 小时前
开源向量数据库的王者:Milvus 深度解析,专为 AI 应用打造的云原生搜索引擎!
数据库·开源·milvus
l1258659 小时前
# RAG上线评估指标体系:六大核心指标与压测实战全解析
数据库·人工智能·python·mysql·langchain·milvus