Sponsored Content
Full Discussion: ipcs command
Top Forums UNIX for Dummies Questions & Answers ipcs command Post 7461 by rwb1959 on Wednesday 26th of September 2001 03:08:42 PM
Old 09-26-2001
ipcs simply reports information on IPC resources.

There is no "command line" way to change the values for the
IPC resources (and there shouldn't be). Depending on the
system you are running, you may be able just to change the
system tunable parameter values and reboot. On other systems
however, you may have to edit the system tunable parameters
and rebuild your kernel. This procedure is extremly system/OS
dependent and not recommended if you are new to UNIX.
You can render your system unbootable if you make a mistake
(or at the very least, hose up system performance). If nobody
but you relies or accesses the system then feel free to
expierement but be ready to do alot of reading.
 

10 More Discussions You Might Find Interesting

1. Programming

System V and POSIX IPCs

I am using SUN 0S 5.7. My application has a dozen programs running in this machine, each instance of a program having 2 POSIX message queues for itself. Totally around 90 POSIX message queues. Another small application uses a SYSTEM V shared memory and a message queue. We face a problem... (1 Reply)
Discussion started by: Deepa
1 Replies

2. Programming

ipcs shows no result in cygwin

Hi, With reference to the thread below: https://www.unix.com/showthread.php?s=&threadid=13247 I have the same program on Cygwin ( unfortuantely win ;( ) My program runs ( offcourse with undesired output) The semget does not give any error, tho I have trapped in case if there is one.... (0 Replies)
Discussion started by: linuxpenguin
0 Replies

3. AIX

ipcs command with out output

hello i'm running on aix 5300-08-02-0822 hacmp 4 when i run ipcs command there is nio output. some one got this problem? best regards ariec (1 Reply)
Discussion started by: ariec
1 Replies

4. Solaris

ipcs Help

hi, I need help with ipcs command on Solaris. What does it do and what are options b,m,o,q does. Here is the sample output of ipcs -oq and ipcs -bm IPC status from <running system> as of Sun Sep 7 23:07:59 GMT 2008 T ID KEY MODE OWNER GROUP CBYTES QNUM... (4 Replies)
Discussion started by: krabu
4 Replies

5. AIX

ipcs -m displaying empty

I am trying to run myApplication which allocates Some amount of shared memory at startup. It failed because not available shared memory are available. But when i ran, ipcs -m it is displaying empty(i.e no shared memory allocated in system.) Why "ipcs -m" is displaying empty ? ... (5 Replies)
Discussion started by: ashokd001
5 Replies

6. UNIX for Advanced & Expert Users

Question on output of ipcs command

Hi, I read the ipcs man page and am still very confused. Basically, I just want to know whether the output from the ipcs command below means these are the current "TOTAL" memory usage in bytes on the server? Is this correct? Thanks in advance. ipcs command output below: # ipcs... (2 Replies)
Discussion started by: newbie_01
2 Replies

7. Solaris

IPCS COUNT clear

How to clear IPCS queue count in server? (2 Replies)
Discussion started by: Arasu123
2 Replies

8. Solaris

8 character limit for ipcs command , any way to increase # of chars ?

Hello All, We have a working script which identifies and kills ipcs resources which havent been correctly killed during normal shutdowns. It is working fine and dandy however there are some issues now. Environment: SunOS 5.10 Generic_148888-03 sun4u sparc SUNW,SPARC-Enterprise ... (4 Replies)
Discussion started by: icalderus
4 Replies

9. UNIX for Advanced & Expert Users

Ipcs do not show MODE

The ipcs -q command output includes a MODE column which tells user if the process is waiting on read or write on the queue. I used this in scripts on many systems (Solaris, AIX, SCO) a snippet from man MODE (all) The facility access modes and flags: The mode consists of 11... (2 Replies)
Discussion started by: migurus
2 Replies

10. UNIX for Advanced & Expert Users

How to relate ipcs id or cpid to process?

Hi, we have multiple database instances running on solaris server like db1, db2 and db3. Below shown ipcs -pmb shared memory segment output. Using cpid value I want to relate to the database instances db1, db2 and db3. Please let me know how to do this? $ ipcs -pmb IPC status from <running... (9 Replies)
Discussion started by: baladelaware73
9 Replies
settune(2)							System Calls Manual							settune(2)

NAME
settune() - set the value of a kernel tunable parameter SYNOPSIS
DESCRIPTION
This function sets the value of the kernel tunable parameter named tunable to the supplied value. This new value takes effect immediately, except in the cases noted below. Some parameters cannot be changed without rebooting the kernel. These parameters cannot be changed using Some parameters represent limits on resources that can be consumed by individual processes. In general, changes to these parameters do not affect processes that are running at the time the change is made; they affect only new programs started (with or an equivalent) after that time. Some specific parameters may be exceptions to this general rule; see the man pages for those parameters for details. Valid values for the flags parameter and their connotations are: The value of the tunable parameter is set by the kernel. The value parameter to is ignored. Sets the tunable parameter to the value and turns off any automatic tuning done by the kernel. The call can give information about whether or not changes to a parameter are allowed or will require a reboot. Some individual parameters may have specific notes regarding their behavior when changed; consult the parameter man pages for details on each specific parameter. Security Restrictions The actions associated with this system call require the privilege. Processes owned by the superuser have this privilege. Processes owned by other users may have this privilege, depending on system configuration. See privileges(5) for more information about privileged access on systems that support fine-grained privileges. RETURN VALUE
This function returns one of the following values: The value of the specified parameter has been changed. The function did not complete successfully. The value of the specified parameter has not been changed. ERRORS
If this function returns to indicate an error, the global variable will be set to one of the following values to indicate the error that occurred: The specified tunable parameter does not exist. tunable specifies an address that is inaccessible. The caller does not have the privilege. The specified value is not within the acceptable range for the specified parameter. The value of the parameter could not be changed immediately. The specified parameter cannot be changed without rebooting the kernel. The Kernel Registry Service was unavailable or encountered an error. Insufficient memory to accommodate the new parameter value. WARNINGS
It is possible to seriously degrade system performance, or even render a system unbootable, with incorrect tunable settings. Use care when setting tunable values. Always have a known working kernel configuration saved as a backup; if the system fails to boot after a tunable change, boot from that backup kernel configuration. Keep good records of all tunable changes so that they can be reversed if they degrade system performance. Tunable changes made with are automatically logged to If the tunable being changed through is used in expressions that set the values of other tunables, those expressions will not be re-evalu- ated and those tunable values will not be updated. Note that this behavior may change in future releases of HP-UX. If expression evalua- tion is desired, use to set tunable values. Changes to parameter values made with may not remain effective across reboots. Note that this behavior may change in future releases of HP-UX. If persistence across reboots is desired, use to set tunable values. AUTHOR
was developed by Hewlett-Packard Company. SEE ALSO
kctune(1M), mk_kernel(1M), gettune(2), tuneinfo2(2), privileges(5), and the individual tunable parameter man pages in section 5. settune(2)
All times are GMT -4. The time now is 10:30 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy