前の記事で、DebianへのRedmineのインストールに失敗したので、もうCentOSを別に立ててインストールすることにする。
前回:Debianでredmineを動かせなかった - ITは遊び
今回の環境は以下のとおり。
- ホストOS:MacMini Server
- 仮想環境:VirtualBox
- ゲストOS:CentOS-6.3 x64
- Redmine:ALMiniumを利用
VirtualBoxにインストールしてみる。
Guest Additionのインストール
参考:CentOS5へのVBoxLinuxAdditionsインストール - メモ超
必要ではないが、一応インストールする。
準備
#yum install -y gcc
メニューの[Device]→[Install Guest Additions]をクリックすると、仮想マシン内でCDドライブが投入される。そこのインストーラを実行する。
#/media/VBOXADDITIONS_4.2.6_82870/VBoxLinuxAdditions.run
しかしエラー発生。
Building the VirtualBox Guest Additions kernel modules The headers for the current running kernel were not found. If the following module compilation fails then this could be the reason. The missing package can be probably installed with yum install kernel-devel-2.6.32-279.el6.x86_64 Building the main Guest Additions module [失敗] (Look at /var/log/vboxadd-install.log to find out what went wrong)
途中、[失敗]があり、正しいkernel-develをインストールしろと出てくるので、そのとおりにする。
#yum install kernel-devel-2.6.32-279.el6.x86_64
その後、再度インストールする。
#/media/VBOXADDITIONS_4.2.6_82870/VBoxLinuxAdditions.run
で、再起動。
#reboot now
追記(2013/05/06)
参考:VirtualBox上のCentOS6.2にGuestAdditionsをインストール
yum install kernel-devel-2.6.32-279.el6.x86_64では、見つからないようなので、CentOSのディスクメディアからコピーするようです。
sshのインストール
#yum install openssh
以降は、CUIで起動する
参考:シェル(CUI)からvirtualBoxを起動する。 - それマグで!
以降は、VirtualBoxの仮想マシンはGUIなしで起動する。
MacMiniのコンソールにて。
$VBoxManage startvm "CentOSForRedmine" --type headless