一、 Xcat 简介
xCAT (eXtreme Cloud Administration Toolkit) 是一个开源的可扩展的高级集群管理和配置工具,允许使用者通过一个Management节点单点控制和管理一个High Performance Computing (HPC) cluster高性能计算集群。xCAT 最先是为 IBM xSeries 系列 Linux Cluster 做的第三方软件,现在Power小型机的AIX系统中也使用。它在简化集群管理的同时,还使集群能够方便地实现快速扩展,从而提高了系统管理员的工作效率。值得一提的是,xCAT 软件是根据客户需求由Korn Shell,Perl和Expect等脚本语言编写,所以使用者修改代码后不需要重新再编译和安装,而是可以很方便地根据自己的需求直接修改脚本来定制出自己需要的 xCAT 软件。xCAT扮演着重要的角色,其主要功能如下
1,Automated installation 自动化安装
--Network booting with PXE or Etherboot/GRUB
--Red Hat installation with Kickstart
--Other OS installation using imaging or cloning
--Nodes automatically configured
--Errata automatically installed
2,Hardware management and monitoring
——Supports the Advanced System Mangagement features in IBM@server xSeries
--Remote power control
--Remote vital statistics(fan speed,temperatures,voltages)
--Remote inventory(serial numbers,BIOS levels)
--Hardware event logs
--Hardware alerts via SNMP
二、xCAT的下载与安装
xCAT对IBM客户来说是免费软件,我们可以从 下载,现最新版本为V2.7.4(2012年),对于Cluster,我们首先需配置一台管理节点Master Node(此节点通过以太网交换机与其他Cluster相连,用来管理其他计算节点,该管理节点集成了安装节点,管理节点,控制节点,用户节点的身份),前一篇我们也讲过。现我们通过该管理上安装Xcat来管理集群中的其他计算机节点。其次是OS,系统环境我们选择安装Red Hat Enterprise Linux 6。
1. 安装 xCAT测试程序
(1)在管理节点上创建路径/root/xcat/, 将 TE 指定版本的 xCAT 安装文件拷贝到该路径,一共两个文件(一个程序包加一个依赖包)
(2)通过命令"tar -xvf"解开两个安装文件,如果安装包为压缩文件则使用"tar -jxvf"
#tar -xvf xcat-core-xxxxx.xxx
#tar -xvf xcat-dep-xxxxx.xxx
(3)执行指定的脚本,为xCAT的安装设置文件依赖关系
#cd /root/xcat/xcat-core
#./mklocalrepo.sh
#cd /root/xcat/xcat-dep/rh5/x86_64
#./mklocalrepo.sh
(4)通过命令"rpm -ivh"安装xCAT所必需的软件包(已知的有"net-snmp-perl",可以在Redhat Linux安装光盘的Server目录下找到,安装时如果还提示需要安装其他依赖包,则根据提示安装相应的依赖包)
(5)按如下步骤开始安装xCAT
#yum clean all
#yum install xCAT .x86_64
#/etc/profile.d/xcat.sh
#source /etc/profile.d/xcat.sh
(6)验证xCAT是否安装成功并正常启动执行几个常用的xCAT命令,比如"tabdump site",如果这些命令能正常执行,则说明xCAT已安装成功.
#tabdump –v //查看xCAT版本
Version 2.7.4 (svn r13604,build Thu May 21 11:11:11 EDT 2012)
三、xCAT常用命
--nodeadd //adds nodes to the xCAT cluster database eg.nodeadd switch1 groups=switch
--nodels //lists the nodes,and their attributes from the xCAT database eg.nodels all
--noderm //remove the nodes in the noderange from all database table eg.noderm node
--nodeset //set the boot state for a noderange eg.nodeset node01 netboot
--nodestat //disply the running status of each node in a noderange eg.nodestat node01
--pping //parallel ping the nodes eg. pping node01
--pscp //parallel remote copy eg.pscp /home/file node1:/home
--psh //psrallel remote shell eg.psh node1 reboot
--prsync // parallel rsync eg.prsync -v
--reventlog //retrieve or clear remote hardware event logs eg.reventlog node1 clear
--rinstall //begin installation on a noderange eg.rinstall all|node01
--rinv //remote hardware inventory eg.rinv node1 all|mprom
--rpower //remote power control of nodes eg.rpower node1 on|off|reset
--wcons //windowed remote console eg.wcons all –t
--winstall //begin installation on a noderange and disply in wcons eg.winstall node01
--tabdump //display an xCAT database table in CSV format eg.tabdump site
--tabedit //view an xCAT database table in an editor and make changes eg.tabedit nodetype
--tabrestore //replaces the contents of an xCAT database table with the contents in a csv file eg.tabrestore site.csv
--dumpxCATdb //dumps the xCAT db tables eg.dumpxCATdb –p /tmp/db
--restorexCATdb //restores the Xcat db tables eg.restorexCATdb –p /tmp/table
四、xCAT表
xCAT要管理其他Cluster节点,就必须配置好各tab表,实现统一管理,下面简单讲一下xCAT表描述,如下图示
由于各节点都是由以太网交换机所连接,交换机的各个port分别接在不同的node上并分配IP,因此还有一个很重要的switch表和一个hosts 表,其中hosts表用来为我们所添加管理的节点和交换机提供IP,hostname,而switch表用来为不同的计算节点指定交换机的网口,而交换机的网所对应的IP便由该表所指定。注意:tab表的配置根据实际情况配置,其中可设计到正则表达式的应用。此外还有chain表,用来记录各节点当前的状态。
五、配置管理节点的服务
-Remote logging
-SNMP TFTP NFS NTP SSH DNS and DHCP
-Conserver
-Network booting
-Kickstart
六、管理节点管理Cluster
当管理节点配置好,xCAT表也根据实际配置妥当,此时我们可以通过管理节点的dhcp服务为各计算节点分配IP(当然这些IP是在管理节点的table表中已经指定好了的,可在/etc/hosts中查看到),当各计算节点获取了管理节点所分配的IP,此时我们算是大功告成,现在可以通过管理节点来管理其他各计算节点了。
本文并未对xCAT详细的配置做讲解,大家可参考redbooks, 并可找两台以上的机器做实验。