VMware的产品名称、服务名称、解决方案名称不少,让人很迷惑,就拿这个vSphere来讲吧,它到底包括哪些内容呢?浏览器
根据2019年11月4日VMware官方信息,vSphere做为一个产品,是要收费的,收的是受权费,有三种受权方式:bash
从服务内容上来看,它提供了如下几个组成部分或组件:网站
上图中,vpxd是vCenter Server上运行的守护进程或服务进程,是其核心功能。操作系统
vpxa是vCenter Server派遣到ESXi主机上的“间谍”,听命于vCenter Server,在ESXi主要与vCenter Server之间保持联络。vpxa与ESXi主机的沟通只是与一个叫hostd的组件进行的。这个组件完成的任务则由如下程序定义:命令行
# cat from /etc/init.d/hostd HOSTD_CREATE_STATSSTORE=/usr/lib/vmware/hostd/bin/create-statsstore.py HOSTD_UPGRADE_CONFIG=/usr/lib/vmware/hostd/bin/upgrade-config.py HOSTD_UPGRADE_CONFIGRULES=/usr/lib/vmware/hostd/bin/upgrade-configrules.sh HOSTD_PATCH_CONFIGRULES=/usr/lib/vmware/hostd/bin/patch-configrules.py HOSTD_UPGRADE_ENDPOINTS_CONF=/usr/lib/vmware/hostd/bin/upgrade-endpoints.conf.sh HOSTD_UPGRADE_AUTH_TALLY=/usr/lib/vmware/hostd/bin/upgrade-system-auth-tally.sh HOSTD_UPGRADE_PAM_PASSWD=/usr/lib/vmware/hostd/bin/upgrade-pam-passwd.sh HOSTD_UPGRADE_NTP_CONF=/usr/lib/vmware/hostd/bin/upgrade-ntp.conf.sh
在ESXi主机上,使用SHELL命令行,能够对这个服务进行的操做有:rest
# /etc/init.d/hostd start # /etc/init.d/hostd stop # /etc/init.d/hostd restart # /etc/init.d/hostd status # /etc/init.d/hostd ssl_reset
对于vpxa,也是同样,有以上这5种操做:code
# /etc/init.d/vpxa start # /etc/init.d/vpxa stop # /etc/init.d/vpxa restart # /etc/init.d/vpxa status # /etc/init.d/vpxa ssl_reset