rpcbind 또는 portmapper 패키지가 Linux 호스트에 설치되어 있는지 확인합니다. 실행:
# rpm -qa | grep rpcbind
다음과 같이 반환됩니다. rpcbind-0.1.6+git20080930-6.15
아무것도 표시되지 않으면 YaST 또는 Zypper를 사용하여 패키지를 설치해야 합니다.
YaST 사용: # yast2 --install rpcbind
Zypper 사용: # zypper install rpcbind
Linux 호스트에서 NFS 클라이언트 정보 알아보기
백업 및 DR 승인 NFS 클라이언트 패키지 및 버전이 호스트에 설치되어야 합니다.
portmapper 또는 rpcbind 서비스가 실행 중인지 확인합니다. 실행:
# sudo service rpcbind status
Red Hat RHEL 6 또는 CentOS Linux 호스트는 다음과 같이 반환해야 합니다.
rpcbind (pid 1591) is running...
SLES Linux 호스트는 다음과 같이 반환합니다.
Checking for service rpcbind running
Linux 호스트에서 rpcbind 서비스가 실행되고 있지 않으면 다음과 같이 시작합니다.
# sudo service rpcbind start
rpcinfo를 사용하여 등록된 RPC 프로그램 또는 서비스를 나열합니다. Portmapper가 등록되고 실행 중이어야 합니다.
# sudo rpcinfo -p
program vers proto port service
100000 4 tcp 111 portmapper
100000 3 tcp 111 portmapper
100000 2 tcp 111 portmapper
100000 4 udp 111 portmapper
100000 3 udp 111 portmapper
100000 2 udp 111 portmapper
다음을 사용하여 Linux 호스트가 백업/복구 어플라이언스의 rpcbind 및 NFS 프로그램에 RPC를 호출할 수 있는지 확인합니다.
# sudo rpcinfo -T tcp <#vm internal IP> rpcbind
program 100000 version 2 ready and waiting
program 100000 version 3 ready and waiting
program 100000 version 4 ready and waiting
# sudo rpcinfo -T tcp <#vm internal IP> nfs
program 100003 version 2 ready and waiting
program 100003 version 3 ready and waiting
위 명령어에서 앞의 출력을 반환하면 Linux 호스트에서 백업/복구 어플라이언스로의 NFS 연결이 양호한 것입니다.
스테이징 디스크 크기 계획
일부 대용량 파일 시스템의 경우 파일 시스템의 스테이징 디스크 크기를 수동으로 설정해야 할 수 있습니다. 기본 스테이징 디스크 크기는 NAS capacity + 20%이지만 다음 두 가지 경우에는 충분하지 않을 수 있습니다.
NFS 및 SMB 네트워크 파일 시스템은 매우 큰 용량을 잘못 보고하는 경우가 있습니다. 파일 시스템이 128TiB를 초과한다고 보고하는 경우 백업 및 DR 에이전트가 '보호된 볼륨의 보고된 크기로 인해 이 애플리케이션에 스테이징 디스크 크기를 지정해야 합니다'라는 오류 코드 5289와 함께 백업을 실패합니다. 이 오류가 발생하면 백업 및 DR 서비스가 필요하지 않거나 백업/복구 어플라이언스가 처리할 수 있는 것보다 큰 대용량 디스크를 할당하지 못합니다.
NAS에서 디스크에 중복 삭제 및 압축을 사용하고 있더라도 백업 및 DR 서비스는 스테이징 디스크의 백업 이미지에서 데이터를 중복 삭제하거나 압축하지 않습니다. NAS에서는 사용량이 5TB라고 보고할 수 있지만 스테이징 디스크의 백업 이미지는 훨씬 더 많은 공간을 사용할 수 있습니다. 또한 관리자가 수동 스테이징 디스크 크기를 지정해야 합니다. 이로 인해 '스테이징 디스크 가득 참' 오류가 발생할 수 있습니다.
NAS에 NAS 콘텐츠의 전체 사본이 포함된 .snapshot 디렉터리가 있는 경우가 있습니다. NAS의 가상 스냅샷입니다. 백업 및 DR 에이전트가 이러한 스냅샷을 모두 복사하려고 시도하여 공간이 부족해집니다. .snapshot 또는 ~snapshot (NAS에서 사용하는 이름)의 제외 패턴을 사용하여 이 문제를 해결할 수 있습니다. 에서 패턴 제외하기를 참고하세요.
[[["이해하기 쉬움","easyToUnderstand","thumb-up"],["문제가 해결됨","solvedMyProblem","thumb-up"],["기타","otherUp","thumb-up"]],[["이해하기 어려움","hardToUnderstand","thumb-down"],["잘못된 정보 또는 샘플 코드","incorrectInformationOrSampleCode","thumb-down"],["필요한 정보/샘플이 없음","missingTheInformationSamplesINeed","thumb-down"],["번역 문제","translationIssue","thumb-down"],["기타","otherDown","thumb-down"]],["최종 업데이트: 2025-09-04(UTC)"],[[["\u003cp\u003eThis guide provides instructions on ensuring NFS connectivity for Backup and DR services on both Red Hat/CentOS and SLES Linux hosts.\u003c/p\u003e\n"],["\u003cp\u003eTo verify if the NFS client is installed, run \u003ccode\u003erpm -qa | grep nfs\u003c/code\u003e, and if not found, use \u003ccode\u003eyum\u003c/code\u003e or \u003ccode\u003eYaST/zypper\u003c/code\u003e to install \u003ccode\u003enfs-utils\u003c/code\u003e and \u003ccode\u003enfs-client\u003c/code\u003e respectively.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003erpcbind\u003c/code\u003e service, or portmapper, is essential for NFS operations and needs to be installed (using \u003ccode\u003eyum\u003c/code\u003e or \u003ccode\u003eYaST/zypper\u003c/code\u003e if it is not present) and running, verified with \u003ccode\u003e# sudo service rpcbind status\u003c/code\u003e and started with \u003ccode\u003e# sudo service rpcbind start\u003c/code\u003e.\u003c/p\u003e\n"],["\u003cp\u003eYou can confirm NFS connectivity by using \u003ccode\u003erpcinfo\u003c/code\u003e commands to check for registered RPC programs and to verify that the Linux host can make RPC calls to \u003ccode\u003erpcbind\u003c/code\u003e and NFS on the backup/recovery appliance.\u003c/p\u003e\n"],["\u003cp\u003eStaging disk size may need manual adjustment due to large file system capacity reporting errors or because the Backup and DR service does not deduplicate data on staging disks, and it is possible to use exclude patterns to avoid backing up \u003ccode\u003e.snapshot\u003c/code\u003e directories.\u003c/p\u003e\n"]]],[],null,["# Prepare Filestore and other file systems for Backup and DR Service\n\nThis page includes information on how to ensure there is NFS connectivity for\nBackup and DR.\n\nInstall the NFS client on a Red Hat RHEL 6 or CentOS Linux host\n---------------------------------------------------------------\n\nSee if the client is installed by running: `# rpm -qa | grep nfs`\n\nThis should return something like: \n\n nfs-utils-lib-1.1.5-9.el6.x86_64\n nfs-utils-1.2.3-54.el6.x86_64\n\n- If you see nothing, then use yum to install the NFS client packages. Run: `# yum install nfs-utils nfs-utils-lib`\n- Make sure rpcbind /portmapper package is installed on the Linux host. Run:`# rpm -qa | grep rpcbind`\n\nThis should return something like: `rpcbind-0.2.0-11.el6.x86_64`\n\n- If you see nothing, then use yum to install the rpcbind. Run: `# yum install rpcbind`\n\nInstall the NFS client on a SLES Linux host\n-------------------------------------------\n\n1. To see if the client is installed, run: `# rpm -qa | grep nfs`\n\n This should return something similar to: \n\n nfs-client-1.2.1-2.6.6\n yast2-nfs-common-2.17.7-1.1.2\n yast2-nfs-client-2.17.12-0.1.81\n\n2. If you don't see either nfs-client or yast2-nfs-xxxx packages, then use\n either YaST or zypper to install the NFS client packages.\n\n - Using YaST:\n\n # yast2 --install yast2-nfs-client\n # yast2 --install yast2-nfs-common\n\n - Using Zypper:`# zypper install nfs-client`\n3. Ensure that rpcbind or portmapper package is installed on the Linux host. Run:\n `# rpm -qa | grep rpcbind`\n This should return something like: rpcbind-0.1.6+git20080930-6.15\n\n4. If you see nothing, then you must install the packages using either YaST or\n zypper:\n\n - Using YaST: `# yast2 --install rpcbind`\n - Using Zypper: `# zypper install rpcbind`\n\nLearn NFS client information from the Linux host\n------------------------------------------------\n\nA Backup and DR-approved NFS client package and version must be installed on\nthe host.\n\n1. Check if the portmapper or rpcbind service is running. Run:\n `# sudo service rpcbind status`\n\n - A Red Hat RHEL 6 or CentOS Linux host should return something like: `rpcbind (pid 1591) is running...`\n - An SLES Linux host should return something like: `Checking for service rpcbind running`\n2. If rpcbind service is not running on Linux host, start it with:\n `# sudo service rpcbind start`\n\n3. Use rpcinfo to list the registered RPC programs or services. Portmapper\n must be registered and running.\n\n # sudo rpcinfo -p\n program vers proto port service\n 100000 4 tcp 111 portmapper\n 100000 3 tcp 111 portmapper\n 100000 2 tcp 111 portmapper\n 100000 4 udp 111 portmapper\n 100000 3 udp 111 portmapper\n 100000 2 udp 111 portmapper\n\n4. Check if the Linux host can make an RPC call to rpcbind and NFS programs on\n the backup/recovery appliance using the following.\n\n # sudo rpcinfo -T tcp \u003c#vm internal IP\u003e rpcbind\n program 100000 version 2 ready and waiting\n program 100000 version 3 ready and waiting\n program 100000 version 4 ready and waiting\n # sudo rpcinfo -T tcp \u003c#vm internal IP\u003e nfs\n program 100003 version 2 ready and waiting\n program 100003 version 3 ready and waiting\n\nIf the preceding commands return the output shown earlier, then NFS connectivity from\nLinux host to the backup/recovery appliance is good.\n\nPlanning staging disk size\n--------------------------\n\nFor some large filesystems, you may have to manually set the staging disk size\nfor the file system. The default staging disk size is `NAS capacity + 20%`,\nbut there are two cases in which this may be insufficient:\n\n- NFS and SMB network file systems sometimes incorrectly report very large\n capacities. In cases where the file system reports that it is over 128TiB the\n Backup and DR agent fails the backup with error code 5289:\n \"The reported size of the protected volume requires that the staging disk size\n is specified for this application\". This error prevents Backup and DR Service\n from allocating a huge disk that is not needed or that is larger than the\n backup/recovery appliance can handle.\n\n- Even if your NAS is using dedup and compression on its disks,\n Backup and DR Service does not deduplicate or compress data in the backup image on\n the staging disk. Your NAS may report usage of 5TB, but the backup image on\n the staging disk may use significantly more space. This also requires that the\n administrators specify a manual staging disk size. This may result in a\n \"staging disk full\" error.\n\nIf you see either of these errors, then manually set the staging disk size in\n[Application Details and Settings](/backup-disaster-recovery/docs/backup/app-details-settings-filesystems).\n\nVirtual snapshots in a .snapshot directory\n------------------------------------------\n\nSometimes on the NAS there are .snapshot directories containing a full copy of\nthe NAS contents. These are virtual snapshots of the NAS. The Backup and DR agent\ntries to copy all of those snapshots and runs out of space. You can remedy this\nby using an exclude pattern of `.snapshot` or `~snapshot` (whatever name the NAS\nuses). See [Exclude patterns in](/backup-disaster-recovery/docs/backup/app-details-settings-filesystems).\n\nAdditional information for preparing file system hosts\n------------------------------------------------------\n\nAdditional information relevant to preparing a file system host for protection\nare in [Manage hosts and their connected applications](/backup-disaster-recovery/docs/configuration/manage-hosts-and-their-applications)."]]