TAS(Thin-Agent服务)的先决条件与安装指南
TAS(Thin-Agent服务)的先决条件与安装指南
2.1 支持的操作系统
TAS支持以下操作系统环境:
Windows 服务器
• Windows Server 2008 R2 SP1
• Windows Server 2012 R2
• Windows Server 2016
Linux 发行版
• Red Hat Enterprise Linux (RHEL)
◦ 6.5 / 6.6 / 6.10
◦ 7.0 / 7.1 / 7.5
• SUSE Linux Enterprise Server (SLES)
◦ 11 SP4
• Ubuntu
◦ 14.04 LTS
• CentOS
◦ 6.5 / 6.9 / 6.10
◦ 7.5
FreeBSD (x86_64架构)
• 10.3 版本
• 11.1 版本

2.2 安装前的先决条件
1. BMC/IPMI 兼容性
◦ 服务器主板需支持BMC/IPMI功能(如Supermicro X10/X11系列)。
◦ 确保BMC固件已升级至最新版本。
2. 操作系统权限
◦ Linux/FreeBSD:需root权限安装和运行TAS。
◦ Windows:需管理员权限(Administrator)。
3. 依赖组件
◦ Linux/FreeBSD:
■ IPMI工具包(如ipmitool、OpenIPMI驱动)。
■ 基础开发工具(如gcc、make)。
◦ Windows:
■ IPMI驱动程序(通常由主板厂商提供)。
4. 网络配置
◦ BMC需配置独立的IP地址(与主机OS网络可互通)。

2.3 安装步骤(通用流程)
Linux/FreeBSD 安装示例
# 1. 安装依赖工具(以RHEL/CentOS为例)
yum install -y ipmitool OpenIPMI-devel gcc make# 2. 下载TAS安装包(需从Supermicro支持页面获取)
wget https://example.com/tas/tas-linux-x86_64.tar.gz
tar -xzf tas-linux-x86_64.tar.gz
cd tas/# 3. 编译安装
./configure
make && make install# 4. 启动服务
systemctl start tasd
systemctl enable tasd
Windows 安装示例
1. 从Supermicro支持页面下载TAS-Windows.msi。
2. 以管理员身份运行安装向导。
3. 安装完成后,服务将自动启动(可在服务管理器中查看Thin-Agent Service)。

2.4 验证安装
• Linux/FreeBSD:
systemctl status tasd # 检查服务状态
journalctl -u tasd -f # 查看实时日志
Windows:
◦ 打开事件查看器 → Windows日志 → 应用程序,筛选TAS相关事件。

注意事项
1. 版本兼容性:TAS版本需与BMC固件匹配(参考Supermicro兼容性列表)。
2. 防火墙:确保OS防火墙允许BMC与TAS的通信(默认使用IPMI端口623/UDP)。
3. 安全建议:
◦ 限制BMC接口的访问权限(如IP白名单)。
◦ 定期更新TAS以修复漏洞。
如需针对特定操作系统的详细安装指导,请提供具体环境信息(如RHEL 7.5或Windows Server 2016)。