Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • CloudHub Portal을 운영중인 Host에 아래와 같이 솔루션을 설치합니다.

  • root 권한에서 작업합니다.

Pyvmomi 설치

  • VMware vSphere API Python Bindings

    Code Block
    languagebash
    $ pip3 install pyVmomi

VMware

...

vSphere vCLI 설치

  • vCLI 설치 전 필수 소프트웨어 설치합니다.

    Code Block
    $ yum install e2fsprogs-devel libuuid-devel openssl-devel perl-devel
    $ yum install glibc.i686 zlib.i686
    $ yum install perl-XML-LibXML libncurses.so.5 perl-Crypt-SSLeay
    $ yum -y install perl-Socket6
    $ yum -y install cpan
    $ yum -y install gcc-c++
    $ PERL_MM_USE_DEFAULT=1 cpan install BINGOS/ExtUtils-MakeMaker-6.96.tar.gz LEONT/Module-Build-0.4205.tar.gz JRM/UUID-0.28.tar.gz ESAYM/Time-Piece-1.3401.tar.gz  PERIGRIN/XML-NamespaceSupport-1.12.tar.gz  SHLOMIF/IO-Socket-INET6-2.72.tar.gz
  • vSphere vCLI Package 설치

1 단계 : vCLI 설치 Package 다운로드합니다.

Info

Download URL : https://code.vmware.com/web/tool/6.7/vsphere-cli

...

  • VMware 회원 가입이 필요할 수 있습니다.

3 2 단계 : 다운로드한 vCLI 압축 해제합니다.

Code Block
languagebash
$ tar zxvf <file-path>/VMware-vSphere-CLI-6.7.0-8156551.x86_64.tar.gz -C <file-path>

4 3 단계 : 설치 프로그램 실행합니다.

Code Block
languagebash
$ sudo <file-path>/vmware-vsphere-cli-distrib/vmware-install.pl

5 4 단계 : 라이센스 조항에 동의 하려면 yes하고 동의하기 위해 yes 입력하고 Enter

Info

설치 관리자는 CPAN에 연결하고 필수 소프트웨어를 설치합니다. 

연결하는 데 시간이 오래 걸릴 수 있습니다.

6 5 단계 : 설치 경로를 지정하고 Enter

Info

Default Path : /usr/bin

7 6 단계 : vCLI 설치 확인합니다.

Code Block
languagebash
$ esxcli -s <vCenter Server or ESXi host> -u <username> -p <password> -h <host-location> system syslog config get

...

  • VMware를 운영 중인 Host에서 작업합니다.

    Code Block
    languagebash
    $ vim /usr/lib/systemd/system/salt-minion.service
    # [Service]에 Python3.6 환경변수 추가
    #
    Environment="PYTHONPATH=/usr/local/lib/python3.6/site-packages:/usr/lib/python3.6/site-packages"
    $ systemctl daemon-reload

CloudHub Portal addon argument 추가

  • Infrastructure 메뉴의 상단 VMware Tab on/off optionable 처리합니다.

  • CloudHub service 실행시 server argument에 Add-on 옵션 추가합니다.

    • -u=vsphere:on

    Code Block
    languagebash
    # CloudHub server option
    #
    $ vim /etc/default/cloudhub
    CLOUDHUB_OPTS="-l=debug \
    .......
    -u=vsphere:on \
    ......."
  • CloudHub service 재시작

    Code Block
    languagebash
    $ systemctl daemon-reload
    $ systemctl restart cloudhub

...