- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: vgextend for SG cluster lock disk
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
02-06-2003 10:47 AM
02-06-2003 10:47 AM
vgextend for SG cluster lock disk
#vgextend /dev/vg01 /dev/dsk/c15t1d0
vgextend: Couldn't install the physical volume "/dev/dsk/c15t1d0".
No space left on device
I preceeded this command with pvcreate /dev/rdsk/c15t1d0.
Any ideas?
Stuart
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-06-2003 10:49 AM
02-06-2003 10:49 AM
Re: vgextend for SG cluster lock disk
Also, does a 'strings /etc/lvmtab |greop c15t1d0' show anything?
I always use 'pvcreate -f' (force) to make doubly sure. Have you tried that?
Share and Enjoy! Ian
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-06-2003 10:52 AM
02-06-2003 10:52 AM
Re: vgextend for SG cluster lock disk
SCSI describe of /dev/rdsk/c15t1d0:
vendor: DGC
product id: C4700WDR5
type: direct access
size: 4096 Kbytes
bytes per sector: 512
Then I took your advice:
#pvcreate -f /dev/rdsk/c15t1d0
Physical volume "/dev/rdsk/c15t1d0" has been successfully created.
#vgextend /dev/vg01 /dev/dsk/c15t1d0
Current path "/dev/dsk/c13t1d1" is an alternate link, skip.
Current path "/dev/dsk/c15t1d1" is an alternate link, skip.
vgextend: Couldn't install the physical volume "/dev/dsk/c15t1d0".
No space left on device
Stuart
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-06-2003 10:58 AM
02-06-2003 10:58 AM
Re: vgextend for SG cluster lock disk
If you are already reached the limit then you can not extend your vg01 any more.
You have to set this limit while creating VG. Try recreating new VG
-USA..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-06-2003 11:03 AM
02-06-2003 11:03 AM
Re: vgextend for SG cluster lock disk
Do a bdf and see if any of the file systems is at 100%. Particularly /. Look at your /var/adm/syslog/syslog.log for more messages with "no space".
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-06-2003 11:15 AM
02-06-2003 11:15 AM
Re: vgextend for SG cluster lock disk
Sir - Nothing is at 100% on any filesystem. However the database space on vg02 is all used up.
I'm leaving for the day, but would appreciate any other input.
Stuart
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-06-2003 11:24 AM
02-06-2003 11:24 AM
Re: vgextend for SG cluster lock disk
I'm wondering, if you are running out of space in the root directory for the 'lvmconf' file, especially since your LVM data is going to be very large.
Try the 'vgextend' *without* concommitant creation of the '/etc/lvmconf/vg01.conf' file:
# vgextend -A n /dev/vg01 /dev/dsk/c15t1d0
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-06-2003 02:12 PM
02-06-2003 02:12 PM
Re: vgextend for SG cluster lock disk
There may be a kernel parameter issue. Perhaps you are running out of the inodes? Check this with 'bdf -i'
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-07-2003 03:30 AM
02-07-2003 03:30 AM
Re: vgextend for SG cluster lock disk
Paresh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-07-2003 03:44 AM
02-07-2003 03:44 AM
Re: vgextend for SG cluster lock disk
are the current recommended LVM, SCSI, FS patches installed? Is there no full filesystem (maybe a full root filesystem can cause such a message)? Is the volume group active on the node you try to extend it? Is the minor number unique? Is there a alternative path to the disk you are using instead of the primary one? ...?
Please answer all this questions, hope that helps to fix the problem.
Regards ...
Armin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-07-2003 10:02 AM
02-07-2003 10:02 AM
Re: vgextend for SG cluster lock disk
Stuart