Skip to main content
이 제품의 최신 릴리즈를 사용할 수 있습니다.
본 한국어 번역은 사용자 편의를 위해 제공되는 기계 번역입니다. 영어 버전과 한국어 버전이 서로 어긋나는 경우에는 언제나 영어 버전이 우선합니다.

배포를 위한 사전 요구 사항

기여자

Astra Trident를 구축하기 전에 호스트에 필수 프로토콜 사전 요구 사항을 설치하고 구성해야 합니다.

docker --version
  • 프로토콜 사전 요구 사항이 호스트에 설치 및 구성되어 있는지 확인합니다.

프로토콜 운영 체제 명령

NFS 를 참조하십시오

RHEL/CentOS 7

sudo yum install -y nfs-utils

NFS 를 참조하십시오

우분투

sudo apt-get install -y nfs-common

iSCSI

RHEL/CentOS 7

  1. 다음 시스템 패키지를 설치합니다.

    sudo yum install -y lsscsi iscsi-initiator-utils sg3_utils device-mapper-multipath

  2. iscsi-initiator-utils 버전이 6.2.0.874-2.el7 이상인지 확인합니다.

    rpm -q iscsi-initiator-utils

  3. 스캔을 수동으로 설정합니다.

    sudo sed -i 's/^\(node.session.scan\).*/\1 = manual/' /etc/iscsi/iscsid.conf

  4. 다중 경로 설정:

    sudo mpathconf --enable --with_multipathd y --find_multipaths n

    참고 확인합니다 etc/multipath.conf 포함 find_multipaths no 에서 defaults.
  5. 확인하십시오 iscsidmultipathd 실행 중:

    sudo systemctl enable --now iscsid multipathd

  6. 활성화 및 시작 iscsi:

    sudo systemctl enable --now iscsi

iSCSI

우분투

  1. 다음 시스템 패키지를 설치합니다.

    sudo apt-get install -y open-iscsi lsscsi sg3-utils multipath-tools scsitools

  2. open-iscsi 버전이 2.0.874-5ubuntu2.10 이상(bionic) 또는 2.0.874-7.1uubuttu6.1 이상(focal)인지 확인합니다.

    dpkg -l open-iscsi

  3. 스캔을 수동으로 설정합니다.

    sudo sed -i 's/^\(node.session.scan\).*/\1 = manual/' /etc/iscsi/iscsid.conf

  4. 다중 경로 설정:

    sudo tee /etc/multipath.conf <←'EOF'
    defaults {
    user_friendly_names yes
    find_multipaths no
    }
    EOF
    sudo systemctl enable --now multipath-tools.service
    sudo service multipath-tools restart

    참고 확인합니다 etc/multipath.conf 포함 find_multipaths no 에서 defaults.
  5. 확인하십시오 open-iscsimultipath-tools 활성화 및 실행:

    sudo systemctl status multipath-tools
    sudo systemctl enable --now open-iscsi.service
    sudo systemctl status open-iscsi