shmall参数设置不当引起数据库启动时报out of memory报错
shmall是全部允许使用的共享内存大小,单位是页,可以通过getconfPAGESIZE来获取每页的大小,一般为4096字节shmmax是单个段允许使用的最大共享内存大小可以使用ip
shmall是全部允许使用的共享内存大小,单位是页,可以通过getconf PAGESIZE来获取每页的大小,一般为4096字节
shmmax是单个段允许使用的最大共享内存大小
可以使用 ipcs -l 看到shmall,shmmax设置的值。ipcs -u可以看到实际使用的情况。
下面为shmall和shmmax参数相关的案例
环境介绍:
操作系统:suse 11 sp1 64bit 数据库版本:oracle 11g R1 64bit 主机内存:94G1、主机内存94G,更改数据库的sga_target为40G,重启数据库生效该参数,在启动过程报ORA-27102: out of memory错误:
SQL> alter system set sga_target=40G scope=spfile; System altered. SQL> shutdown immediate Database closed. Database dismounted. ORACLE instance shut down. SQL> startup ORA-27102: out of memory Linux-x86_64 Error: 28: No space left on device2、当前的shmall和shmmax参数设置如下:
fly007:~ # cat /etc/sysctl.conf | grep -E 'shmall|shmmax' kernel.shmall = 4194304 kernel.shmmax = 507089285123、shmmax是单个段允许使用的最大共享内存大小,单位是字节,一般shmmax>sga_target的大小,这样整个sga就在一个共享内存段,这是推荐的做法,我们这设置的shmmax为物理内存的一半,也就是47G,大于sga_target=40G,该参数设置正确
fly007:~ # cat /etc/sysctl.conf | grep shmmax kernel.shmmax = 50708928512 fly007:~ # echo "50708928512/1024/1024/1024" | bc 474、shmall是全部允许使用的共享内存大小,注意单位是页,通过getconf PAGESIZE命令得到每页的大小为4096字节,也是就4194304*4096/1024/1024/1024=16G
fly007:~ # getconf PAGESIZE 4096 fly007:~ # cat /etc/sysctl.conf | grep shmall kernel.shmall = 4194304 fly007:~ # echo "4194304*4096/1024/1024/1024" | bc 165、全部允许使用的共享内存大小为16G 6、设置shmall参数为12380109,,生效该设置,启动数据库,正常启动
fly007:~ # cat /etc/sysctl.conf | grep shmall kernel.shmall = 12380109 fly007:~ # sysctl -p fly007:~ # su - oracle oracle@fly007:~> sqlplus /nolog SQL*Plus: Release 11.1.0.7.0 - Production on Wed Dec 25 23:45:04 2013 Copyright (c) 1982, 2008, Oracle. All rights reserved. SQL> conn /as sysdba Connected to an idle instance. SQL> startup ORACLE instance started. Total System Global Area 4.8103E+10 bytes Fixed Size 2170704 bytes Variable Size 1.9998E+10 bytes Database Buffers 2.8052E+10 bytes Redo Buffers 50548736 bytes Database mounted. Database opened. SQL>以下关于shmall和shmmax内容来自:+and+SHMALL
Configuring SHMMAX and SHMALL for Oracle in Linux
======
SHMMAX and SHMALL are two key shared memory parameters that directly impact’s the way by which Oracle creates an SGA. Shared memory is nothing but part of Unix IPC System (Inter Process Communication) maintained by kernel where multiple processes share a single chunk of memory to communicate with each other.
While trying to create an SGA during a database startup, Oracle chooses from one of the 3 memory management models a) one-segment or b) contiguous-multi segment or c) non-contiguous multi segment. Adoption of any of these models is dependent on the size of SGA and values defined for the shared memory parameters in the linux kernel, most importantly SHMMAX.
SHMMAX and SHMALL -
SHMMAX is the maximum size of a single shared memory segment set in “bytes”.

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

The article discusses using MySQL's ALTER TABLE statement to modify tables, including adding/dropping columns, renaming tables/columns, and changing column data types.

Article discusses configuring SSL/TLS encryption for MySQL, including certificate generation and verification. Main issue is using self-signed certificates' security implications.[Character count: 159]

Article discusses strategies for handling large datasets in MySQL, including partitioning, sharding, indexing, and query optimization.

Article discusses popular MySQL GUI tools like MySQL Workbench and phpMyAdmin, comparing their features and suitability for beginners and advanced users.[159 characters]

The article discusses dropping tables in MySQL using the DROP TABLE statement, emphasizing precautions and risks. It highlights that the action is irreversible without backups, detailing recovery methods and potential production environment hazards.

Article discusses using foreign keys to represent relationships in databases, focusing on best practices, data integrity, and common pitfalls to avoid.

The article discusses creating indexes on JSON columns in various databases like PostgreSQL, MySQL, and MongoDB to enhance query performance. It explains the syntax and benefits of indexing specific JSON paths, and lists supported database systems.

Article discusses securing MySQL against SQL injection and brute-force attacks using prepared statements, input validation, and strong password policies.(159 characters)
