【VMware VCF】利用 Offline Bundle Transfer Utility(OBTU)配置 VCF 脱 ...

打印 上一主题 下一主题

主题 862|帖子 862|积分 2586

VMware Cloud Foundation 环境中,软件包仓库的来源支持两种方式,分别是 Online DepotOffline Depot。第一种方式,是在 VCF 环境能够毗连互联网的情况下,仅须要配置账号暗码后,就可以直接从 VMware 官方在线存储库获取软件包;第二种方式,是在 VCF 环境不能毗连互联网的情况下,通过在本地搭建一个 Web 服务器并搭配 Offline Bundle Transfer Utility(OBTU)工具来作为 VCF 环境的离线/脱机存储库。
在线仓库的方式固然非常方便,但是,每每许多环境由于各种原因无法毗连互联网,这时间就只能利用离线仓库了。VMware 针对 VCF 环境推出了一种配置离线仓库的方式,这在很大程度上能为客户提供便利性,特别是环境中具有多个 VCF 实例的场景。你只需在本地找一台能够毗连互联网的 Linux 服务器并配置为 Web 服务器,然后利用 Offline Bundle Transfer Utility(OBTU)工具将 VCF 干系软件包下载到这个服务器内,末了再到 SDDC Manager 中配置脱机库后,就能实现与在线仓库一样的结果。说到这里,你是不是会发现这跟 vSphere 环境中 Update Manager Download Service(UMDS) 的利用方式非常相似?!

当然,上面这种 OBTU + Web 服务器来作为 VCF 的脱机库只是一种利用方式,你依然可以通过以下方式去手动下载离线软件包,然后再手动上传至 SDDC Manager,来完成组件的生命周期管理。不外这照旧比力麻烦,所以,下面我将演示如何去预备一个 OBTU 服务器来配置作为 VCF 环境的脱机库。
本文以下内容参考 VMware 官方产品文档《VMware Cloud Foundation Lifecycle Management》、知识库文章(KB 312168)以及干系博客文章(VMware Cloud Foundation Offline Depot Introduction)。
 
一、预备 OBTU 服务器

此次环境预备了一台基于 CentOS 发行版的 OBTU 服务器用于作为 VCF 环境的脱机存储库。
  1. [root@localhost ~]# cat /etc/os-release
  2. NAME="CentOS Linux"
  3. VERSION="7 (Core)"
  4. ID="centos"
  5. ID_LIKE="rhel fedora"
  6. VERSION_ID="7"
  7. PRETTY_NAME="CentOS Linux 7 (Core)"
  8. ANSI_COLOR="0;31"
  9. CPE_NAME="cpe:/o:centos:centos:7"
  10. HOME_URL="https://www.centos.org/"
  11. BUG_REPORT_URL="https://bugs.centos.org/"
  12. CENTOS_MANTISBT_PROJECT="CentOS-7"
  13. CENTOS_MANTISBT_PROJECT_VERSION="7"
  14. REDHAT_SUPPORT_PRODUCT="centos"
  15. REDHAT_SUPPORT_PRODUCT_VERSION="7"
  16. [root@localhost ~]# cat /etc/centos-release
  17. CentOS Linux release 7.9.2009 (Core)
  18. [root@localhost ~]#
  19. [root@localhost ~]# uname -a
  20. Linux localhost 3.10.0-1160.el7.x86_64 #1 SMP Mon Oct 19 16:18:59 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux
  21. [root@localhost ~]#
复制代码
配置主机名、Hosts 文件,将 Selinux 和 Firewalld 防火墙关闭。
  1. [root@localhost ~]# hostnamectl set-hostname vcf-obtu
  2. [root@localhost ~]#
  3. [root@localhost ~]# bash
  4. [root@vcf-obtu ~]#
  5. [root@vcf-obtu ~]# cat /etc/hosts
  6. 127.0.0.1   localhost localhost.localdomain localhost4 localhost4.localdomain4
  7. ::1         localhost localhost.localdomain localhost6 localhost6.localdomain6
  8. 192.168.32.56 vcf-obtu.mulab.local
  9. [root@vcf-obtu ~]# vim /etc/selinux/config
  10. [root@vcf-obtu ~]# cat /etc/selinux/config
  11. # This file controls the state of SELinux on the system.
  12. # SELINUX= can take one of these three values:
  13. #     enforcing - SELinux security policy is enforced.
  14. #     permissive - SELinux prints warnings instead of enforcing.
  15. #     disabled - No SELinux policy is loaded.
  16. SELINUX=disabled
  17. # SELINUXTYPE= can take one of three values:
  18. #     targeted - Targeted processes are protected,
  19. #     minimum - Modification of targeted policy. Only selected processes are protected.
  20. #     mls - Multi Level Security protection.
  21. SELINUXTYPE=targeted
  22. [root@vcf-obtu ~]# systemctl stop firewalld
  23. [root@vcf-obtu ~]# systemctl status firewalld
  24.    firewalld.service - firewalld - dynamic firewall daemon
  25.    Loaded: loaded (/usr/lib/systemd/system/firewalld.service; disabled; vendor preset: enabled)
  26.    Active: inactive (dead)
  27.      Docs: man:firewalld(1)
  28. [root@vcf-obtu ~]# systemctl disable firewalld
复制代码
请确保预备富足的空间(/obtu)用于存放 VCF 软件包,本次环境中新增加了一块硬盘。
  1. [root@vcf-obtu ~]# df -hT
  2. Filesystem              Type      Size  Used Avail Use% Mounted on
  3. devtmpfs                devtmpfs  3.9G     0  3.9G   0% /dev
  4. tmpfs                   tmpfs     3.9G     0  3.9G   0% /dev/shm
  5. tmpfs                   tmpfs     3.9G  8.9M  3.9G   1% /run
  6. tmpfs                   tmpfs     3.9G     0  3.9G   0% /sys/fs/cgroup
  7. /dev/mapper/centos-root xfs        14G  2.6G   11G  20% /
  8. /dev/sdb1               ext4      493G   73M  467G   1% /obtu
  9. /dev/sda1               xfs      1014M  150M  865M  15% /boot
  10. tmpfs                   tmpfs     783M     0  783M   0% /run/user/0
  11. [root@vcf-obtu ~]#
复制代码
 
二、安装 Apache 服务器

利用 YUM 安装 Apache 服务器,注意须要同时安装 mod_ssl 模块。
  1. [root@vcf-obtu ~]# yum install -y httpd mod_ssl jq
  2. Loaded plugins: fastestmirror
  3. Loading mirror speeds from cached hostfile
  4. * base: mirrors.aliyun.com
  5. * extras: mirrors.aliyun.com
  6. * updates: mirrors.aliyun.com
  7. Resolving Dependencies
  8. --> Running transaction check
  9. ---> Package httpd.x86_64 0:2.4.6-99.el7.centos.1 will be installed
  10. ---> Package jq.x86_64 0:1.6-2.el7 will be installed
  11. ---> Package mod_ssl.x86_64 1:2.4.6-99.el7.centos.1 will be installed
  12. --> Finished Dependency Resolution
  13. Dependencies Resolved
  14. ============================================================================================================================
  15. Package                  Arch                    Version                                    Repository                Size
  16. ============================================================================================================================
  17. Installing:
  18. httpd                    x86_64                  2.4.6-99.el7.centos.1                      updates                  2.7 M
  19. jq                       x86_64                  1.6-2.el7                                  epel                     167 k
  20. mod_ssl                  x86_64                  1:2.4.6-99.el7.centos.1                    updates                  116 k
  21. Transaction Summary
  22. ============================================================================================================================
  23. Install  3 Packages
  24. Total download size: 3.0 M
  25. Installed size: 10 M
  26. Downloading packages:
  27. (1/3): httpd-2.4.6-99.el7.centos.1.x86_64.rpm                                                        | 2.7 MB  00:00:00     
  28. (2/3): jq-1.6-2.el7.x86_64.rpm                                                                       | 167 kB  00:00:00     
  29. (3/3): mod_ssl-2.4.6-99.el7.centos.1.x86_64.rpm                                                      | 116 kB  00:00:00     
  30. ----------------------------------------------------------------------------------------------------------------------------
  31. Total                                                                                       6.1 MB/s | 3.0 MB  00:00:00     
  32. Running transaction check
  33. Running transaction test
  34. Transaction test succeeded
  35. Running transaction
  36.   Installing : httpd-2.4.6-99.el7.centos.1.x86_64                                                                       1/3
  37.   Installing : 1:mod_ssl-2.4.6-99.el7.centos.1.x86_64                                                                   2/3
  38.   Installing : jq-1.6-2.el7.x86_64                                                                                      3/3
  39.   Verifying  : httpd-2.4.6-99.el7.centos.1.x86_64                                                                       1/3
  40.   Verifying  : jq-1.6-2.el7.x86_64                                                                                      2/3
  41.   Verifying  : 1:mod_ssl-2.4.6-99.el7.centos.1.x86_64                                                                   3/3
  42. Installed:
  43.   httpd.x86_64 0:2.4.6-99.el7.centos.1         jq.x86_64 0:1.6-2.el7         mod_ssl.x86_64 1:2.4.6-99.el7.centos.1        
  44. Complete!
  45. [root@vcf-obtu ~]#
复制代码
启动 Apache 服务并参加开机自启动。
  1. [root@vcf-obtu ~]# systemctl start httpd
  2. [root@vcf-obtu ~]#
  3. [root@vcf-obtu ~]# systemctl status httpd
  4. ● httpd.service - The Apache HTTP Server
  5.    Loaded: loaded (/usr/lib/systemd/system/httpd.service; disabled; vendor preset: disabled)
  6.    Active: active (running) since Thu 2024-10-24 18:36:01 CST; 10s ago
  7.      Docs: man:httpd(8)
  8.            man:apachectl(8)
  9. Main PID: 1903 (httpd)
  10.    Status: "Total requests: 0; Current requests/sec: 0; Current traffic:   0 B/sec"
  11.    CGroup: /system.slice/httpd.service
  12.            ├─1903 /usr/sbin/httpd -DFOREGROUND
  13.            ├─1904 /usr/sbin/httpd -DFOREGROUND
  14.            ├─1905 /usr/sbin/httpd -DFOREGROUND
  15.            ├─1906 /usr/sbin/httpd -DFOREGROUND
  16.            ├─1907 /usr/sbin/httpd -DFOREGROUND
  17.            └─1908 /usr/sbin/httpd -DFOREGROUND
  18. Oct 24 18:36:01 vcf-obtu.mulab.local systemd[1]: Starting The Apache HTTP Server...
  19. Oct 24 18:36:01 vcf-obtu.mulab.local systemd[1]: Started The Apache HTTP Server.
  20. [root@vcf-obtu ~]#
  21. [root@vcf-obtu ~]# systemctl enable httpd
  22. Created symlink from /etc/systemd/system/multi-user.target.wants/httpd.service to /usr/lib/systemd/system/httpd.service.
  23. [root@vcf-obtu ~]#
复制代码
 
三、配置 Apache 服务器

创建用于向 Web 服务器进行身份验证的用户,用户名是depot,暗码是vmware。生成 OBTU 服务器的 SSL 自签名证书。
  1. [root@vcf-obtu ~]# htpasswd -b -c /etc/httpd/.htpasswd depot vmware
  2. Adding password for user depot
  3. [root@vcf-obtu ~]#
  4. [root@vcf-obtu ~]# openssl req -x509 -nodes -days 365 -newkey rsa:2048 \
  5. >     -subj "/CN=vcf-obtu.mulab.local" \
  6. >     -keyout /etc/pki/tls/private/offline_depot.key \
  7. >     -out /etc/pki/tls/certs/offline_depot.crt
  8. Generating a 2048 bit RSA private key
  9. ......+++
  10. .............+++
  11. writing new private key to '/etc/pki/tls/private/offline_depot.key'
  12. -----
  13. [root@vcf-obtu ~]#
复制代码
创建自定义网站目次,新建一个 Web 配置文件,内容如下所示。然后,测试 Apache 配置文件的正确性并重新启动 Apache 服务。
  1. [root@vcf-obtu ~]# mkdir -p /obtu/www/offline_depot
  2. [root@vcf-obtu ~]#
  3. [root@vcf-obtu ~]# chown $USER:$USER /obtu/www/offline_depot
  4. [root@vcf-obtu ~]#
  5. [root@vcf-obtu ~]# vim /etc/httpd/conf.d/offline_depot_httpd.conf
  6. [root@vcf-obtu ~]#
  7. [root@vcf-obtu ~]# cat /etc/httpd/conf.d/offline_depot_httpd.conf
  8. <IfModule mod_ssl.c>
  9. <VirtualHost *:443>
  10. ServerName vcf-obtu.mulab.local
  11. DocumentRoot /obtu/www/offline_depot
  12. SSLEngine on
  13. SSLCertificateFile /etc/pki/tls/certs/offline_depot.crt
  14. SSLCertificateKeyFile /etc/pki/tls/private/offline_depot.key
  15. <Directory /obtu/www/offline_depot/>
  16. AuthType Basic
  17. AuthName “depot”
  18. AuthUserFile /etc/httpd/.htpasswd
  19. Require valid-user
  20. </Directory>
  21. Alias /products/v1/bundles/lastupdatedtime /obtu/www/offline_depot/PROD2/vsan/hcl/lastupdatedtime.json
  22. Alias /products/v1/bundles/all /obtu/www/offline_depot/PROD2/vsan/hcl/all.json
  23. Alias /Compatibility/VxrailCompatibilityData.json /obtu/www/offline_depot/PROD2/evo/vmw/Compatibility/VxrailCompatibilityData.json
  24. </VirtualHost>
  25. </IfModule>
  26. [root@vcf-obtu ~]#
  27. [root@vcf-obtu ~]# apachectl configtest
  28. Syntax OK
  29. [root@vcf-obtu ~]#
  30. [root@vcf-obtu ~]# systemctl reload httpd
  31. [root@vcf-obtu ~]#
复制代码
现在,在网站目次中创建一个 html 测试网页,利用 curl 命令并配适用户名和暗码认证来测试 OBTU 服务器的毗连状态是否正常。你也可以直接通过浏览器访问,然后输入用户名和暗码来测试看是否正常。
  1. [root@vcf-obtu ~]#
  2. [root@vcf-obtu ~]# echo "Offline Depot OK" > /obtu/www/offline_depot/index.html
  3. [root@vcf-obtu ~]#
  4. [root@vcf-obtu ~]# curl https://vcf-obtu.mulab.local -k --silent -u depot:vmware
  5. Offline Depot OK
  6. [root@vcf-obtu ~]#
复制代码
由于 OBTU 服务器利用了自签名 SSL 证书,所以须要将其添加到 SDDC Manager 的受信任证书。利用以下命令获取 OBTU 服务器的证书。
  1. [root@vcf-obtu ~]# echo '{ "certificate" : '$(jq -sR . /etc/pki/tls/certs/offline_depot.crt)',
  2. "certificateUsageType" : "TRUSTED_FOR_OUTBOUND" }'
  3. { "certificate" : "-----BEGIN CERTIFICATE-----\nMIIDETCCAfmgAwIBAgIJAJOqS5hXP2lbMA0GCSqGSIb3DQEBCwUAMB8xHTAbBgNV\nBAMMFHZjZi1vYnR1Lm11bGFiLmxvY2FsMB4XDTI0MTAyNDEwNTUzMFoXDTI1MTAy\nNDEwNTUzMFowHzEdMBsGA1UEAwwUdmNmLW9idHUubXVsYWIubG9jYWwwggEiMA0G\nCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDVDi8aICqq//qp0mBgX3bW7K6v3xnL\n2ZZBkhLOyuiYjK3b18mFPQj7T9G0whygz0WUKg1TPUkykhJ1OfRcEjFZkLP+LkLj\n0Z1in6xby2DQiJ5LlTTFhQIRv1w8++E4syR40+lszglWBVe54EtCBSUmZhc4LyZy\nEHt040S5+pPIl/QqaERHN44Kw7/bWr/iC2bAp/Oszhpv3kcTx2/qmnAEoTaZNqP0\n24/xV3f4d1xmRe8pHR1UCLybj0xKVzEALMAp/6FXaFHas71eB2gYyQFiQ0FTaJl6\nG7XpUmHdnfEFRKHdGqoXKraB7aRDKh3RcpKJk/fs4ZKpeHeBvZ85xa3XAgMBAAGj\nUDBOMB0GA1UdDgQWBBSgS5Pvan0sHT9qB7MIzXhPZA5FgjAfBgNVHSMEGDAWgBSg\nS5Pvan0sHT9qB7MIzXhPZA5FgjAMBgNVHRMEBTADAQH/MA0GCSqGSIb3DQEBCwUA\nA4IBAQAls3oBsAqKDB/bo54d9u7GWT97UNeN7Rbt0LvxFPQXM0qMfCVuTjEscPXF\nwPup6XKUXEvjmRyPlU2oJAMs4muoYWPuzHsGP3KAyi8ndUR4EyyQL7o/QxrpLqzG\nP8hnoHsiPxbZ7bnY1BQMs7nBAM230LrkjnNP84Hu183qauNIL31nWm3pPrJLERC5\npCP22azuTIgkeQvdmd59Aa/vHWaKVoUuSZrDxr/7Hj+z4J7FtZfqMS3vA9YV1A8M\njjYDIAQZyhqO9aM5Vw2aZHD3eihgw2zdHiW5ySWsNuYuPHtFraVQ3+xlk90afc2E\n0DavEodrcgZDBLUgnR3cU7BjJv1E\n-----END CERTIFICATE-----\n",
  4.   "certificateUsageType" : "TRUSTED_FOR_OUTBOUND"
  5. }
  6. [root@vcf-obtu ~]#
复制代码
登陆 SDDC Manager UI,导航到开发人员中心,然后利用 v1/sddc-manager/trusted-certifcates 上传生成的受信任证书。


 
四、下载 VCF 软件包

完成 Web 服务器的干系配置后,现在须要下载 VCF 环境所利用的软件包。通过 Broadcom 支持流派下载最新的 OBTU 工具包(lcm-tools-prod.tar.gz),然后上传到 OBTU 服务器并解压,可以通过 --help 选项查看 OBTU 工具的利用帮助。
  1. [root@vcf-obtu ~]# mkdir -p /opt/obtu
  2. [root@vcf-obtu ~]# chmod 755 /opt/obtu/
  3. [root@vcf-obtu ~]# chown $USER:$USER /opt/obtu/
  4. [root@vcf-obtu ~]# ls lcm*
  5. lcm-tools-prod.tar.gz
  6. [root@vcf-obtu ~]# tar -xf lcm-tools-prod.tar.gz --directory=/opt/obtu/
  7. [root@vcf-obtu ~]# chmod +x /opt/obtu/bin/lcm-bundle-transfer-util
  8. [root@vcf-obtu ~]# cd /opt/obtu/bin/
  9. [root@vcf-obtu bin]# ls -l
  10. total 36
  11. -rwxr-x--x 1 201 201 8761 Jan  1  2000 lcm-bundle-transfer-util
  12. -rw-r----- 1 201 201 7422 Jan  1  2000 lcm-bundle-transfer-util.bat
  13. -rw-r----- 1 201 201 5853 Jan  1  2000 vcf-async-patch-tool
  14. -rw-r----- 1 201 201 4381 Jan  1  2000 vcf-async-patch-tool.bat
  15. [root@vcf-obtu bin]# ./lcm-bundle-transfer-util --help
复制代码
将 Broadcom 支持流派的暗码(BSP-PASSWORD)输入到一个文本文件内,然后利用以下命令执行 VCF 软件包的下载过程。注,BSP-USER 是 Broadcom 支持流派的账号,--sourceVersion是当前 VCF 环境的版本,OBTU 会根据当前版本自动去检测可用的更新版本(比如 5.2.1.0)并执行下载。访问 KB 96099 了解 VCF 软件包的更多信息。
  1. [root@vcf-obtu bin]# echo "BSP-PASSWORD" > ~/BSP-PASSWORD.txt
  2. [root@vcf-obtu bin]#
  3. [root@vcf-obtu bin]# ./lcm-bundle-transfer-util --setUpOfflineDepot \
  4. >   --offlineDepotRootDir /obtu/www/offline_depot \
  5. >   --offlineDepotUrl https://vcf-obtu.mulab.local \
  6. >   --depotUser BSP-USER \
  7. >   --depotUserPasswordFile ~/BSP-PASSWORD.txt \
  8. >   --sourceVersion 5.2.0.0
  9. *********Welcome to OBTU tool***********
  10. Make sure to download the most recent metadata files and upload them to the SDDC Manager appliance before
  11. downloading bundles. If you do not have the most recent metadata files, the metadata for most recent upgrades will be
  12. missing and will impact the upgrades. The following metadata files are required:  LCM manifest and VMware compatibility
  13. data (For 5.0 or upgrade to 5.0), vSAN HCL data (For 5.1 or upgrade to 5.1). VxRail requires these additional metadata files:
  14. VxRail compatibility data (For 5.0 or upgrade to 5.0) and partner bundle manifest (PBM).
  15. https://docs.vmware.com/en/VMware-Cloud-Foundation/5.0/context?id=vcf_451\n
  16. OpenJDK 64-Bit Server VM warning: Ignoring option --illegal-access=warn; support was removed in 17.0
  17. Setting up the offline depot
  18. Print warnings
  19. ----------------------------------------------------------------------------------------------------
  20.                                               WARNING                                               
  21. * Have you configured TCP keepalive in your SSH client to prevent socket connection timeouts when
  22. using the Bundle Transfer Tool for long-running operations?
  23. ----------------------------------------------------------------------------------------------------
  24. Validate passwords
  25. Validate the password for VMware depot
  26. Validating the depot user credentials...
  27. Download HCL file
  28. Downloading vSAN HCL attributes to path: /obtu/www/offline_depot/PROD2/vsan/hcl/lastupdatedtime.json
  29. Downloading the vSAN HCL file to path: /obtu/www/offline_depot/PROD2/vsan/hcl/all.json
  30. Successfully completed downloading vSAN HCL file
  31. Download VVS data
  32. User has not set the path using the default path
  33. Directory to download data is existing or created at path /obtu/www/offline_depot/PROD2/evo/vmw/
  34. Download VMware compatibility matrix to directory /obtu/www/offline_depot/PROD2/evo/vmw/Compatibility/VmwareCompatibilityData.json
  35. 2024-10-29T13:47:59.122+08:00  INFO   --- [           main] c.v.v.c.c.i.v.rest.client.VvsApiClient   : vvs uri with query params: https://vvs.esp.vmware.com/v1/products/bundles/type/vcf-lcm-v2-bundle?format=json
  36. vvs uri with query params: https://vvs.esp.vmware.com/v1/products/bundles/type/vcf-lcm-v2-bundle?format=json
  37. Successfully downloaded VMWARE_COMPAT compatibility data to file /obtu/www/offline_depot/PROD2/evo/vmw/Compatibility/VmwareCompatibilityData.json
  38. Compatibility metadata has been downloaded, to upload to SDDC Manager use this path as input: /obtu/www/offline_depot/PROD2/evo/vmw/
  39. Modified file permissions to 777 on the file: /obtu/www/offline_depot/PROD2/evo/vmw
  40. Creating delta file
  41. Downloading LCM Manifest to: /obtu/www/offline_depot/PROD2/evo/vmw
  42. Successfully completed downloading file
  43. Default manifest file found, attempting to read into manifest object.
  44. Copping /obtu/www/offline_depot/PROD2/evo/vmw/tmp/index.v3 to /obtu/www/offline_depot/PROD2/evo/vmw/index.v3
  45. List of applicable bundles:
  46. -------------------------------------------------------------------------------------------------------------------------------------------------
  47. Bundle                               | Product Version  |      Bundle Size | Bundle Component                                   | Bundle Type   
  48. -------------------------------------------------------------------------------------------------------------------------------------------------
  49. bundle-133762                        | 5.2.1.0          |         606.4 MB | ESX_HOST-8.0.3-24280767                            | PATCH         
  50. bundle-133763                        | 5.2.1.0          |        8895.2 MB | NSX_T_MANAGER-4.2.1.0.0-24304122                   | PATCH         
  51. bundle-133760                        | 5.2.1.0          |        2364.8 MB | SDDC_MANAGER_VCF-5.2.1.0-24307856                  | PATCH         
  52. bundle-133761                        | 5.2.1.0          |           0.0 MB | SDDC_MANAGER_VCF-5.2.1.0-24307856                  | PATCH (Drift)  
  53. bundle-133765                        | 5.2.1.0          |       18817.0 MB | VCENTER-8.0.3.00300-24305161                       | PATCH         
  54. bundle-130870                        | 5.2.1.0          |        4238.5 MB | NSX_ALB-22.1.7-24190832                            | INSTALL        
  55. bundle-133764                        | 5.2.1.0          |       11636.7 MB | NSX_T_MANAGER-4.2.1.0.0-24304122                   | INSTALL        
  56. bundle-133766                        | 5.2.1.0          |       11832.3 MB | VCENTER-8.0.3.00300-24305161                       | INSTALL        
  57. -------------------------------------------------------------------------------------------------------------------------------------------------
  58. Created delta file
  59. Total applicable bundles: 8
  60. Starting downloading bundles...
  61. Checking for sufficient disk space before downloading bundles
  62. Available disk space on download directory: /obtu/www/offline_depot/PROD2/evo/vmw is 503734.8 MB
  63. Required disk space to download the bundles is 78231.9 MB
  64. Downloading bundle: bundle-133762.
  65. Downloading bundle: bundle-130870.
  66. Downloading bundle: bundle-133763.
  67. Deleted the temp dir Manifest File  /obtu/www/offline_depot/PROD2/evo/vmw/tmp/manifests/bundle-130870.manifest
  68. Deleted the temp dir Manifest File  /obtu/www/offline_depot/PROD2/evo/vmw/tmp/manifests/bundle-133762.manifest
  69. Deleted the temp dir Manifest File  /obtu/www/offline_depot/PROD2/evo/vmw/tmp/manifests/bundle-133763.manifest
  70. Deleted the temp dir Manifest File  /obtu/www/offline_depot/PROD2/evo/vmw/tmp/manifests/bundle-130870.manifest.sig
  71. Deleted the temp dir Manifest File  /obtu/www/offline_depot/PROD2/evo/vmw/tmp/manifests/bundle-133762.manifest.sig
  72. Deleted the temp dir Manifest File  /obtu/www/offline_depot/PROD2/evo/vmw/tmp/manifests/bundle-133763.manifest.sig
  73. Download Progress of bundle tar : bundle-133762.tar : 0.1 MB, Average Speed: 1.01 Mbps, Total Size:  : 606.4 MB
  74. Download Progress of bundle tar : bundle-130870.tar : 0.2 MB, Average Speed: 0.63 Mbps, Total Size:  : 4238.5 MB
  75. Download Progress of bundle tar : bundle-133763.tar : 0.0 MB, Average Speed: 0.30 Mbps, Total Size:  : 8895.2 MB
  76. Download Progress of bundle tar : bundle-133762.tar : 28.0 MB, Average Speed: 13.03 Mbps, Total Size:  : 606.4 MB
  77. Download Progress of bundle tar : bundle-130870.tar : 31.3 MB, Average Speed: 13.88 Mbps, Total Size:  : 4238.5 MB
  78. Download Progress of bundle tar : bundle-133763.tar : 25.3 MB, Average Speed: 11.91 Mbps, Total Size:  : 8895.2 MB
  79. Download Progress of bundle tar : bundle-130870.tar : 96.0 MB, Average Speed: 15.17 Mbps, Total Size:  : 4238.5 MB
  80. Download Progress of bundle tar : bundle-133762.tar : 92.3 MB, Average Speed: 14.74 Mbps, Total Size:  : 606.4 MB
  81. Download Progress of bundle tar : bundle-133763.tar : 75.4 MB, Average Speed: 12.29 Mbps, Total Size:  : 8895.2 MB
  82. Download Progress of bundle tar : bundle-133762.tar : 185.3 MB, Average Speed: 12.97 Mbps, Total Size:  : 606.4 MB
  83. Download Progress of bundle tar : bundle-133763.tar : 147.9 MB, Average Speed: 10.46 Mbps, Total Size:  : 8895.2 MB
  84. Download Progress of bundle tar : bundle-130870.tar : 200.0 MB, Average Speed: 13.88 Mbps, Total Size:  : 4238.5 MB
  85. Download Progress of bundle tar : bundle-130870.tar : 352.9 MB, Average Speed: 11.59 Mbps, Total Size:  : 4238.5 MB
  86. Download Progress of bundle tar : bundle-133762.tar : 271.9 MB, Average Speed: 8.92 Mbps, Total Size:  : 606.4 MB
  87. Download Progress of bundle tar : bundle-133763.tar : 246.8 MB, Average Speed: 8.11 Mbps, Total Size:  : 8895.2 MB
  88. Download Progress of bundle tar : bundle-130870.tar : 789.4 MB, Average Speed: 12.64 Mbps, Total Size:  : 4238.5 MB
  89. Download Progress of bundle tar : bundle-133762.tar : 539.2 MB, Average Speed: 8.61 Mbps, Total Size:  : 606.4 MB
  90. Download Progress of bundle tar : bundle-133763.tar : 542.7 MB, Average Speed: 8.68 Mbps, Total Size:  : 8895.2 MB
  91. Bundle bundle-133762. checksum validation successful
  92. Successfully downloaded bundle: bundle-133762.
  93. Completed downloading:1 of total:8
  94. Downloading bundle: bundle-133764.
  95. Deleted the temp dir Manifest File  /obtu/www/offline_depot/PROD2/evo/vmw/tmp/manifests/bundle-133764.manifest
  96. Deleted the temp dir Manifest File  /obtu/www/offline_depot/PROD2/evo/vmw/tmp/manifests/bundle-133764.manifest.sig
  97. Download Progress of bundle tar : bundle-133764.tar : 0.0 MB, Average Speed: 0.30 Mbps, Total Size:  : 11636.7 MB
  98. Download Progress of bundle tar : bundle-133764.tar : 24.1 MB, Average Speed: 10.54 Mbps, Total Size:  : 11636.7 MB
  99. Download Progress of bundle tar : bundle-133764.tar : 78.7 MB, Average Speed: 12.52 Mbps, Total Size:  : 11636.7 MB
  100. Download Progress of bundle tar : bundle-133764.tar : 202.3 MB, Average Speed: 14.12 Mbps, Total Size:  : 11636.7 MB
  101. Download Progress of bundle tar : bundle-133764.tar : 440.4 MB, Average Speed: 14.49 Mbps, Total Size:  : 11636.7 MB
  102. Download Progress of bundle tar : bundle-130870.tar : 1804.4 MB, Average Speed: 14.73 Mbps, Total Size:  : 4238.5 MB
  103. Download Progress of bundle tar : bundle-133763.tar : 1413.1 MB, Average Speed: 11.53 Mbps, Total Size:  : 8895.2 MB
  104. Download Progress of bundle tar : bundle-133764.tar : 860.0 MB, Average Speed: 13.78 Mbps, Total Size:  : 11636.7 MB
  105. Download Progress of bundle tar : bundle-130870.tar : 2708.9 MB, Average Speed: 14.85 Mbps, Total Size:  : 4238.5 MB
  106. Download Progress of bundle tar : bundle-133763.tar : 2370.4 MB, Average Speed: 12.98 Mbps, Total Size:  : 8895.2 MB
  107. Download Progress of bundle tar : bundle-133764.tar : 1687.3 MB, Average Speed: 13.78 Mbps, Total Size:  : 11636.7 MB
  108. Download Progress of bundle tar : bundle-130870.tar : 3587.8 MB, Average Speed: 14.80 Mbps, Total Size:  : 4238.5 MB
  109. Download Progress of bundle tar : bundle-133763.tar : 3268.9 MB, Average Speed: 13.47 Mbps, Total Size:  : 8895.2 MB
  110. Download Progress of bundle tar : bundle-133764.tar : 2558.2 MB, Average Speed: 14.02 Mbps, Total Size:  : 11636.7 MB
  111. Download Progress of bundle tar : bundle-133763.tar : 4242.8 MB, Average Speed: 14.01 Mbps, Total Size:  : 8895.2 MB
  112. Download Progress of bundle tar : bundle-133764.tar : 3454.6 MB, Average Speed: 14.25 Mbps, Total Size:  : 11636.7 MB
  113. Bundle bundle-130870. checksum validation successful
  114. Successfully downloaded bundle: bundle-130870.
  115. Completed downloading:2 of total:8
  116. Downloading bundle: bundle-133760.
  117. Deleted the temp dir Manifest File  /obtu/www/offline_depot/PROD2/evo/vmw/tmp/manifests/bundle-133760.manifest
  118. Deleted the temp dir Manifest File  /obtu/www/offline_depot/PROD2/evo/vmw/tmp/manifests/bundle-133760.manifest.sig
  119. Download Progress of bundle tar : bundle-133760.tar : 0.0 MB, Average Speed: 0.00 Mbps, Total Size:  : 2364.8 MB
  120. Download Progress of bundle tar : bundle-133760.tar : 15.9 MB, Average Speed: 7.66 Mbps, Total Size:  : 2364.8 MB
  121. Download Progress of bundle tar : bundle-133760.tar : 76.1 MB, Average Speed: 12.22 Mbps, Total Size:  : 2364.8 MB
  122. Download Progress of bundle tar : bundle-133760.tar : 173.6 MB, Average Speed: 12.20 Mbps, Total Size:  : 2364.8 MB
  123. Download Progress of bundle tar : bundle-133760.tar : 404.7 MB, Average Speed: 13.36 Mbps, Total Size:  : 2364.8 MB
  124. Download Progress of bundle tar : bundle-133763.tar : 5058.0 MB, Average Speed: 13.94 Mbps, Total Size:  : 8895.2 MB
  125. Download Progress of bundle tar : bundle-133764.tar : 4270.7 MB, Average Speed: 14.12 Mbps, Total Size:  : 11636.7 MB
  126. Download Progress of bundle tar : bundle-133760.tar : 875.0 MB, Average Speed: 14.04 Mbps, Total Size:  : 2364.8 MB
  127. Download Progress of bundle tar : bundle-133763.tar : 5990.9 MB, Average Speed: 14.16 Mbps, Total Size:  : 8895.2 MB
  128. Download Progress of bundle tar : bundle-133764.tar : 5109.3 MB, Average Speed: 14.09 Mbps, Total Size:  : 11636.7 MB
  129. Download Progress of bundle tar : bundle-133760.tar : 1754.4 MB, Average Speed: 14.34 Mbps, Total Size:  : 2364.8 MB
  130. Download Progress of bundle tar : bundle-133763.tar : 6931.3 MB, Average Speed: 14.35 Mbps, Total Size:  : 8895.2 MB
  131. Download Progress of bundle tar : bundle-133764.tar : 5963.6 MB, Average Speed: 14.11 Mbps, Total Size:  : 11636.7 MB
  132. Bundle bundle-133760. checksum validation successful
  133. Successfully downloaded bundle: bundle-133760.
  134. Completed downloading:3 of total:8
  135. Downloading bundle: bundle-133761.
  136. Deleted the temp dir Manifest File  /obtu/www/offline_depot/PROD2/evo/vmw/tmp/manifests/bundle-133761.manifest
  137. Deleted the temp dir Manifest File  /obtu/www/offline_depot/PROD2/evo/vmw/tmp/manifests/bundle-133761.manifest.sig
  138. Download Progress of bundle tar : bundle-133761.tar : 0.0 MB, Average Speed: 0.73 Mbps, Total Size:  : 0.0 MB
  139. Bundle bundle-133761. checksum validation successful
  140. Successfully downloaded bundle: bundle-133761.
  141. Completed downloading:4 of total:8
  142. Downloading bundle: bundle-133765.
  143. Deleted the temp dir Manifest File  /obtu/www/offline_depot/PROD2/evo/vmw/tmp/manifests/bundle-133765.manifest
  144. Deleted the temp dir Manifest File  /obtu/www/offline_depot/PROD2/evo/vmw/tmp/manifests/bundle-133765.manifest.sig
  145. Download Progress of bundle tar : bundle-133765.tar : 0.0 MB, Average Speed: 0.00 Mbps, Total Size:  : 18817.0 MB
  146. Download Progress of bundle tar : bundle-133765.tar : 1.2 MB, Average Speed: 0.61 Mbps, Total Size:  : 18817.0 MB
  147. Download Progress of bundle tar : bundle-133765.tar : 21.3 MB, Average Speed: 3.41 Mbps, Total Size:  : 18817.0 MB
  148. Download Progress of bundle tar : bundle-133763.tar : 7993.1 MB, Average Speed: 14.71 Mbps, Total Size:  : 8895.2 MB
  149. Download Progress of bundle tar : bundle-133765.tar : 61.2 MB, Average Speed: 4.29 Mbps, Total Size:  : 18817.0 MB
  150. Download Progress of bundle tar : bundle-133764.tar : 6899.8 MB, Average Speed: 14.30 Mbps, Total Size:  : 11636.7 MB
  151. Download Progress of bundle tar : bundle-133765.tar : 163.7 MB, Average Speed: 5.41 Mbps, Total Size:  : 18817.0 MB
  152. Download Progress of bundle tar : bundle-133765.tar : 405.1 MB, Average Speed: 6.50 Mbps, Total Size:  : 18817.0 MB
  153. Download Progress of bundle tar : bundle-133764.tar : 8036.1 MB, Average Speed: 14.80 Mbps, Total Size:  : 11636.7 MB
  154. Download Progress of bundle tar : bundle-133765.tar : 1105.1 MB, Average Speed: 9.03 Mbps, Total Size:  : 18817.0 MB
  155. Download Progress of bundle tar : bundle-133764.tar : 9371.9 MB, Average Speed: 15.55 Mbps, Total Size:  : 11636.7 MB
  156. Bundle bundle-133763. checksum validation successful
  157. Successfully downloaded bundle: bundle-133763.
  158. Completed downloading:5 of total:8
  159. Downloading bundle: bundle-133766.
  160. Deleted the temp dir Manifest File  /obtu/www/offline_depot/PROD2/evo/vmw/tmp/manifests/bundle-133766.manifest
  161. Deleted the temp dir Manifest File  /obtu/www/offline_depot/PROD2/evo/vmw/tmp/manifests/bundle-133766.manifest.sig
  162. Download Progress of bundle tar : bundle-133766.tar : 0.0 MB, Average Speed: 0.00 Mbps, Total Size:  : 11832.3 MB
  163. Download Progress of bundle tar : bundle-133766.tar : 1.1 MB, Average Speed: 0.52 Mbps, Total Size:  : 11832.3 MB
  164. Download Progress of bundle tar : bundle-133766.tar : 13.8 MB, Average Speed: 2.26 Mbps, Total Size:  : 11832.3 MB
  165. Download Progress of bundle tar : bundle-133766.tar : 42.7 MB, Average Speed: 2.97 Mbps, Total Size:  : 11832.3 MB
  166. Download Progress of bundle tar : bundle-133765.tar : 1593.1 MB, Average Speed: 8.73 Mbps, Total Size:  : 18817.0 MB
  167. Download Progress of bundle tar : bundle-133766.tar : 117.2 MB, Average Speed: 3.84 Mbps, Total Size:  : 11832.3 MB
  168. Download Progress of bundle tar : bundle-133764.tar : 10309.0 MB, Average Speed: 15.55 Mbps, Total Size:  : 11636.7 MB
  169. Download Progress of bundle tar : bundle-133766.tar : 372.5 MB, Average Speed: 5.96 Mbps, Total Size:  : 11832.3 MB
  170. Download Progress of bundle tar : bundle-133765.tar : 2166.9 MB, Average Speed: 8.94 Mbps, Total Size:  : 18817.0 MB
  171. Download Progress of bundle tar : bundle-133764.tar : 11591.9 MB, Average Speed: 16.03 Mbps, Total Size:  : 11636.7 MB
  172. Download Progress of bundle tar : bundle-133766.tar : 1031.6 MB, Average Speed: 8.42 Mbps, Total Size:  : 11832.3 MB
  173. Download Progress of bundle tar : bundle-133765.tar : 2858.3 MB, Average Speed: 9.45 Mbps, Total Size:  : 18817.0 MB
  174. Download Progress of bundle tar : bundle-133766.tar : 1724.6 MB, Average Speed: 9.45 Mbps, Total Size:  : 11832.3 MB
  175. Download Progress of bundle tar : bundle-133765.tar : 3561.3 MB, Average Speed: 9.83 Mbps, Total Size:  : 18817.0 MB
  176. Bundle bundle-133764. checksum validation successful
  177. Successfully downloaded bundle: bundle-133764.
  178. Completed downloading:6 of total:8
  179. Download Progress of bundle tar : bundle-133766.tar : 2419.9 MB, Average Speed: 9.98 Mbps, Total Size:  : 11832.3 MB
  180. Download Progress of bundle tar : bundle-133765.tar : 4269.3 MB, Average Speed: 10.11 Mbps, Total Size:  : 18817.0 MB
  181. Download Progress of bundle tar : bundle-133766.tar : 3106.3 MB, Average Speed: 10.27 Mbps, Total Size:  : 11832.3 MB
  182. Download Progress of bundle tar : bundle-133765.tar : 4887.9 MB, Average Speed: 10.13 Mbps, Total Size:  : 18817.0 MB
  183. Download Progress of bundle tar : bundle-133766.tar : 3768.0 MB, Average Speed: 10.39 Mbps, Total Size:  : 11832.3 MB
  184. Download Progress of bundle tar : bundle-133765.tar : 5576.8 MB, Average Speed: 10.28 Mbps, Total Size:  : 18817.0 MB
  185. Download Progress of bundle tar : bundle-133766.tar : 4469.1 MB, Average Speed: 10.58 Mbps, Total Size:  : 11832.3 MB
  186. Download Progress of bundle tar : bundle-133765.tar : 6270.1 MB, Average Speed: 10.41 Mbps, Total Size:  : 18817.0 MB
  187. Download Progress of bundle tar : bundle-133766.tar : 5162.3 MB, Average Speed: 10.70 Mbps, Total Size:  : 11832.3 MB
  188. Download Progress of bundle tar : bundle-133765.tar : 6985.8 MB, Average Speed: 10.55 Mbps, Total Size:  : 18817.0 MB
  189. Download Progress of bundle tar : bundle-133766.tar : 5856.8 MB, Average Speed: 10.79 Mbps, Total Size:  : 11832.3 MB
  190. Download Progress of bundle tar : bundle-133765.tar : 7682.6 MB, Average Speed: 10.63 Mbps, Total Size:  : 18817.0 MB
  191. Download Progress of bundle tar : bundle-133766.tar : 6552.3 MB, Average Speed: 10.87 Mbps, Total Size:  : 11832.3 MB
  192. Download Progress of bundle tar : bundle-133765.tar : 8381.2 MB, Average Speed: 10.71 Mbps, Total Size:  : 18817.0 MB
  193. Download Progress of bundle tar : bundle-133766.tar : 7242.4 MB, Average Speed: 10.93 Mbps, Total Size:  : 11832.3 MB
  194. Download Progress of bundle tar : bundle-133765.tar : 9086.1 MB, Average Speed: 10.79 Mbps, Total Size:  : 18817.0 MB
  195. Download Progress of bundle tar : bundle-133766.tar : 7932.4 MB, Average Speed: 10.98 Mbps, Total Size:  : 11832.3 MB
  196. Download Progress of bundle tar : bundle-133765.tar : 9790.5 MB, Average Speed: 10.85 Mbps, Total Size:  : 18817.0 MB
  197. Download Progress of bundle tar : bundle-133766.tar : 8623.1 MB, Average Speed: 11.02 Mbps, Total Size:  : 11832.3 MB
  198. Download Progress of bundle tar : bundle-133765.tar : 10501.3 MB, Average Speed: 10.91 Mbps, Total Size:  : 18817.0 MB
  199. Download Progress of bundle tar : bundle-133766.tar : 9308.9 MB, Average Speed: 11.05 Mbps, Total Size:  : 11832.3 MB
  200. Download Progress of bundle tar : bundle-133765.tar : 11092.7 MB, Average Speed: 10.85 Mbps, Total Size:  : 18817.0 MB
  201. Download Progress of bundle tar : bundle-133766.tar : 9989.4 MB, Average Speed: 11.07 Mbps, Total Size:  : 11832.3 MB
  202. Download Progress of bundle tar : bundle-133765.tar : 11792.1 MB, Average Speed: 10.89 Mbps, Total Size:  : 18817.0 MB
  203. Download Progress of bundle tar : bundle-133766.tar : 10685.3 MB, Average Speed: 11.10 Mbps, Total Size:  : 11832.3 MB
  204. Download Progress of bundle tar : bundle-133765.tar : 12490.6 MB, Average Speed: 10.93 Mbps, Total Size:  : 18817.0 MB
  205. Download Progress of bundle tar : bundle-133766.tar : 11374.2 MB, Average Speed: 11.12 Mbps, Total Size:  : 11832.3 MB
  206. Download Progress of bundle tar : bundle-133765.tar : 13189.7 MB, Average Speed: 10.97 Mbps, Total Size:  : 18817.0 MB
  207. Download Progress of bundle tar : bundle-133765.tar : 13890.8 MB, Average Speed: 11.00 Mbps, Total Size:  : 18817.0 MB
  208. Download Progress of bundle tar : bundle-133765.tar : 14599.4 MB, Average Speed: 11.04 Mbps, Total Size:  : 18817.0 MB
  209. Bundle bundle-133766. checksum validation successful
  210. Successfully downloaded bundle: bundle-133766.
  211. Completed downloading:7 of total:8
  212. Download Progress of bundle tar : bundle-133765.tar : 15298.6 MB, Average Speed: 11.06 Mbps, Total Size:  : 18817.0 MB
  213. Download Progress of bundle tar : bundle-133765.tar : 16003.4 MB, Average Speed: 11.09 Mbps, Total Size:  : 18817.0 MB
  214. Download Progress of bundle tar : bundle-133765.tar : 16709.6 MB, Average Speed: 11.12 Mbps, Total Size:  : 18817.0 MB
  215. Download Progress of bundle tar : bundle-133765.tar : 17418.8 MB, Average Speed: 11.15 Mbps, Total Size:  : 18817.0 MB
  216. Download Progress of bundle tar : bundle-133765.tar : 18121.5 MB, Average Speed: 11.17 Mbps, Total Size:  : 18817.0 MB
  217. Bundle bundle-133765. checksum validation successful
  218. Successfully downloaded bundle: bundle-133765.
  219. Completed downloading:8 of total:8
  220. Successfully completed downloading all VSRN bundles to directory path: /obtu/www/offline_depot/PROD2/evo/vmw
  221. Log file: /var/log/vmware/vcf/lcm/tools/debugtool/tmp/debuglog/lcmdebug.log
  222. [root@vcf-obtu bin]#
复制代码
终极,你将得到如下所示的目次布局。
  1. [root@vcf-obtu ~]# tree /obtu/www/offline_depot/
  2. /obtu/www/offline_depot/
  3. └── PROD2
  4.     ├── evo
  5.     │   └── vmw
  6.     │       ├── bundles
  7.     │       │   ├── bundle-130870.tar
  8.     │       │   ├── bundle-133760.tar
  9.     │       │   ├── bundle-133761.tar
  10.     │       │   ├── bundle-133762.tar
  11.     │       │   ├── bundle-133763.tar
  12.     │       │   ├── bundle-133764.tar
  13.     │       │   ├── bundle-133765.tar
  14.     │       │   └── bundle-133766.tar
  15.     │       ├── Compatibility
  16.     │       │   └── VmwareCompatibilityData.json
  17.     │       ├── deltaFileDownloaded
  18.     │       ├── deltaFileDownloaded.md5
  19.     │       ├── index.v3
  20.     │       ├── lcm
  21.     │       │   └── manifest
  22.     │       │       └── v1
  23.     │       │           └── lcmManifest.json
  24.     │       ├── manifests
  25.     │       │   ├── bundle-130870.manifest
  26.     │       │   ├── bundle-130870.manifest.sig
  27.     │       │   ├── bundle-133760.manifest
  28.     │       │   ├── bundle-133760.manifest.sig
  29.     │       │   ├── bundle-133761.manifest
  30.     │       │   ├── bundle-133761.manifest.sig
  31.     │       │   ├── bundle-133762.manifest
  32.     │       │   ├── bundle-133762.manifest.sig
  33.     │       │   ├── bundle-133763.manifest
  34.     │       │   ├── bundle-133763.manifest.sig
  35.     │       │   ├── bundle-133764.manifest
  36.     │       │   ├── bundle-133764.manifest.sig
  37.     │       │   ├── bundle-133765.manifest
  38.     │       │   ├── bundle-133765.manifest.sig
  39.     │       │   ├── bundle-133766.manifest
  40.     │       │   └── bundle-133766.manifest.sig
  41.     │       └── tmp
  42.     │           ├── index.v3
  43.     │           └── lcmManifest.json
  44.     └── vsan
  45.         └── hcl
  46.             ├── all.json
  47.             └── lastupdatedtime.json
  48. 12 directories, 33 files
  49. [root@vcf-obtu ~]#
复制代码
 
五、配置 VCF 脱机库

登陆 SDDC Manager UI,导航到管理->库设置,VMware Cloud Foundation 5.2 及之后的版本可以在这里进行脱机库设置。假如是 VMware Cloud Foundation 5.1 及之前的版本,请参考文章开头提到的知识库和博客文章,了解具体操作步骤。

点击“脱机库”中的设置,填入 OBTU 服务器的地址等信息,然后完成设置。

脱机库设置成功。

稍等半晌后,导航到生命周期管理->包管理,你应该能看到脱机库中全部可用的软件包。参考文章“更新 VCF 5.1 至 VCF 5.2 版本。”或“独立更新 SDDC Manager 组件的版本。”执行后续操作。


免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x
回复

使用道具 举报

0 个回复

正序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

宝塔山

金牌会员
这个人很懒什么都没写!

标签云

快速回复 返回顶部 返回列表