Increase the Size of a Dump Device
Increase the Size of a Dump Device
If you are receiving the following error in your AIX errpt, you need to increase the size of your dump device:
example:root:/# errpt |
First, identify the largest dump device using the /usr/lib/ras/dumpcheck -p command, as in the following example:
example:root:/# /usr/lib/ras/dumpcheck -p |
To view information about the current dump devices, run:
example:root:/# sysdumpdev -l |
In this example, the "dump device" that needs to be increased is "lg_dumplv". If a file system needs to be increased, the output will give a "file system name".
If a logical volume needs to be increased, review the current size of this logical volume using the lslv command, similar to the following example:
example:root:/# lslv lg_dumplv |
Note the number of LPs, and increase the logical volume by a reasonable extent. In this example, I can double the size of the logical volume by adding an additional 8 LPs, as shown in the example command below:
example:root:/# extendlv lg_dumplv 8 |
If a file system needs to be increased, review the current and estimated sizes of the file system provided by the dumpcheck utility. Then, expand the filesystem using a command similar to the following example:
chfs -a size=8G /var/adm/ras |