- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: No space left on device error
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
10-30-2002 02:15 PM
10-30-2002 02:15 PM
No space left on device error
Would greatly appreciate it if someone could help me here. Jobs are at stake.. :-(
Our release runs on an HP 3600 box. After a few hours of operation, we get an Oracle error 12500 that says no space left on device. When I try to bring up SAM it says the same. BUT, there is GOBS of disk space left - several gigs on both the disks we have.
A point of note is that we recently increased several kernel parameters whose values I show below to solve an OutOfMemory error we used to get earlier (these were recommended by HPJconfig). I am thinking that has got to something to do with this problem, although the experts can correct me. Any help will be greatly appreciated.
max_thread_proc 512
maxdsiz 2063835136
maxfiles 2048
maxfiles_lim 2048
ncallout 6000
nkthread 6000
nproc 2068
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-30-2002 02:13 PM
10-30-2002 02:13 PM
Re: No space left on device error
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-30-2002 02:16 PM
10-30-2002 02:16 PM
Re: No space left on device error
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-30-2002 02:28 PM
10-30-2002 02:28 PM
Re: No space left on device error
The "no space left on device" would equate to errno 28. This might suggest insufficient shared memory.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-30-2002 02:39 PM
10-30-2002 02:39 PM
Re: No space left on device error
/dev/vg00/lvol3 16625664 4313884 11927892 27% /
/dev/vg00/lvol1 99669 34931 54771 39% /stand
/dev/dsk/c3t5d0 17783240 833284 16685308 5% /disk2
Problem releasing Db Connections java.sql.SQLException: Io exception: Connection r
efused(DESCRIPTIO
N=(TMP=)(VSNNUM=135295744)(ERR=12500)(ERROR_STACK=(ERROR=(CODE=12500)(EMFI=4))(E
RROR=(CODE=12560)(EMFI=4))(ERROR=(CODE=530)(EMFI=4))(ERROR=(BUF='HPUX Error: 28:
No space left on device'))))
We had to reboot the machine because it was needed.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-30-2002 02:41 PM
10-30-2002 02:41 PM
Re: No space left on device error
You may be reaching the system-wide limits for shared memory identifiers, message queue identifiers, and semaphore identifiers respectively. You should look at shmmni, semmni, and msgmni.
A good way to track down this sort of problem is to do a man 2 for each system call and look for those which can fail with the indicated errno value. The above list is not complete but is a very good place to start.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-30-2002 02:42 PM
10-30-2002 02:42 PM
Re: No space left on device error
http://h21007.www2.hp.com/dspp/tech/tech_TechDocumentDetailPage_IDX/1,1701,1618,00.html
Sandip
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-30-2002 02:53 PM
10-30-2002 02:53 PM
Re: No space left on device error
shmmni 200
semmni 256
msgmni 50
Would nproc have anything to do with it? We noticed another machine that had 4096 as the value and we've not seen the problem there (We have 2048).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-30-2002 03:05 PM
10-30-2002 03:05 PM
Re: No space left on device error
There is no way to know what the "correct" values for these tunables are without knowing a lot more about your system. I can say that those are on the small side. For medium to large databases msgmni might be ~ 1060, shmmni ~ 1024, and semmni might be ~ 5000 but again it depends.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-30-2002 03:11 PM
10-30-2002 03:11 PM
Re: No space left on device error
'nproc' limits the number of system-wide processes. You would see errors like EAGAIN (no more proccesses; errno-11) or perhaps ENOMEM (not enough core; errno-12) during fork()'s if this limit were being hit.
ENOSPC [errno-28] (no space left on device) points to 'shmmni' on shmget() calls and this is the error you seem to be having.
ENOSPC also occurs when 'semmni' is too small (for trying to get semaphores).
ENOSPC errors are also returned for 'msgget()' system calls limited by too small a 'msgmni' kernel value.
I thing you have identified at least some of your boundries.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-31-2002 09:25 AM
10-31-2002 09:25 AM
Re: No space left on device error
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-31-2002 09:39 AM
10-31-2002 09:39 AM
Re: No space left on device error
maxswapchunks only effect how much swap space you can configure. The only thing increaseing the maxswapchunks parameter bought you was the ability to now configure up to 8GB of swap space.
If you didn't add anymore swap space, then that was not part of your problem.
More info on maxswapchunks: http://docs.hp.com/hpux/onlinedocs/939/KCParms/KCparam.MaxSwapChunks.html
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-31-2002 09:41 AM
10-31-2002 09:41 AM
Re: No space left on device error
Wit maxswapchunks at 1025 you can have up to 2GB of swap space configured.
The rest of my previous comment still applies, however.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-31-2002 09:56 AM
10-31-2002 09:56 AM
Re: No space left on device error
Interesting. Swap space was also added before. It was increased to 2GB from 1GB. I don't know if SAM automatically suggests increasing maxswapchunks or not. The swap was added by a verification guy and I am not sure if the option to increase maxswapchunks was offered and it was declined by him. I am hunting for another machine where I can try and replicate this..