33[Server] VirtualServer의 BIOS세팅과 RAID1 구성Admin

이번에 서버 재구성 할 일이 생겨 제가 택한 세팅법입니다.
특히 가상화 할 경우 VT활성화를 안해주면 Windows2008Server 64bit 계열은 설치가 안되더군요.^^


*** 가상서버 구성 시 BIOS세팅 ***
HP계열 기준(기타 같은 원리)

BIOS셋업[F9]
RAID활성화 :  Advanced Options > Embedded SATA RAID > Enabled
VT활성화: Advanced Options > Processor Options > Intel(R) Virtualization Technology > Enabled

RAID셋업[F8]
RAID1 구성: (Create Array하기전에 반드시 1번을 수행할 것)
1. Configure Drives > RAID구성할 HDD를 모두 선택하고 Enter
2. Array Configuration Utility > Create Array > Select Drive(INS) > Complete Selection(Enter) > RAID1> BUILD

* 하드파손 시 RAID1재구성할 경우
Manage Arrays에서 ReBuild가 불가능할 경우, RAID세팅 풀어주고 RAID셋업절차에 따라 다시 ReBuild할 것.


하드 상태
* Free : RAID 구성이 가능한 상태
* Optimal : 오류가 없는 상태
* Degraded : RAID1으로 구성된 하드 디스크 중 다른 하나에 에러가 존재하여 재구성 필요한 상태
* Verify : Spare로 구성된 하드 디스크에 이상이 없음을 확인함.

*** Ubuntu는 HP계열에서 되는 것이 있고 안되는 것이 있음이 발견되었으며, RAID구성이 되었더라도 추후 깨짐이 발견되어 Software RAID로 구성하는 것이 현재(2009.07)로서는 바람직함.


by createall in http://hwangji.kr

ReHP서버에서 RAID구성 후 RAID하드인식을 못할 경우Admin

CentOS 설치할 경우...

# 준비 할 파일 및 링크

http://h20000.www2.hp.com/bizsupport/TechSupport/DriverDownload.jsp?prodNameId=3929673&lang=en&cc=us&taskId=135&prodTypeId=15351&prodSeriesId=3929672
 
여기 링크에서 OS를 선택하시고, (CentOS 5.x는 RHEL 5를 선택. / 현재 RHEL 5 SVR(x86)선택 기준 설명 )
Software - Driver Diskettes  항목에서
첫번째 * RECOMMENDED * Driver Diskette for HP Smart Array B110i SATA RAID Controller for Red Hat Enterprise Linux 5 (x86)  (multi-part download) 를 다운받으셔서 USB에 압축을 풀어 저장


1. 바이오스, RAID 설정

 ( F9  >  Advanced ~  >  SATA RAID ~  > Enable)


2. 리눅스CD 삽입 후 부팅 시
Boot :  에서 일반적으로 설치 시 Enter 이나
Boot : linux dd   입력 후 Enter
 
3. driver disk 탐색에서 sda 선택 후 usb 드라이브 선택 후  첨부한 파일 실행 -> Controller 인식이 되어 RAID 적용 됨
 
4. 이후에는 리눅스 기본 설치와 동일

ReHP DL360 G6의 경우 CentOS 설치 후 빨갱이화면 에러가 있다.Admin
HP DL360 G6에 CentOS를 Raid로 구성하여 설치한 후, 업데이트하여 재부팅해보면 공포의 빨갱이 화면에 illegal OPCode라는 에러가 발생한다.
grub의 MBR설정이 잘못되는 에러로 판단되며 이를 해결하기위해 아래와 같이 처리하자.

0. 여러번 재부팅하다보면 하드디스크 파일시스템마저 손상되는 경우가 있는데, 한번에 잘 될 수 있도록 하고 경우에 따라 fsck를 해주자.
1. 설치시디로 재부팅하여 linux dd rescue 를 입력하여 RAID를 인식시킨 채 복구모드로 부팅한다.
2. grub를 실행한 후 아래의 출처내용처럼 MBR을 재설정하자.

출처: http://www.linuxselfhelp.com/gnu/grub/html_chapter/grub_3.html
grub> root (hd0,0)
If you are not sure which partition actually holds these files, use the command @command{find} (see section find), like this:

grub> find /boot/grub/stage1
This will search for the file name `/boot/grub/stage1' and show the devices which contain the file.

Once you've set the root device correctly, run the command @command{setup} (see section setup):
grub> setup (hd0)
-- or --
This command will install GRUB  on the MBR in the first drive. If you want to install GRUB into the boot sector of a partition instead of the MBR, specify a partition into which you want to install GRUB:
grub> setup (hd0,0)