본문 바로가기

IT n Linux

생물정보학자를 위한 클러스터 만들기 #4v1 Perceus 설정하기


  1. 클러스터 이해하기
  2. 시스템 구성과 CentOS 설치하기
  3. Perceus 설치하기
  4. Perceus 설정하기
  5. Perseus Node 설정하기
  6. Sun Grid Engine 설치하기
이제 perceus 설정을 하겠습니다. perceus 의 환경 설정파일들은 /etc/perceus/ 에 위치합니다. 이곳에 있는 파일중 perceus.conf 파일은 perceus 시스템을 설정하는 파일이고 defaults.conf 는 노드에 대한 설정을 하는 곳입니다.

perceus.conf 설정

/etc/perceus/perceus.conf 파일을 열어서 다음과 같이 수정합니다.
    4 vnfs transfer master = 10.0.0.1
간단합니다. 이제 perceus 를 실행합니다.
처음 실행하면 환경 설정을 초기화 할 것인지를 묻습니다. 당연히 yes 입니다.
# perceus
Do you wish to have Perceus do a complete system initialization (yes/no)? yes
다음은 간단한 정보 입력부분입니다. 특별한 목적은 없고 사용자들이 얼마나 되는지 정보를 수접하는 것같습니다. 입력을 다 하고 다음으로 넘어갑니다.

다음은 각 node 들과 연결되는 것이 어떤 랜카드인지를 선택합니다. eth1 으로 하면 됩니다.
What Ethernet device is connected directly and privately to the nodes?

    eth0: 192.168.10.15/255.255.255.0
    eth1: 10.0.0.1/255.255.0.0

(eth0)> eth1
node 들이 사용할 IP 주소를 선택하는 부분입니다. Node 들은 10.0.0.101 ~ 10.0.0.200 까지사용하겠습니다.
What IP address should the node boot address range start at?
(10.0.128.0)> 10.0.0.101

What IP address should the node boot address range end at?
(10.0.255.254)> 10.0.0.200
node 가 접속할 perceus daemon 이 있는 컴퓨터 설정입니다. 당연히 지금 사용하는 컴퓨터 이고, 10.0.0.1 로 설정 하시면 됩니다.
What IP address should the nodes (booting from this system) use to connect to
the perceus daemon? (most likely this server)
(10.0.0.1)> 10.0.0.1
각 node 들과 통신할때 hostname 에서 공통되는 부분을 제외 할 것인가 물어보는 것입니다. 제외하는게 편합니다. 그냥 enter 누르면 됩니다.
What domain name should be appended to the DNS records for each entry in DNS.
This won't require you to specify the domain for DNS lookups, but it prevents
conflicts from other non-local hostnames.
(neosgen.net)>
여기까지 하셨으면, ssh key 를 만들고 등록되면서 초기 설정이 끝나게 됩니다.

'IT n Linux' 카테고리의 다른 글

Gromacs 설치하기  (0) 2008.04.12
Perceus 1.3.7 나왔네요.  (0) 2008.03.05
Perceus 1.3.1 등장  (0) 2007.10.13
valgrind 를 이용해서 프로그램 디버깅 하기  (1) 2007.10.11
c 의 abs 함수는 double 형을 지원하지 않는다.  (1) 2007.10.05