- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re : adding additional swap and dump space on root...
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-09-2003 02:22 AM
10-09-2003 02:22 AM
Can anyone advice how can I increase the swap and dump space in a mirror root disk.Configuration is as follow below
rp7400 Unix server
Root disk mirror
6GB memory
swap space 8GB in vg00 lvol2
dump 4GB
Intention : swap space to set to 12GB
: dump space to set to 6GB
can someone help and provide me with the step on how I can setup the requirement???
Regards
Vincent
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2003 02:34 AM
10-09-2003 02:34 AM
SolutionOtherwise, just add a new swap device on another volume.
HTH.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2003 02:39 AM
10-09-2003 02:39 AM
Re: Re : adding additional swap and dump space on root disk
To resize the swap and dump partitions, you have to reinstall / ignite the system. However you can add more swap on the same vg00 if you have space or you can add swap on another vg if there is room over there.
Use this link as an example,
http://www2.itrc.hp.com/service/cki/docDisplay.do?docLocale=en_US&docId=200000062946328
http://www2.itrc.hp.com/service/cki/docDisplay.do?docLocale=en_US&docId=200000063232527
Hope this helps.
Regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2003 02:40 AM
10-09-2003 02:40 AM
Re: Re : adding additional swap and dump space on root disk
I don't know why do u need 12GB of swap.
if u required then, break the mirror, create the additional 4GB swap on root(not mirrored) disk ( make the priority same as initial 8GB swap) enable the swap and create the mirror again(for full root disk)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2003 02:44 AM
10-09-2003 02:44 AM
Re: Re : adding additional swap and dump space on root disk
Anyway,you can define swap somewhere else , not under vg00/lvol2 (ie /dev/vg01/lvol02) -
swapon -f /dev/vg01/lvol02. man swapon for more.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2003 02:45 AM
10-09-2003 02:45 AM
Re: Re : adding additional swap and dump space on root disk
adding swap should do,
usually swap lvol2 is used as dump, so I guess you mean you have a /var/adm/crash filesystem of 4GB when you refer to "dump" ?
those 4GB are more than enough (dump is selective by default)
use lvlnboot -v to check your root VG
it should say that dump is on lvol2 as well (which is 8 GB I understand, so large enough).
use vgdisplay vg00 (or whatever your root VG is) to check you have enough free extents (# extends * extend size / mirror copies )
use lvcreate -L 4096 -r n -C y -m 1 /dev/vg00
to create a contigous mirror lvol of 4GB (say lvol11)
add a line lsimilar to:
/dev/vg00/lvol11 swap swap pri=3 0 0
to /etc/fstab to make an entry for addt'l swap
enter swapon -a
to activate addt'l swap
use swapinfo -mt to verify
Regards
Bernhard
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2003 05:48 AM
10-09-2003 05:48 AM
Re: Re : adding additional swap and dump space on root disk
Bill Hassell, sysadmin