- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Additional Space required
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
05-24-2006 02:13 AM
05-24-2006 02:13 AM
Additional Space required
We have a 2 node cluster and need to extend our file system.We have LUNs assigned from an XP1024.
Please guide, what step we have to follow to do the activity. Attached is the excel sheet to add additional Space.
Thanks in advance.
Regards,
AFA!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-24-2006 02:38 AM
05-24-2006 02:38 AM
Re: Additional Space required
If you are adding luns or adding lvs then do this activity on one node then update the information on all other nodes using vgimport and vgexport commands.
Pls find below the example of the same:
After u created all the Lvs and extended them successfully, activate vg on that node then execute these commands:
#vgexport -p -v -s -m /tmp/
ftp this map file to other nodes and execute the following command:
# vgimport -p -v -s -m /tmp/
Pls feel free for any queries.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-24-2006 02:47 AM
05-24-2006 02:47 AM
Re: Additional Space required
Is there any dependancy that you should have only limited number of volumes - which happen to be sooo huge in size - as you have mentioned 100 GB and above as well in the additional space [ Hope its not a typo for MB ]
I am totally not able to understand your design. You have seperate volume groups for each volume it seems . anyway
Now about increasing filesystem sizes -
This will also depend on whether you are having any remote replication - Continuous Access software replicating the volumes at primary site to DR site ?
If not then its much easier. Simply add disks to the respective VGs
pvcreate /dev/rdsk/cxtydz [ for all the disks - LUNs you need for allocating the additional space ]
vgextend /dev/vgunn /dev/dsk/cxtydz ...
for each VG depending on how many disks need to be added as per space required to be extended.
then
If you are having Online JFS you can extend the filesystems online
lvextend -L lv_size_inMB /dev/vgunn
fsadm -F fs_type -b size_in_bytes /dev/vgunn/lvunn
If you dont have Online JFS - then you need to unmount the filesystems - so you may need to stop the package first.
then
lvextend , unmount , extendfs , mount , start package
Regards,
Ninad
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-24-2006 02:48 AM
05-24-2006 02:48 AM
Re: Additional Space required
the step are the follow:
In the server that have active the VG, for each VG (Es. vgXX):
-pvcreate /dev/rdsk/cxtxdx (put new disk under control of LVM)
-vgextend /dev/vgXX /dev/dsk/cxtxdx (add new disk to vg)
-lvextend -L
(extend the lvol)
-fsadm -Fvxfs -b
(extend filesystem)
-vgexport -v -p -s -m vgXX.map /dev/vgXX (export the vg with preview option an create the map file)
-rcp -p vgXX.map other_node:$PWD (copy the map file on the other node in the same dir)
On the other node:
- ll /dev/vgXX/group (save the 0xAA0000 minor number)
-vgexport vgXX
-mkdir /dev/vgXX
-mknod /dev/vgXX/group c 64 0xAA0000
-vgimport -v -s -m vgXX.map /dev/vgXX
Enrico
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-24-2006 02:52 AM
05-24-2006 02:52 AM
Re: Additional Space required
vgexport -pv -m mapfile -f outfile /dev/vgunn
Copy the files to the other node to replace the files used as mapfile and infile to vgimport on the 2nd node.
If you are using VGs in shared mode then probably you need to halt the package, extend the filesystem on primary node, copy the mapfile to 2nd node and import VGs.
Regards,
Ninad