- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Have problems whit creation VG tjderby / #vgcreate...
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
06-26-2007 06:00 AM
06-26-2007 06:00 AM
Have problems whit creation VG tjderby / #vgcreate /dev/test1vg /dev/dsk/c5t8d0
tjderby / #pvcreate -f /dev/rdsk/c5t8d0
Physical volume "/dev/rdsk/c5t8d0" has been successfully created.
tjderby / #mkdir /dev/test1vg
tjderby / #mknod /dev/test1vg/group c 64 0x010000
tjderby / #vgcreate /dev/test1vg /dev/dsk/c5t8d0
vgcreate: Physical Volume "/dev/dsk/c5t8d0" contains no LVM information
tjderby / #vgcreate -f -s 32 /dev/test1vg /dev/dsk/c5t8d0
vgcreate: Physical Volume "/dev/dsk/c5t8d0" contains no LVM information
Tanks-
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-26-2007 06:15 AM
06-26-2007 06:15 AM
Re: Have problems whit creation VG tjderby / #vgcreate /dev/test1vg /dev/dsk/c5t8d0
Cause: pvcreate uses raw device file, vgcreate/vgextend block device file so the IO goes via buffer cache. A stale buffer was the cause of stale data being returned to read request of the primary LVM record from vgcreate/vgextend
Get rid of the stale data in the buffer cache by
#dd if=
After this try pvcreate and vgcreate again this should resolve the issue.
Best Regards,
Prashanth
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-26-2007 06:17 AM
06-26-2007 06:17 AM
Re: Have problems whit creation VG tjderby / #vgcreate /dev/test1vg /dev/dsk/c5t8d0
#dd if=/stand/vmunix /dev/dsk/c1t2d0 bs=1024 count=1000
Best Regards,
Prashanth
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-26-2007 06:17 AM
06-26-2007 06:17 AM
Re: Have problems whit creation VG tjderby / #vgcreate /dev/test1vg /dev/dsk/c5t8d0
#dd if=/stand/vmunix /dev/dsk/c5t8d0 bs=1024 count=1000
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-26-2007 06:36 AM
06-26-2007 06:36 AM
Re: Have problems whit creation VG tjderby / #vgcreate /dev/test1vg /dev/dsk/c5t8d0
I execute this
tjderby / #dd if=/stand/vmunix /dev/dsk/c5t8d0 bs=1024 count=1000
dd: bad arg /dev/dsk/c5t8d0
and execute this
dd if=/stand/vmunix of=/dev/dsk/c5t8d0 bs=1024k count=1000
but is just running
As much time as this process delays approximately, carries 5 minutes at a run and not yet finishes .
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-26-2007 06:40 AM
06-26-2007 06:40 AM
Re: Have problems whit creation VG tjderby / #vgcreate /dev/test1vg /dev/dsk/c5t8d0
Abort using control+c run this dd command on the raw device file like mentioned below..
#dd if=/stand/vmunix of=/dev/rdsk/c5t8d0 bs=1024 count=10
Best Regards,
Prashanth
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-26-2007 06:45 AM
06-26-2007 06:45 AM
Re: Have problems whit creation VG tjderby / #vgcreate /dev/test1vg /dev/dsk/c5t8d0
tjderby / #ps -fea | grep dd
root 24 0 0 May 30 ? 0:00 lvmschedd
root 6151 1 0 Jun 4 ? 0:00 dd if=/dev/dsk/c5t0d0 of=/dev/null
root 29900 29080 1 11:44:54 pts/th 0:00 grep dd
root 27297 1 0 11:33:28 ? 0:00 dd if=/stand/vmunix of=/dev/dsk/c5t8d0 bs=1024k count=1000
root 17616 1 0 10:20:21 ? 0:00 dd if=/dev/dsk/c5t8d0 of=/dev/null bs=1024k count=10
root 28897 1 0 11:39:17 ? 0:00 dd if=/stand/vmunix of=/dev/dsk/c5t8d0 bs=1024 count=1000
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-26-2007 06:52 AM
06-26-2007 06:52 AM
Re: Have problems whit creation VG tjderby / #vgcreate /dev/test1vg /dev/dsk/c5t8d0
Wait for sometime and try killing the dd process one by one
#kill -9
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-26-2007 07:12 AM
06-26-2007 07:12 AM
Re: Have problems whit creation VG tjderby / #vgcreate /dev/test1vg /dev/dsk/c5t8d0
tjderby / #ps -fea | grep dd
root 24 0 0 May 30 ? 0:00 lvmschedd
root 6151 1 0 Jun 4 ? 0:00 dd if=/dev/dsk/c5t0d0 of=/dev/null
root 4034 3186 0 12:09:19 pts/ti 0:00 grep dd
root 27297 1 0 11:33:28 ? 0:00 dd if=/stand/vmunix of=/dev/dsk/c5t8d0 bs=1024k count=1000
root 17616 1 0 10:20:21 ? 0:00 dd if=/dev/dsk/c5t8d0 of=/dev/null bs=1024k count=10
root 28897 1 0 11:39:17 ? 0:00 dd if=/stand/vmunix of=/dev/dsk/c5t8d0 bs=1024 count=1000
tjderby / #kill -9 6151 27297 17616 28897
tjderby / #ps -fea | grep dd
root 24 0 0 May 30 ? 0:00 lvmschedd
root 6151 1 0 Jun 4 ? 0:00 dd if=/dev/dsk/c5t0d0 of=/dev/null
root 4042 3186 1 12:09:46 pts/ti 0:00 grep dd
root 27297 1 0 11:33:28 ? 0:00 dd if=/stand/vmunix of=/dev/dsk/c5t8d0 bs=1024k count=1000
root 17616 1 0 10:20:21 ? 0:00 dd if=/dev/dsk/c5t8d0 of=/dev/null bs=1024k count=10
root 28897 1 0 11:39:17 ? 0:00 dd if=/stand/vmunix of=/dev/dsk/c5t8d0 bs=1024 count=1000
tjderby / #
But the process are running .
I have the same problem whit creation a new VG other
Some other thing to solve this problem?
With who else I can increase this problem, here in Mexico right now we yielded it, but the people of support could have given him solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-26-2007 07:20 AM
06-26-2007 07:20 AM
Re: Have problems whit creation VG tjderby / #vgcreate /dev/test1vg /dev/dsk/c5t8d0
Cause for the issue is as mentioned earlier A stale buffer was the cause of stale data being returned to read request of the primary LVM record from vgcreate/vgextend ,
solution is to clear the headers and recreate the pv information.
Now since the dd command is hanging I would recommend you to wait for some time and check as it may take time. If you have a software support with HP i would suggest you to speak to them once.
If the dd command doesnot comeout then i would suggest you to check the hardware (disk) it can be flawed.
Best Regards,
Prashanth
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-26-2007 07:32 AM
06-26-2007 07:32 AM
Re: Have problems whit creation VG tjderby / #vgcreate /dev/test1vg /dev/dsk/c5t8d0
Saludos Cordiales