Centos5

OpenVZ 核心恐慌

  • September 19, 2012

我最近在我的 VMWare 機器上安裝了 OpenVZ(做一些測試),我得到以下資訊:

https://www.dropbox.com/s/p38btkv5j84bvsh/Capture.JPG

GRUB 配置如下:

# grub.conf generated by anaconda
#
# Note that you do not have to rerun grub after making changes to this file
# NOTICE:  You have a /boot partition.  This means that
#          all kernel and initrd paths are relative to /boot/, eg.
#          root (hd0,0)
#          kernel /vmlinuz-version ro root=/dev/VolGroup00/LogVol00
#          initrd /initrd-version.img
#boot=/dev/sda
default=0
timeout=5
splashimage=(hd0,0)/grub/splash.xpm.gz
hiddenmenu
title OpenVZ (2.6.32-042stab057.1)
       root (hd0,0)
       kernel /vmlinuz-2.6.32-042stab057.1 ro root=/dev/VolGroup00/LogVol00 sysfs.deprecated=1
       initrd /initrd-2.6.32-042stab057.1.img
title CentOS (2.6.18-238.el5)
       root (hd0,0)
       kernel /vmlinuz-2.6.18-238.el5 ro root=/dev/VolGroup00/LogVol00
       initrd /initrd-2.6.18-238.el5.img

這通常發生在您在錯誤的 repo 上安裝 OpenVZ 時。我假設您使用的主機節點作業系統是 CentOS 5。要解決此問題,您需要重新安裝 OpenVZ。

首先你必須刪除 OpenVZ。然後嘗試在**/etc/yum.conf.d/openvz.repo編輯 OpenVZ 的儲存庫**

您應該會找到類似的內容。您無需將啟用的行從 0 更改為 1 :

[openvz-kernel-rhel5]
name=OpenVZ RHEL5-based kernel
#baseurl=http://download.openvz.org/kernel/branches/rhel5-2.6.18/current/
mirrorlist=http://download.openvz.org/kernel/mirrors-rhel5-2.6.18
enabled=1
gpgcheck=1
gpgkey=http://download.openvz.org/RPM-GPG-Key-OpenVZ 

不要忘記將其他設置(openvz-kernel-rhel4 和 openvz-kernel-rhel5)更改為 enabled=0。

編輯該文件後,執行以下命令:

yum install ovzkernel

你應該很高興去。

引用自:https://serverfault.com/questions/408275