Path: utzoo!utgpu!utstat!jarvis.csri.toronto.edu!mailrus!wuarchive!gem.mps.ohio-state.edu!usc!merlin.usc.edu!girtab.usc.edu!mitzel From: mitzel@girtab.usc.edu (Danny Mitzel) Newsgroups: comp.unix.questions Subject: Re: IPC Message-ID: <6391@merlin.usc.edu> Date: 10 Nov 89 05:54:38 GMT References: <21406@adm.BRL.MIL> Sender: news@merlin.usc.edu Reply-To: mitzel@girtab.usc.edu (Danny Mitzel) Organization: University of Southern California, Los Angeles, CA Lines: 21 In article <21406@adm.BRL.MIL> SIMSN%NUSDISCS.BITNET@cunyvm.cuny.edu writes: >> >> There's a group of users on our system (AT&T 3B4000/15) thats >> running some communication process and they came across this: >> >> msgget err: No space left on device >> >> >> Can anyone help me out on this? >> >> Thanks. i assume you are using system V IPC (shared memory, message queues, semaphores). the error you received is caused by an attempt to allocate a new message queue (msgget(key, msgflg & IPC_CREAT)) which would cause the system imposed limit on number of message queues to be exceeded. on the system i am familiar with (sun os 4.x with system V extensions) the limit defaults to 50. however in this system it is a tuneable parameter in the kernel config file, you can try raising the limit by setting MSGMNI to a higher value.