На моем сервере работает Cloudlinux, и на нем установлено программное обеспечение RAID-зеркала (/ dev / md2 из / dev / sda и / dev / sdb).
Он работает нормально, но после имитации сбоя рейда и восстановления зеркала сам по себе не перезагружается. Вместо этого if выдает меня в приглашении grub>.
Он будет нормально загружаться, если я сделаю это:
grub> root (hd0,1)
grub> kernel /boot/vmlinuz-2.6.32-531.29.2.lve1.3.11.10.el6.x86_64 root=/dev/md2
grub> initrd /boot/initramfs-2.6.32-531.29.2.lve1.3.11.10.el6.x86_64.img
grub> boot
Но что бы я ни пытался, я не могу заставить его загрузиться автоматически. Как будто он не видит /boot/grub/grub.conf (который символически связан с menu.lst) /boot/grub/grub.conf выглядит так:
default=0
timeout=2
title CloudLinux Server (2.6.32-531.29.2.lve1.3.11.10.el6.x86_64)
root (hd0,1)
kernel /boot/vmlinuz-2.6.32-531.29.2.lve1.3.11.10.el6.x86_64 root=/dev/md2 LANG=en_US.UTF-8 SYSFONT=latarcyrheb-sun16 KEYBOARDTYPE=pc KEYTABLE=us ro nohz=off
initrd /boot/initramfs-2.6.32-531.29.2.lve1.3.11.10.el6.x86_64.img
Я переустановил grub на оба диска с помощью grub-install, я также сделал следующее:
grub> find /boot/grub/stage1
(hd0,1)
(hd1,1)
grub> device (hd0) /dev/sda
device (hd0) /dev/sda
grub> root (hd0,1)
root (hd0,1)
Filesystem type is ext2fs, partition type 0x83
grub> setup (hd0)
Checking if "/boot/grub/stage1" exists... yes
Checking if "/boot/grub/stage2" exists... yes
Checking if "/boot/grub/e2fs_stage1_5" exists... yes
Running "embed /boot/grub/e2fs_stage1_5 (hd0)"... failed (this is not fatal)
Running "embed /boot/grub/e2fs_stage1_5 (hd0,1)"... failed (this is not fatal)
Running "install /boot/grub/stage1 (hd0) /boot/grub/stage2 p /boot/grub/grub.conf "... succeeded
Done.
grub> device (hd1) /dev/sdb
device (hd1) /dev/sdb
grub> root (hd1,1)
root (hd1,1)
Filesystem type is ext2fs, partition type 0x83
grub> setup (hd1)
setup (hd1)
Checking if "/boot/grub/stage1" exists... yes
Checking if "/boot/grub/stage2" exists... yes
Checking if "/boot/grub/e2fs_stage1_5" exists... yes
Running "embed /boot/grub/e2fs_stage1_5 (hd1)"... failed (this is not fatal)
Running "embed /boot/grub/e2fs_stage1_5 (hd1,1)"... failed (this is not fatal)
Running "install /boot/grub/stage1 (hd1) /boot/grub/stage2 p /boot/grub/grub.conf "... succeeded
Done.
Любые идеи?