- Community Home
- >
- Servers and Operating Systems
- >
- Legacy
- >
- HPE 9000 and HPE e3000 Servers
- >
- Re: Adding a disk to a volume group --- is it an ...
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
07-16-2001 01:21 AM
07-16-2001 01:21 AM
I have inherited an HP 9000 800/G30 running
HP UX 10.2. I have a 2gb disk that I want to add to a volume group in the system.
How "intelligent" is SAM when adding disks ?
Will it back off if it detects a problem and restore the original configuration ? or will it
continue to the end and break the volume ? I can't afford the down time to re-build from backups.
Thanks
Andy.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-16-2001 01:40 AM
07-16-2001 01:40 AM
Re: Adding a disk to a volume group --- is it an idiot proof process ?
if SAM detects a problem (or the command line option also) it will halt the changes, it will not continue and make any changes so you shouldnt have any worries
Paul Gold
CAST Systems
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-16-2001 07:00 AM
07-16-2001 07:00 AM
Re: Adding a disk to a volume group --- is it an idiot proof process ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-16-2001 05:20 PM
07-16-2001 05:20 PM
SolutionThis is a fairly easy process that can be
done at the command line. Nothing is actually
committed if there is a problem encountered.
This can be done is SAM but can just as easily
be done at the command line.
The disk can be recognised by running an ioscan
on your system.
# ioscan -funC disk
If you cannot recognise the disk you can run a
# diskinfo /dev/rdsk/cXtXdX on any disk. This
will tell you the type and size. Once you know
which disk it is run the following commands to
add to your existing volume group.
# pvcreate /dev/rdsk/cXtXdX
If the disk has been used before you will encounter an error message. If so add the -f
option to pvcreate to force.
# pvcreate -f /dev/rdsk/cXtXdX
# vgextend /dev/yourvg /dev/dsk/cXtXdX
Then you can add more logical volumes or
extend existing ones.
There are many posts on this.
HTH
Michael
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-16-2001 05:26 PM
07-16-2001 05:26 PM
Re: Adding a disk to a volume group --- is it an idiot proof process ?
You can do a simple surface check with dd, something like this:
dd if=/dev/rdsk/XXXX of=/dev/null bs=64k
Replace XXXX with the device file name of the new disk. The above technique is also a way to light up the disk when you are trying to identify a physical disk in the midst of several others. If a read error shows up, dd will stop with an error message.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-16-2001 10:40 PM
07-16-2001 10:40 PM
Re: Adding a disk to a volume group --- is it an idiot proof process ?
Hi
I suggest U to use command line for this. Follow these steps
Connect ur new disk and boot the system.
Once U login
#ioscan -fnC disk
Now U can see all the disk's device files which are connected to system.
Find out ur newly connected disk's device file by using its device ID. Here U should be very careful, If U select wrong device file U will end up in problem. Assume U have selected the device file correctly
#pvcreate -f /dev/rdsk/cxtxdx
#vgextend /dev/vgxx /dev/dsk/cxtxdx
For vrifying ur addition use this
#strings /etc/lvmtab
Now ur job is over.
Best of luck
Shahul
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-17-2001 09:33 AM
07-17-2001 09:33 AM
Re: Adding a disk to a volume group --- is it an idiot proof process ?
If it can't read and write it, it will say that it has 0 bytes of space left.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-18-2001 05:03 AM
07-18-2001 05:03 AM
Re: Adding a disk to a volume group --- is it an idiot proof process ?
Andy,
If you use sam or manual method for adding disk to volume group there will be no down time. If you want extend production filesystem then you need to have you backup ready, unless you Online JFS to use fsadm to extend the file system.
Thanks!