LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 07-19-2018, 12:21 PM   #1
Sum1
Member
 
Registered: Jul 2007
Distribution: Fedora, CentOS, and would like to get back to Gentoo
Posts: 332

Rep: Reputation: 30
lvm volume group on raid1: physically move raid1 array from server 1 to server 2


Server 1 running CentOS 7.
Server 2 running CentOS 7.

I want to create an lvm volume group on two ssd hard drives configured in software RAID1 on Server 1.
Then, copy data to the volume group.
Then, pull the drives from Server 1 and plug them into empty bays on Server 2.

Server 1 -
Assume the two ssd drives are properly configured in RAID1 using mdadm.
Assume the volume group is properly configured and data can be written and read to/from the mounted partition on Server 1.

Will the following work to remove the drives from Server 1 and have them recognized on Server 2?? --

Server 1 -

vgchange -an /dev/lvm_pool/vg1
vgexport /dev/lvm_pool/vg1

power off to Server 1

Pull drives and plug them into Server 2
power on and boot Server 2

Server 2 -

vgimport /dev/lvm_pool/vg1
vgchange -ay /dev/lvm_pool/vg1

mount /dev/lvm_pool/vg1 to the desired partition or directory.

Has anyone completed this successfully with data intact?
Thanks for your help and guidance.
 
Old 07-20-2018, 08:00 AM   #2
rknichols
Senior Member
 
Registered: Aug 2009
Distribution: Rocky Linux
Posts: 4,779

Rep: Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212
Quote:
Originally Posted by Sum1 View Post
Will the following work to remove the drives from Server 1 and have them recognized on Server 2?? --

Server 1 -

vgchange -an /dev/lvm_pool/vg1
vgexport /dev/lvm_pool/vg1

power off to Server 1

Pull drives and plug them into Server 2
power on and boot Server 2

Server 2 -

vgimport /dev/lvm_pool/vg1
vgchange -ay /dev/lvm_pool/vg1

mount /dev/lvm_pool/vg1 to the desired partition or directory.

Has anyone completed this successfully with data intact?
I perform exactly those steps with portable drives routinely. Just make sure the VG name doesn't conflict with something that already exists on Server 2, as that tends to cause "innumerable confusion" (to steal a term from Marshall MaLuhan's book).

Last edited by rknichols; 07-20-2018 at 08:05 AM.
 
Old 07-20-2018, 09:38 AM   #3
Sum1
Member
 
Registered: Jul 2007
Distribution: Fedora, CentOS, and would like to get back to Gentoo
Posts: 332

Original Poster
Rep: Reputation: 30
Thanks for the review and confirmation, RK!

I've been muttering hopeful words all week trying to figure out a way to transfer the data quickly and get it back online without having to hover over a 1.2TB rsync over the network.
 
Old 07-20-2018, 09:43 AM   #4
jlinkels
LQ Guru
 
Registered: Oct 2003
Location: Bonaire, Leeuwarden
Distribution: Debian /Jessie/Stretch/Sid, Linux Mint DE
Posts: 5,195

Rep: Reputation: 1043Reputation: 1043Reputation: 1043Reputation: 1043Reputation: 1043Reputation: 1043Reputation: 1043Reputation: 1043
I am sorry I can't tell you my experience with a vgchange, but I have done other scary LVM thingies.

My recommendation: set up one or two VMs, use a USB stick to create a RAID on two partitions on that USB, create LVM and do what you described in your post.

It gives me a heck more confidence when I know I have tried it before in a test environment. My problem is mainly that I don't do these things often enough. So a try out with the current version of mdadm and LVM just saves my nerves.

BTW the process you described is completely according to the RedHat manual, so it should work. AFAIK the RAID array will simply start to assemble when you place it in the new machine. I take it your boot sector is not on LVM, and it might or might not be outside the RAID.

jlinkels
 
Old 07-20-2018, 11:20 AM   #5
Sum1
Member
 
Registered: Jul 2007
Distribution: Fedora, CentOS, and would like to get back to Gentoo
Posts: 332

Original Poster
Rep: Reputation: 30
Quote:
Originally Posted by jlinkels View Post
My recommendation: set up one or two VMs, use a USB stick to create a RAID on two partitions on that USB, create LVM and do what you described in your post.
Thanks, jlink!
Yes -- I was thinking of something very similar to try. I have a spare computer at home in which I've completed a fresh CentOS 7 install on /dev/sda, then added /dev/sdb and /dev/sdc. Partitioned sdb and sdc - Created RAID1 array on them - and created logical volume on the raid array and mounted the filesystem.
I'll pull all the hard drives.
Make a new CentOS 7 install on the computer using another hard drive.
Poweroff.
Add the sdb and sdc hard drives.
Boot.
See if the fresh install recognizes the raid1 array, logical volume, and actually able to mount the filesystem.

Quote:
Originally Posted by jlinkels View Post
My problem is mainly that I don't do these things often enough.
100% spot on --- and without spare hardware in the rack to test it out, any small change to a production environment feels like a horror film.

Quote:
Originally Posted by jlinkels View Post
I take it your boot sector is not on LVM, and it might or might not be outside the RAID.
That's right. The server 1 /boot is a standard partition in raid 1 with xfs filesytem; not xfs on lvm.

Thanks again for the second set of eyes, it absolutely helps to check one's thinking and assumptions.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Move volume group(lvm) to another system using ISCSI sheelnidhipandey Linux - Server 0 11-15-2012 03:24 AM
[SOLVED] Adding expandability to existing Raid1 array - LVM or what else? lpallard Linux - Software 14 12-28-2011 05:04 AM
Migrate from default LVM installation to RAID1 (Ubuntu Server 9.10) vwtech Ubuntu 0 04-19-2010 02:07 PM
lvm ontop of raid10 or combine two raid1 via lvm? okar Linux - Server 3 09-11-2009 02:37 PM
[SOLVED] How do I install GRUB on both MBRs of a two disk RAID1 array (Ubuntu server)? Woozle Linux - Newbie 8 08-09-2008 04:34 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 02:03 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration