APTARE IT Analytics Data Collector 说明和故障排除

Last Published:
Product(s): APTARE IT Analytics (10.6)
  1. Data Collector 故障排除
    1.  
      验证数据收集器配置
    2.  
      验证连接
    3.  
      配置 Web 代理更新
    4.  
      收集遗漏的 Veritas Backup Exec 事件
    5.  
      用 ODBC 替代 JDBC,以便 Veritas Backup Exec 能连接到 SQL Server
    6.  
      有用的容量数据收集脚本
    7.  
      主机资源故障排除
    8.  
      主机资源:检查 WMI 代理服务器的状态
    9.  
      主机资源:安装后验证
    10. 主机资源:使用标准 SSH 检查主机连接
      1.  
        检查 SSH 的路径
      2.  
        bash 用户环境设置
    11.  
      主机资源:检查主机连接
    12.  
      主机资源:使用主机资源配置文件检查主机连接
    13. 主机资源:生成主机资源配置文件
      1.  
        输入文件中的示例行
    14.  
      主机资源:检查远程服务器上的命令执行
    15.  
      主机资源数据收集
    16.  
      主机资源:以独立模式收集
    17. 配置 SSH 的参数
      1.  
        配置 channelWaitTime
      2.  
        配置 singleChannelSession
      3.  
        配置 sudoWithPassword
    18.  
      识别 Windows 文件系统访问错误 (File Analytics)
    19.  
      从远程共享收集 (File Analytics)
    20.  
      将证书添加至 Java Keystore
  2. 防火墙配置:默认端口
    1.  
      防火墙配置:默认端口
  3. CRON 表达式和探测计划
    1.  
      CRON 表达式和探测计划
  4. 使用 VCS 和 Veritas NetBackup 为 Data Collector 构建群集 (RHEL 7)
    1.  
      使用 VCS 和 Veritas NetBackup 为数据收集器构建群集 (RHEL 7)
    2.  
      前提条件
    3.  
      数据收集器群集构建快速入门
    4.  
      Main.cf
    5.  
      升级群集数据收集器
  5. 使用 VCS 和 Veritas NetBackup 为 Data Collector 构建群集 (Windows)
    1.  
      使用 VCS 和 Veritas NetBackup 为数据收集器构建群集 (Windows)
    2.  
      前提条件
    3.  
      数据收集器群集构建快速入门
    4.  
      Main.cf
    5.  
      升级群集数据收集器
  6. 防火墙配置:默认端口
    1.  
      防火墙配置:默认端口
  7. CRON 表达式和探测计划
    1.  
      CRON 表达式和探测计划

Main.cf

先前配置的 main.cf 如下。请注意,以下配置根据需要使用示例值:

include "OracleASMTypes.cf"
include "types.cf"
include "CRSResource.cf"
include "CSSD.cf"
include "Db2udbTypes.cf"
include "MultiPrivNIC.cf"
include "/etc/VRTSvcs/conf/config/NetBackupTypes.cf"
include "OracleTypes.cf"
include "PrivNIC.cf"
include "SybaseTypes.cf"
cluster vcs_cluster (
        UserNames = { admin = XXXXXXXXXX }
        Administrators = { admin }
        )
	
system node1 (
        )
	
system node2 (
        )
	
group aptare_grp (
        SystemList = { node1 = 0, node2 = 1 }
        )
	
        Application aptare_app (
                StartProgram = "/aptare-vol/mbs/bin/aptare_agent start"
                StopProgram = "/aptare-vol/mbs/bin/aptare_agent stop"
                CleanProgram = "/aptare-vol/mbs/bin/aptare_agent stop"
                MonitorProgram = "/opt/aptare_scripts/aptare_dc_monitor.sh"
        )
								DiskGroup aptare_dg (
                DiskGroup = aptare-dg
                )
		
        Mount aptare_mnt (
                MountPoint = "/aptare-vol"
                BlockDevice = "/dev/vx/dsk/aptare-dg/aptare-vol"
                FSType = vxfs
                FsckOpt = "-y"
                CreateMntPt = 1
                )
		
        Volume aptare_vol (
                DiskGroup = aptare-dg
                Volume = aptare-vol
                )
		
requires group nbu_group online local hard
aptare_app requires aptare_mnt
aptare_mnt requires aptare_vol
aptare_vol requires aptare_dg
        // resource dependency tree
        //
        //      group aptare_grp
        //      {
        //      Application aptare_app
        //          {
        //          Mount aptare_mnt
        //              {
        //              Volume aptare_vol
        //                  {
        //                  DiskGroup aptare_dg
        //                  }
        //              }
        //          }
        //      }
	
group nbu_group (
        SystemList = { node1 = 0, node2 = 1 }
        AutoStartList = { node1, node2 }
        )
	
        DiskGroup nbu_dg (
                DiskGroup = nbu-dg
                )
		
        IP nbu_ip (
                Device @node1 = abc123
                Device @node2 = abc123
                Address = "11.222.33.44"
                NetMask = "222.233.244.0"
                )
		
        Mount nbu_mount (
                MountPoint = "/opt/VRTSnbu"
                BlockDevice = "/dev/vx/dsk/nbu-dg/nbu-vol"
                FSType = vxfs
                FsckOpt = "-y"
                )
		
        NIC nbu_nic (
                Device @node1 = abc123
                Device @node2 = abc123
                NetworkHosts = { "11.222.33.444", "11.222.33.445" }
                )
		
        NetBackup nbu_server (
                ResourceOwner = unknown
                ServerName = NBU_Server
                ServerType = NBUMaster
                MonScript = NONE
                RSPFile = "/usr/openv/netbackup/bin/cluster/NBU_RSP"
                GroupName = nbu_group
                )
		
        Volume nbu_vol (
                DiskGroup = nbu-dg
                Volume = nbu-vol
                )
		
        nbu_ip requires nbu_nic
        nbu_mount requires nbu_vol
        nbu_server requires nbu_ip
        nbu_server requires nbu_mount
        nbu_vol requires nbu_dg
        // resource dependency tree
        //
        //      group nbu_group
        //      {
        //      NetBackup nbu_server
        //          {
        //          IP nbu_ip
        //              {
        //              NIC nbu_nic
        //              }
        //          Mount nbu_mount
        //              {
        //              Volume nbu_vol
        //                  {
        //                  DiskGroup nbu_dg
        //                  }
        //              }
        //          }
        //      }