No swap space to grow stack


 
Thread Tools Search this Thread
Operating Systems Solaris No swap space to grow stack
# 1  
Old 08-02-2013
No swap space to grow stack

Dear Solaris Experts,

I had a Problem with swap consumption in our Production server.
I found error message in /var/adm/message:
Code:
Aug  1 10:55:40 production genunix: [ID 470503 kern.warning] WARNING: Sorry, no swap space to grow stack for pid 29716 (oracle)

What should I do for temporary solution? I need no downtime for the temporary solution..

Really appreciate for any idea..
# 2  
Old 08-02-2013
You can either free some virtual memory (eg: big files in tmpfs based file system) or add more swap space (swap -a xxxx). The simplest is to use a swap file.
# 3  
Old 08-02-2013
Top 10 files|directories in /tmp:
Code:
du -sk /tmp/* /tmp/..?* | sort -nk1 | tail

Top 10 processes:
Code:
ps -eo pid,rss,vsz,comm | { read line; echo "$line"; sort -nk2 | tail; }

# 4  
Old 08-02-2013
Quote:
Originally Posted by MadeInGermany
Top 10 processes:
Code:
ps -eo pid,rss,vsz,comm | { read line; echo "$line"; sort -nk2 | tail; }

Should be "sort -nk3" in that case as the system was out of virtual memory, not out of RAM.
This User Gave Thanks to jlliagre For This Post:
# 5  
Old 08-20-2013
Hi,

server is out of swap memory.

You need to increase the swap online if you have space in your volume group

Add the disk and create a swap file
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Red Hat

Swap space not getting used

CENT OS 5.8 server running with a huge java application which uses up all my ram (4GB) and requires excess of atleast 2GB.But the swap is not getting used up((8GB) of swap space left unused) leading a wierd error and stopping application to stop working. Any one here dealt with the same kind of... (2 Replies)
Discussion started by: shiek.kaleem
2 Replies

2. Linux

How to reclaim the space which i used to increse the swap space on Xen,

Hi, i have done a blunder here, i increased the swap space on Xen5.6 server machine using below steps :- 1056 dd if=/dev/zero of=/root/myswapfile bs=1M count=1024 1057 ls -l /root/myswapfile 1058 chmod 600 /root/myswapfile 1059 mkswap /root/myswapfile 1060 swapon /root/myswapfile ... (1 Reply)
Discussion started by: apm
1 Replies

3. Solaris

Swap Space

Could someone please explain how you know how much swap space you have on your system. See below: # swap -s total: 8225048k bytes allocated + 4863488k reserved = 13088536k used, 4008032k available # swap -l swapfile dev swaplo blocks free /dev/dsk/c3t0d0s1 32,25 16... (2 Replies)
Discussion started by: jamba1
2 Replies

4. Solaris

resize / and grow swap

Hi, this is solaris 10 on sparc sf280r, 2 disks mirrored using SVM, swap is 4GB (slice 1) and rest all is given for / (slice0) in 36G disk. I have already mirrored disks using SVM, for clear picture, I'm pasting some part of config below, # Slice 0 metainit -f d110 1 1 c1t0d0s0... (2 Replies)
Discussion started by: upengan78
2 Replies

5. Linux

swap space

Hi, I want to know how can i free the swap space if it is completely full, 0 mb remaining, (1 Reply)
Discussion started by: manoj.solaris
1 Replies

6. UNIX for Dummies Questions & Answers

Swap space used???

Plz I need to know how much swap mem free and used i have. I'm using Compaq Tru64 UNIX V5.1A (rev 1885) Thanx (1 Reply)
Discussion started by: Lestat
1 Replies

7. AIX

swap space / paging space

how do you get the paging space reduced without rebooting the machine ? the os is aix (2 Replies)
Discussion started by: aaronh
2 Replies

8. UNIX for Dummies Questions & Answers

pageing space vs swap space

Hello, I would like to know if there is any difference between the pageing space and the swap space. Thank you in advance. (1 Reply)
Discussion started by: VeroL
1 Replies

9. UNIX for Dummies Questions & Answers

SWAP SPACE

All, I am using SOLARIS 7. I have formated my hard drive to consist of only 150MB of swap space. This isn't enough considering I am running Oracle. How do I create additional swap space? Please list sources or commands. PS mkswap doesn't work on my machine. ( I have swap and... (5 Replies)
Discussion started by: SmartJuniorUnix
5 Replies
Login or Register to Ask a Question