- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: trouble shooting a possible kernel param probl...
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-22-2003 05:20 AM
09-22-2003 05:20 AM
" semop() in SEM_op(SEM_GRAB) [errno = 28 : No space left on device]
12:57:26 [unknown-?]: SEM_op() Error. UNLOCK - not ours to unlock [8985] !
sm: Waiting for running system to stabilize...done.
12:57:27 [unknown-?]: StartWrite(): Error starting write [errno = 28 : No space left on device]
12:57:27 [unknown-?]: FATAL ERROR in Dictionary(): StartWrite(): Error starting write"
Does this ring ANY bells out there?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-22-2003 05:32 AM
09-22-2003 05:32 AM
Re: trouble shooting a possible kernel param problem
Hope this helps,
-denver
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-22-2003 05:39 AM
09-22-2003 05:39 AM
Re: trouble shooting a possible kernel param problem
We're trying to figure out if the message is complaining about a UX issue or perhaps it is coming from SunOne - our webserver software...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-22-2003 05:47 AM
09-22-2003 05:47 AM
SolutionNow for a quick lesson on how to do this:
1) vi /usr/include/sys/errno.h and find the entry for 28. You will note that 28 corresponds to the 'ENOSPC' define. That define is important because all the system call errors use the define rather than the numerical value.
2) Now man 2 semop (the system call in question) and find which conditions can cause errno to be set to ENOSPC.
The answer is the limit of the number of processes requesting a SEM_UNDO would be exceeded thus you need to increase the kernel parameter semmnu.
Now, wasn't that easy? This is essentially the way you do it for any failing system call.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-22-2003 06:25 AM
09-22-2003 06:25 AM
Re: trouble shooting a possible kernel param problem
What are the current settings of shmmax, shmseg and related parameters? Consider an increase if called for.
I'm wondering what kind of HP-UX server we're talking about here. Not the model number,the use. Are we running an oracle database(the pac man of semaphore using aps).
I think A Clay's diagnostic method is exceelent, but frankly the proposed solution is over my head.
Adding this post to favorites.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-23-2003 02:30 AM
09-23-2003 02:30 AM
Re: trouble shooting a possible kernel param problem
Clay's response fixed me, but I'm always looking for insight on the tuning issues with this sort of server.....
Thanks!