리눅스에서 EMC Networker 에이전트 설치

개요

EMC Networker 솔루션을 통해 백업을 받기 위해 백업 에이전트를 설치합니다.

EMC Networker를 사용하는 경우 백업 대상 리눅스 노드에 lgtoclnt와 lgtoxtdclnt 패키지를 모두 설치해야 합니다.

 

환경

 

배경지식

EMC Networker 관련 패키지

EMC Networker는 데이터 백업과 복구 솔루션입니다. lgtoclnt와 lgtoxtdclnt 패키지는 Networker 클라이언트 소프트웨어입니다.
여기서 lgto는 Legato를 의미합니다. Legato는 EMC Corporation의 소프트웨어 브랜드 중 하나이며, Legato NetWorker는 데이터 백업 및 복구 솔루션으로 알려져 있습니다.

요약하자면 lgtoclnt는 일반적인 Networker 클라이언트 소프트웨어이며, lgtoxtdclnt는 특정 애플리케이션에서 데이터를 백업하고 복구하기 위한 확장 패키지입니다.

 

설치방법

1. rpm 설치파일 업로드

SFTP를 사용해서 rpm 설치파일을 업로드합니다.

$ ls
lgtoclnt-18.2.0.5-1.x86_64.rpm  lgtoxtdclnt-18.2.0.5-1.x86_64.rpm

 

2. 패키지 설치

반드시 lgtoclnt 를 먼저 설치후, lgtoxtdclnt 를 설치해야 정상적으로 완료됩니다.

 

lgtoclnt 패키지 설치

$ rpm -ivh lgtoclnt-18.2.0.5-1.x86_64.rpm 
warning: lgtoclnt-18.2.0.5-1.x86_64.rpm: Header V3 RSA/SHA1 Signature, key ID c5dfe03d: NOKEY
Preparing...                ########################################### [100%]
   1:lgtoclnt               ########################################### [100%]

lgtoclnt (Legato Client) 패키지 설치가 정상적으로 완료되었습니다.

 

lgtoxtdclnt 패키지 설치

$ rpm -ivh lgtoxtdclnt-18.2.0.5-1.x86_64.rpm
warning: lgtoxtdclnt-18.2.0.5-1.x86_64.rpm: Header V3 RSA/SHA1 Signature, key ID c5dfe03d: NOKEY
Preparing...                ########################################### [100%]
   1:lgtoxtdclnt            ########################################### [100%]

lgtoxtdclnt (Legato Extended Client) 패키지 설치가 정상적으로 완료되었습니다.

 

3. 호스트 파일 수정

/etc/hosts 파일에 추가할 내용은 다음과 같습니다.

$ cat /etc/hosts
127.0.0.1   localhost localhost.localdomain localhost4 localhost4.localdomain4
::1         localhost localhost.localdomain localhost6 localhost6.localdomain6

...

### EMC NETWORKER ###
1.1.1.1  testserver1
2.2.2.2  BACKUP_MANAGEMENT_SERVER_HOSTNAME

 

4. NetWorker 서비스 시작

$ service networker start

 

5. NetWorker 프로세스 확인

$ ps -ef | grep nsr
root     53433     1  0 13:14 ?        00:00:00 /usr/sbin/nsrexecd

NetWorker 데몬인 nsrexecd 프로세스가 구동중입니다.

 

이것으로 Networker Agent 설치 작업이 완료됩니다.