command to check status of message queue and shared memory in linux?

27,000

ipcs(1) provides information on the IPC facilities and ipcrm(1) can be used to remove the IPC objects from the system.

List shared memory segments:

ipcs -m

List message queues:

ipcs -q

Remove shared memory segment created with shmkey:

ipcrm -M key

Remove shared memory segment identified by shmid:

ipcrm -m id

Remove message queue created with msgkey:

ipcrm -Q key

Remove message queue identified by msgid:

ipcrm -q id
Share:
27,000
zishan
Author by

zishan

Updated on June 25, 2020

Comments

  • zishan
    zishan almost 4 years

    Sorry to ask such a silly question as i am noob in unix. what are the unix commands to find shared memory and message queue and how to kill them ?