Virtualize a Server with Minimal Downtime
- « first
- ‹ previous
- 1
- 2
- 3
- 4
Kyle Rankin is a systems architect; and the author of DevOps Troubleshooting, The Official Ubuntu Server Book, Knoppix Hacks, Knoppix Pocket Reference, Linux Multimedia Hacks, and Ubuntu Hacks.
Realizing the promise of Apache® Hadoop® requires the effective deployment of compute, memory, storage and networking to achieve optimal results. With its flexibility and multitude of options, it is easy to over or under provision the server infrastructure, resulting in poor performance and high TCO. Join us for an in depth, technical discussion with industry experts from leading Hadoop and server companies who will provide insights into the key considerations for designing and deploying an optimal Hadoop cluster.
Sponsored by AMD
If you already use virtualized infrastructure, you are well on your way to leveraging the power of the cloud. Virtualization offers the promise of limitless resources, but how do you manage that scalability when your DevOps team doesn’t scale? In today’s hypercompetitive markets, fast results can make a difference between leading the pack vs. obsolescence. Organizations need more benefits from cloud computing than just raw resources. They need agility, flexibility, convenience, ROI, and control.
Stackato private Platform-as-a-Service technology from ActiveState extends your private cloud infrastructure by creating a private PaaS to provide on-demand availability, flexibility, control, and ultimately, faster time-to-market for your enterprise.
Sponsored by ActiveState
| Non-Linux FOSS: libnotify, OS X Style | Jun 18, 2013 |
| Containers—Not Virtual Machines—Are the Future Cloud | Jun 17, 2013 |
| Lock-Free Multi-Producer Multi-Consumer Queue on Ring Buffer | Jun 12, 2013 |
| Weechat, Irssi's Little Brother | Jun 11, 2013 |
| One Tail Just Isn't Enough | Jun 07, 2013 |
| Introduction to MapReduce with Hadoop on Linux | Jun 05, 2013 |
- Containers—Not Virtual Machines—Are the Future Cloud
- Non-Linux FOSS: libnotify, OS X Style
- Lock-Free Multi-Producer Multi-Consumer Queue on Ring Buffer
- RSS Feeds
- Introduction to MapReduce with Hadoop on Linux
- Validate an E-Mail Address with PHP, the Right Way
- New Products
- Help with Designing or Debugging CORBA Applications
- Linux Systems Administrator
- Weechat, Irssi's Little Brother
- Welcome to 1998
41 min 19 sec ago - notifier shortcomings
1 hour 5 min ago - heroku?
2 hours 41 min ago - Android User
2 hours 43 min ago - Reply to comment | Linux Journal
4 hours 36 min ago - compiling
7 hours 26 min ago - This is a good post. This
12 hours 39 min ago - Great, This is really amazing
12 hours 40 min ago - These posts are really good
12 hours 42 min ago - It’s a really great site you
12 hours 44 min ago




Comments
Older Linux ext2/3 filesystem
I was able to virtualize two older RedHat system using this method though I did run into ext2/3 filesystem issues. One system was an old RedHat 5.2 (circa 1998). I was booting the VM with Knoppix V6.0 live CD and then creating the partitions and ext2 filesystem. After rsync'ing files I found I couldn't boot. This turned out to be ext2 filesystem features. The Knoppix OS created an ext2 with all the latest features but the old RedHat 5.2 predated many of these features so it didn't know how to handle them.
I rebuilt the ext2 FS with options to turn off just about every feature.
mkfs -t ext2 -O none -r0 -O ^dir_index /dev/sdxx
Then I was able to rsync and complete all steps ending with a bootable RedHat 5.2 guest VM
Thanks for the great article.
Ubuntu 8 2.6.24 kernel I had
Ubuntu 8 2.6.24 kernel
I had to use "mount --bind /dev /mnt/sda1"
then chroot /mnt/sda1
then mount /proc /proc -t proc
and used mkinitramfs -o /boot/initrd.img
Filesystem has unsupported features
After migrating an old RedHat 9 server to VMWare using this howto, I got an error saying fsck.ext3: Filesystem has unsupported features.
I've posted a description on how to solve this issue on my blog: fsck: Filesystem has unsupported features.
I hope this might be helpful for people encountering the same issue.
nodev
I ran into problems because Knoppix mounted my root partition with the
nodevoption, which made thegrub-installandmkinitrdcalls fail, because the devices were not accessible. I had to change the mount-options withmount -oremount,dev,setuid /dev/sda1.Furthermore I had a problem because
/varis on a different partition (/dev/sda3)in my setup. I had to unmount this partition beforechroot-ing and had to (re-)mount in thechroot-environment.grub install issue
I'm having some issue with grub-install, mainly the fact that the system I'm virtualizing has a raid device for the hard drive. I've tried the grub install using some soft links to map the device names and the setup (hd0) command appears to complete but the virt-manager states the disk is not bootable
any suggestions
I had similar issues because
I had similar issues because my set up has a /boot partition:
/dev/sda1 -> /boot
/dev/sda2 -> /
/dev/sda3 -> (swap)
so chroot'ing into my root, /dev/sda2, won't exactly work right since /boot is not there. Here's what I did to get it to work, using manual grub instead of grub-install:
Before you chroot into anything (while in Knoppix shell):
$ grub
grub> root (hd0,0)
grub> setup (hd0)
grub> exit
The 1st line points root to my first partition (/dev/sda1)
2nd line sets it up. What this does is set up grub on the MBR of the virtual disk.
Then, to rebuild the initrd correctly, I had to do this:
$ umount /mnt/sda1
$ mount -o remount,dev /mnt/sda2
(assuming sda2 was already mounted)
This mount command helps eliminate /dev/null problems when using the mkinitrd command later.
$ mount /dev/sda1 /mnt/sda2/boot
(This puts the boot partition into my sda2 root mount)
Now we can chroot:
$ chroot /dev/sda2
$ ls /boot
(should see the /boot partition stuff)
I had to add these to /etc/modprobe.conf in my install (I am using VMWare server 2.0.0 RC1):
alias scsi_hostadapter mptbase
alias scsi_hostadapter1 mptscsih
Now I rebuilt initrd:
Now we do the equivalent of this:
# mv /boot/initrd-2.4.21-32.0.1.ELsmp.img /boot/initrd-2.4.21-32.0.1.ELsmp.img.bak
# mkinitrd -v /boot/initrd-2.4.21-32-0.1.ELsmp.img 2.4.21-32-0.1.ELsmp
(Notice that the orig article was missing the .img in the second line)
(Also use the -v flag to see any useful errors)
I had one last problem - when I rebooted it complained the my e2fsck was too old and keep dumping me into repair mode. My install is a real old FC2, and when I used Knoppix to create the ext3 file systems, there are "new features" that the older e2fsck didn't support. So I followed these instructions and all is good:
http://www.mail-archive.com/trilug%40trilug.org/msg26479.html
Good luck everyone. Thank you for a great guide!
I had a problem...
Hi,
Before the second and final rsync, I wanted to test if the machines goes alive, but when I do the chroot /mnt/sda, and then
# grub-install /dev/sda
it gives:
/usr/share/grub/i386-redhat/stage1: Not found
And tried:
fdisk -l (without result)
It seems that I can't have access to /var /usr /home which are other partitions
What I tried next, was to cp the files in /mnt/sda3 (/usr), to /mnt/sda1 (/) just the files in the corresponding /usr/share/grub/i386-redhat/
And the output of that command was:
/sbin/grub-install: line 501: uniq: command not found
/dev/sda: Not found or not a block device.
any advice will be greatly appreciated.
Thanks in advance.
Even though
Even though the missing -H option, this is a great HOWTO, include I will be using this to migrate from one server to other and another, obviously I had never figure it out by myself... Thank you very much, And if possible, I would like to have your agreement to translate it, (and include fdisk steps) to Spanish.
Great!!!
rsync and hardlinks
the rsync options "-avx --numeric-ids --progress" IMHO doesn't include "-H" (hardlinks). So if a systems uses many hardlinks there will be many duplicated files.