≡ Menu

10 IPCS Command Examples (With IPC Introduction)

IPC stands for Inter-process Communication.

This technique allows the processes to communicate with each another.

Since each process has its own address space and unique user space, how does the process communicate each other?

The answer is Kernel, the heart of the Linux operating system that has access to the whole memory. So we can request the kernel to allocate the space which can be used to communicate between processes.

The process can also communicate by having a file accessible to both the processes. Processes can open, and read/write the file, which requires lot of I/O operation that consumes time.

Different Types of IPCS

There are various IPC’s which allows a process to communicate with another processes, either in the same computer or different computer in the same network.

  • Pipes – Provides a way for processes to communicate with each another by exchanging messages. Named pipes provide a way for processes running on different computer systems to communicate over the network.
  • Shared Memory – Processes can exchange values in the shared memory. One process will create a portion of memory which other process can access.
  • Message Queue – It is a structured and ordered list of memory segments where processes store or retrieve data.
  • Semaphores – Provides a synchronizing mechanism for processes that are accessing the same resource. No data is passed with a semaphore; it simply coordinates access to shared resources.

10 IPCS Command Example

ipcs is a UNIX / Linux command, which is used to list the information about the inter-process communication ipcs command provides a report on System V IPCS (Message queue, Semaphore, and Shared memory).

IPCS Example 1: List all the IPC facility

ipcs command with -a option lists all the IPC facilities which has read access for the current process. It provides details about message queue, semaphore and shared memory.

# ipcs -a

------ Shared Memory Segments --------
key        shmid      owner      perms      bytes      nattch     status
0xc616cc44 1056800768 oracle    660        4096       0
0x0103f577 323158020  root      664        966        1
0x0000270f 325713925  root      666        1          2

------ Semaphore Arrays --------
key        semid      owner      perms      nsems
0x0103eefd 0          root      664        1
0x0103eefe 32769      root      664        1
0x4b0d4514 1094844418 oracle    660        204

------ Message Queues --------
key        msqid      owner      perms      used-bytes   messages
0x000005a4 32768      root       644        0            0

All the IPC facility has unique key and identifier, which is used to identify an IPC facility.

IPCS Example 2: List all the Message Queue

ipcs with option -q, lists only message queues for which the current process has read access.

$ ipcs -q

------ Message Queues --------
key        msqid      owner      perms      used-bytes   messages
0x000005a4 32768      root       644        0            0

IPCS Example 3. List all the Semaphores

ipcs -s option is used to list the accessible semaphores.

# ipcs -s

------ Semaphore Arrays --------
key        semid      owner      perms      nsems
0x0103eefd 0          root      664        1
0x0103eefe 32769      root      664        1
0x4b0d4514 1094844418 oracle    660        204

IPCS Example 4. List all the Shared Memory

ipcs -m option with ipcs command lists the shared memories.

# ipcs -m

------ Shared Memory Segments --------
key        shmid      owner      perms      bytes      nattch     status
0xc616cc44 1056800768 oracle    660        4096       0
0x0103f577 323158020  root      664        966        1
0x0000270f 325713925  root      666        1          2

IPCS Example 5. Detailed information about an IPC facility

ipcs -i option provides detailed information about an ipc facility.

# ipcs -q -i 32768

Message Queue msqid=32768
uid=0   gid=0   cuid=0  cgid=0  mode=0644
cbytes=0        qbytes=65536    qnum=0  lspid=0 lrpid=0
send_time=Not set
rcv_time=Not set
change_time=Thu Aug  5 13:30:22 2010

Option -i with -q provides information about a particular message queue. Option -i with -s provides semaphore details. Option -i with -m provides details about a shared memory.

IPCS Example 6. Lists the Limits for IPC facility

ipcs -l option gives the system limits for each ipc facility.

# ipcs -m -l

------ Shared Memory Limits --------
max number of segments = 4096
max seg size (kbytes) = 67108864
max total shared memory (kbytes) = 17179869184
min seg size (bytes) = 1

The above command gives the limits for shared memory. -l can be combined with -q and -s to view the limits for message queue and semaphores respectively.

Single option -l gives the limits for all three IPC facilities.

# ipcs -l

IPCS Example 7. List Creator and Owner Details for IPC Facility

ipcs -c option lists creator userid and groupid and owner userid and group id. This option can be combined with -m, -s and -q to view the creator details for specific IPC facility.

# ipcs -m -c

------ Shared Memory Segment Creators/Owners --------
shmid      perms      cuid       cgid       uid        gid
1056800768 660        oracle     oinstall   oracle     oinstall
323158020  664        root       root       root       root
325713925  666        root       root       root       root

IPCS Example 8. Process ids that accessed IPC facility recently

ipcs -p option displays creator id, and process id which accessed the corresponding ipc facility very recently.

# ipcs -m -p

------ Shared Memory Creator/Last-op --------
shmid      owner      cpid       lpid
1056800768 oracle     16764      5389
323158020  root       2354       2354
325713925  root       20666      20668

-p also can be combined with -m,-s or -q.

IPCS Example 9. Last Accessed Time

ipcs -t option displays last operation time in each ipc facility. This option can also be combined with -m, -s or -q to print for specific type of ipc facility. For message queue, -t option displays last sent and receive time, for shared memory it displays last attached (portion of memory) and detached timestamp and for semaphore it displays last operation and changed time details.

# ipcs -s -t

------ Semaphore Operation/Change Times --------
semid    owner      last-op                    last-changed
0        root        Thu Aug  5 12:46:52 2010   Tue Jul 13 10:39:41 2010
32769    root        Thu Aug  5 11:59:10 2010   Tue Jul 13 10:39:41 2010
1094844418 oracle      Thu Aug  5 13:52:59 2010   Thu Aug  5 13:52:59 2010

IPCS Example 10. Status of current usage

ipcs with -u command displays current usage for all the IPC facility. This option can be combined with a specific option to display the status for a particular IPC facility.

# ipcs -u

------ Shared Memory Status --------
segments allocated 30
pages allocated 102
pages resident  77
pages swapped   0
Swap performance: 0 attempts     0 successes

------ Semaphore Status --------
used arrays = 49
allocated semaphores = 252

------ Messages: Status --------
allocated queues = 1
used headers = 0
used space = 0 bytes
Add your comment

If you enjoyed this article, you might also like..

  1. 50 Linux Sysadmin Tutorials
  2. 50 Most Frequently Used Linux Commands (With Examples)
  3. Top 25 Best Linux Performance Monitoring and Debugging Tools
  4. Mommy, I found it! – 15 Practical Linux Find Command Examples
  5. Linux 101 Hacks 2nd Edition eBook Linux 101 Hacks Book

Bash 101 Hacks Book Sed and Awk 101 Hacks Book Nagios Core 3 Book Vim 101 Hacks Book

Comments on this entry are closed.

  • b-rad August 12, 2010, 8:34 am

    I have never seen or used the ipcs command before, so it’s very interesting.
    But, what can I do with this info? What’s a practical usage scenario for using these commands?

  • vinc August 12, 2010, 9:19 am

    Interesting article. But I’m missing some practical example of usage.
    For example I need to prevent that some script will run twice and one moment. Can I use semaphore for it? And how?

  • djatlantic August 12, 2010, 12:36 pm

    The practical usage is to tune the parameters of IPC so that your database (Oracle, or ..), HPC applications can access these resources and use them in such ways to enable them to work better and access bigger chunks of share memory. And there might be some other more practical and typical usages of IPC too.

  • rasta_freak August 14, 2010, 1:27 am

    Author forgot to mention than IPC is used (directly) in languages like C/C++, in others it is used indirectly most of the time (very few of them gives direct control of IPC – shell does not). There are system/libc calls to create message queues/shared memory segments/semaphores, to push messages, poll, and read them, write/read shared memory, and set/reset semaphores. It is fastest possible communication between processes – if one process puts message on queue, other process can read it as soon as scheduler gives it run-time (cpu-time). ipcs command is used for debugging primarily, in development of programs – to check that communication is working as expected, to check that no stale messages/memory are being left out, and to clean up the mess if programs crash/have bugs. If you don’t write your programs in C/C++, and don’t use IPC in them – ipcs command is useless to you. You could write front-ends for creating/pushing/polling/reading to be used in shell, but it would be slower than using file communication in tmpfs (because of overhead of invoking other process, checking status, etc…).

  • Ramesh Natarajan August 17, 2010, 11:28 pm

    @b-rad, @vinc,

    Thanks a lot for your suggestion. We’ll post a practical usage of IPCS as a quick FAQ very soon.

    @djatlantic, @rasta_freak,

    Thanks for explaining in detail about how IPCS can be used.

  • Mohd Asif September 18, 2012, 12:18 am

    Hi !

    Thanks for all articles really these are very helpfull for al programmers including me i always use this site to get any type of help

  • Bipn.K October 25, 2012, 8:20 pm

    IPCS are 5 types
    PIPE
    FIFO( named PIPE)
    Semaphore [Process Sync]
    Message Queue
    Socket Descriptor
    These are used for the Inter process Communication btw two Process

  • Raveendra Bhat July 11, 2013, 6:05 am

    Thanks alot. Helped me alot in solving one issue

  • Ashish December 18, 2013, 12:42 am

    There is one more ipc
    Shared memory which is largely used in file sharing

  • kanhaiya kumar February 7, 2015, 2:55 pm

    Thanks again .

  • Ishara Fernando October 4, 2015, 9:26 pm

    Dear Ramesh and Sasikala ,

    I have a requirement to set the shared Memory size such as follows , can you please explain on how to set it up ?

    Minimum Shared Memory of the System should be 1Gib and maximum shared memory should be limited to 1.5Gib . The page size of the system is 4KB (4096 bytes) . I know that the kernel parameters shmall , shmmin and shmmax are the ones which should be used , but I am not exactly sure on how to calculate this , appreciate if you can guide me on this

    Best Regards
    Ishara Fernando
    Senior Linux Systems Administrator

  • Anonymous May 10, 2017, 6:48 am

    Thanks for the article.

  • Prashant October 4, 2021, 12:54 pm

    In output of #ipcs -a showing nobody instead of username . Why it’s showing ?