Linux ipcs确定共享内存使用情况


环境:

[plain]
  1. [Oracle@ www.bkjia.com ~]$ uname -a  
  2. Linux simpleit.domain.cn 2.6.18-194.el5 #1 SMP Fri Apr 2 14:58:35 EDT 2010 i686 athlon i386 GNU/Linux  
  3. [oracle@ www.bkjia.com ~]$ cat /etc/RedHat-release  
  4. CentOS release 5.5 (Final)  
ipcs确定共享内存的使用情况,该命令用于输出系统中处于active状态的消息队列,共享内存段以及信号量的有关消息。

[plain]
  1. DESCRIPTION  
  2.    The  ipcs  utility  shall write information about active interprocess communication facili-  
  3.    ties.  
  4.   
  5.    Without options, information shall be written in short format for  message  queues,  shared  
  6.    memory segments, and semaphore sets that are currently active in the system. Otherwise, the  
  7.    information that is displayed is controlled by the options specified.  
  8.   
  9.    
  10. -b     Write information on maximum allowable size. (Maximum number of bytes in messages on  
  11.           queue for message queues,  size  of  segments  for  shared  memory,  and  number  of  
  12.           semaphores in each set for semaphores.)  
  13.   
  14.                 
  15. [oracle@ www.bkjia.com ~]$ ipcs -b  
  16. ipcs: invalid option -- b  
  17. usage : ipcs -asmq -tclup  
  18.         ipcs [-s -m -q] -i id  
  19.         ipcs -h for help.  
  20. [oracle@ www.bkjia.com ~]$ ipcs  
  21.   
  22. ------ Shared Memory Segments --------  
  23. key        shmid      owner      perms      bytes      nattch     status  
  24. 0xe9b42ad8 2228225    oracle    640        88080384   13  
  25. 0x8cdf18fc 2359299    oracle    640        528482304  26  
  26.   
  27. ------ Semaphore Arrays --------  
  28. key        semid      owner      perms      nsems  
  29. 0xbbe791cc 98304      oracle    640        44  
  30. 0x9d085d3c 491521     oracle    640        154  
  31.   
  32. ------ Message Queues --------  
  33. key        msqid      owner      perms      used-bytes   messages  
  34. [oracle@ www.bkjia.com ~]$ ipcs -m  
  35.   
  36. ------ Shared Memory Segments --------  
  37. key        shmid      owner      perms      bytes      nattch     status  
  38. 0xe9b42ad8 2228225    oracle    640        88080384   13  
  39. 0x8cdf18fc 2359299    oracle    640        528482304  26  
通常最好让整个SGA处于一个单一的共享内存段,因为跟踪一个以上的段将需要额外的开销,在这些段来回切换也需要时间。可以增加/etc/sysctl.conf文件kernel.shmmax参数值,以增加一个单一的共享内存段的最大尺寸。
# Controls the maximum shared segment size, in bytes
kernel.shmmax = 4294967295

使用ipcs可以查看系统的SGA是否由多个不连续的内存块组成,如果数据库失败,在释放内存时就会出现问题。使用ipcrm命令(仅仅用于在数据库失败之后SGA碎片没有被释放的情况)可以从内存中去除SGA碎片。不要在一个正在运行的数据库中运行ipcrm命令。


ipcrm命令

[plain]
  1. DESCRIPTION  
  2.    The  ipcrm utility shall remove zero or more message queues, semaphore sets, or shared mem-  
  3.    ory segments. The interprocess communication facilities to be removed are specified by  the  
  4.    options.  
  5.   
  6.    Only  a user with appropriate privilege shall be allowed to remove an interprocess communi-  
  7.    cation facility that was not created by or owned by the user invoking ipcrm.  
  8.   
  9.  -q  msgid --队列id  
  10.       Remove  the  message  queue identifier msgid from the system and destroy the message  
  11.       queue and data structure associated with it.  
  12.   
  13. -m  shmid  --共享内存id  
  14.       Remove the shared memory identifier shmid from the system. The shared memory segment  
  15.       and data structure associated with it shall be destroyed after the last detach.  
  16.   
  17. -s  semid  --信号量id  
  18.       Remove  the  semaphore  identifier  semid  from  the  system  and destroy the set of  
  19.       semaphores and data structure associated with it.  
  20. 比如 ipcrm -m 2359299  

相关内容