- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: problem with pvcreate
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
11-20-2001 07:34 AM
11-20-2001 07:34 AM
The first step that I do is:
pvcreate -B /dev/rdsk/c1t0d0
C1t0d0 is the new disk which should be taken as mirror for c1t2d0.
The error message by pvcreate is as follow:
The physical volume /dev/dsk/c1t0d0 is belong to an exported volume group.
notice: This disk was involved in mirroring on another machine Y. But I need to set the mirror on my machine X.
Does anybody know what the problem is?
thank you
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-20-2001 07:37 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-20-2001 07:37 AM
11-20-2001 07:37 AM
Re: problem with pvcreate
If so, add in the -f (force option) to your command:
pvcreate -f -B
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-20-2001 07:38 AM
11-20-2001 07:38 AM
Re: problem with pvcreate
If your COMPLETELY SURE the disk is not in use anywhere else then use:
pvcreate -fB ...
HTH
Duncan
I am an HPE Employee

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-20-2001 07:38 AM
11-20-2001 07:38 AM
Re: problem with pvcreate
Hi,
use the -f (force option) with pvcreate command to do this. This will force the pvcreate command to run on the disk, irrespective of what is on the disk
pvcreate -f -B /dev/rdsk/cxtydz
HTH
raj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-20-2001 07:38 AM
11-20-2001 07:38 AM
Re: problem with pvcreate
If you are absolutely sure that this is the disk you want to 'pvcreate', you will need to "force" the operation to erase existing LVM information from it. Do:
# pvcreate -B -f /dev/rdsk/c1t0d0
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-20-2001 07:46 AM
11-20-2001 07:46 AM
Re: problem with pvcreate
You can do:
# pvcreate -f -B ....
but if it doesnt work also, you can firest
# dd if=/stang/vmunix of=/dev/dsk/c1t0d0
# pvcreate -f -B ...