描述:编写一个unix脚本,它以集群名称和主机作为输入,并以文本文件的形式给出安装在其上的组件一个脚本,它接受2个输入作为集群名和主机名,并在一个文本文件上提供输出,其中列出了所有已安装的组件。
j13ufse21#
curl -uadmin:password -h “x-requested-by:x”-x get servername/clusters/cluster\u name/hosts/host\u name/host\u components>output.txtgrep“component_name”-i output.txt>component.txt通过使用这些命令,您可以在单个集群和特定主机中找到组件,对于集群级别,您需要运行循环
1条答案
按热度按时间j13ufse21#
curl -uadmin:password -h “x-requested-by:x”-x get servername/clusters/cluster\u name/hosts/host\u name/host\u components>output.txt
grep“component_name”-i output.txt>component.txt
通过使用这些命令,您可以在单个集群和特定主机中找到组件,对于集群级别,您需要运行循环