Can I reduce sysdump?


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Can I reduce sysdump?
# 1  
Old 07-31-2007
Can I reduce sysdump?

Hi,

I have a server which is running out of space on the rootvg. When trying to find some spare space I discovered there are 2 sysdump logical volumes, each of 5GB, yet if I get an estimate of the dump size it's only 0.5 GB.

Code:
$ lsvg -l rootvg|grep sysdump
hd71                sysdump    20    20    1    open/syncd    N/A
hd72                sysdump    20    20    1    open/syncd    N/A

(PP Size = 256MB)

$ sysdumpdev -e
0453-041 Estimated dump size in bytes: 517577113

This is a huge waste of disk space so I want to know how to reduce the size of these sysdumps so I can recover the space.

Can anyone help?

Regards

Gareth
# 2  
Old 08-22-2007
Make sure of what your setup is at the moment
sysdumpdev -l ( listing your setup )

I think you may find Primary go to one and Secondary go to the other

You can tes the Secondary to use your paging space

and free up the space that way

Also you can set the

sysdupdev -P -s /dev/hd6
sysdupdev -P -p /dev/sysdumpnull

then Chenge the size of the dump
hd71 or hd72 then set it back



Look at your rootvg for any filessystems you can take some space from

use chfs -a size=xxxxx /mount_point
where xxxxx is the new reduced size to use ( depending on your OS-level)
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Help to reduce time of archiving

hi all, i have written the following script that does this work: 1. copy large logs files from one server to another. 2. then unzip this files and extraxt from these large https logs only those fields that are neccesary. 3. then archive the extracted logs to new files. BUT the problem is... (7 Replies)
Discussion started by: arrals_vl
7 Replies

2. AIX

Sysdump on local disk

Hello Team, Our p740 systems are booting up from SAN. We would like to configure the local disk(which is not part of rootvg) as a primary dump device. I have assigned the same too. But in the errpt throwing the below error. Please help me on this. ... (1 Reply)
Discussion started by: gowthamakanthan
1 Replies

3. UNIX for Dummies Questions & Answers

Reduce /var filesystem

hi guys I need to create a temporary Filesystem and the only way to do it is to reduce /var and create a new filesystem 3GB size df -h .... ... /dev/mapper/VolGroup00-var 9.7G 1.5G 7.8G 16% /var my question is according to google search I need to umount the... (5 Replies)
Discussion started by: karlochacon
5 Replies

4. Shell Programming and Scripting

How to reduce code.....

Hi All, Could some one help me to reduce the code... if then ./plist -m "$queuename" |grep $2|awk '{print $3}' >unlock.log elif then ./plist -m "$queuename" |grep $2|awk '{print $4}' >unlock.log else ./plist -m "$queuename" |grep $2|awk '{print $5}' >unlock.log . . . . ... (1 Reply)
Discussion started by: harshakusam
1 Replies

5. Shell Programming and Scripting

how to reduce a length in a file?

i want to reduce a length in the file called text in the file im having 10 byte length. want to reduce it to 9 byte length for all lines. (5 Replies)
Discussion started by: laknar
5 Replies

6. Shell Programming and Scripting

Reduce

printf "\nClosing stats:\n" >> data.txt echo >> data.txt sed 's/^ \t*//;/^#/d;/^$/d' $stats | while read line do close=$(grep -w "^$line" $datafile | sed -e 's/\(.*\),\(.*\),\(.*\)/\2/') if ; then printf "%5d. %-s was not found in file\n"... (3 Replies)
Discussion started by: jafa401
3 Replies

7. AIX

Sysdump and unmirroring

I'm researching on how to unmirror a set of mirrored drives as this should enable me to do a failsafe patch install. My current install has 2 disk with all LVs mirrored except the sysdump LV. This is the bit that confuses me as some seem to advise removing the sysdump from both drives (Patch... (2 Replies)
Discussion started by: morgan_g
2 Replies

8. Shell Programming and Scripting

reduce a string

hi i have a string "hostname=lpdma520_dev_ipc_us_aexp_com" now i need only "newHostname=lpdma520" how to do this one please help soon (2 Replies)
Discussion started by: satish@123
2 Replies

9. Shell Programming and Scripting

reduce the or conditions

Hi , how can i reduce the or conditions: if ]; then whatever fi (8 Replies)
Discussion started by: hitmansilentass
8 Replies

10. AIX

reduce available ram

hello, we have a aix 5.2 server with 8GB of ram. is it possible, without actually removing the hardware, to have the O/S think it has only 4GB of ram? We would like to see how the handles and responds if it only had 4Gb instead of the 8GB. Any ideas or suggestions? Thanks Looks like i found... (6 Replies)
Discussion started by: zuessh
6 Replies
Login or Register to Ask a Question