请输入搜索词进行查询
搜索 <book_title>...
NetBackup IT Analytics Data Collector 说明和故障排除
Last Published:
2024-03-18
Product(s):
NetBackup IT Analytics (11.2)
- Data Collector 故障排除
- 解决 Data Collector 连接问题 - 特定于 Linux
- 解决 Data Collector 连接问题 - 特定于 Windows
- 门户升级/Data Collector 性能问题
- 验证数据收集器配置
- 验证连接
- 配置 Web 代理更新
- 收集遗漏的 Veritas Backup Exec 事件
- 用 ODBC 替代 JDBC,以便 Veritas Backup Exec 能连接到 SQL Server
- 有用的容量数据收集脚本
- 主机资源故障排除
- 主机资源:检查 WMI 代理服务器的状态
- 主机资源:安装后验证
- 主机资源:使用标准 SSH 检查主机连接
- 主机资源:检查主机连接
- 主机资源:使用主机资源配置文件检查主机连接
- 主机资源:生成主机资源配置文件
- 主机资源:检查远程服务器上的命令执行
- 主机资源数据收集
- 主机资源:以独立模式收集
- 配置 SSH 的参数
- 识别 Windows 文件系统访问错误 (File Analytics)
- 从远程共享收集 (File Analytics)
- 将证书添加至 Java Keystore
- 防火墙配置:默认端口
- CRON 表达式和探测计划
- 使用 VCS 和 Veritas NetBackup 为 Data Collector 构建群集 (RHEL)
- 使用 VCS 和 Veritas NetBackup 为 Data Collector 构建群集 (Windows)
- 在 MSCS 环境中安装和配置 NetBackup IT Analytics Data Collector
- 防火墙配置:默认端口
- 邮件中继服务器证书生成的维护方案
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
// }
// }
// }
// }