请输入搜索词进行查询
搜索 <book_title>...
APTARE IT Analytics 系统管理指南
Last Published:
2022-09-02
Product(s):
APTARE IT Analytics (10.6)
- 简介
- 准备更新
- 备份和还原数据
- 监控 APTARE IT Analytics
- 使用 REST API 访问 APTARE IT Analytics 报告
- 定义 NetBackup 估计磁带容量
- 自动化主机组管理
- 按平台和版本对主机操作系统分类
- 批量加载实用程序
- 自动化 NetBackup 实用程序
- 计划实用程序自动运行
- 属性管理
- 导入常规备份数据
- 备份作业覆盖
- 管理主机数据收集
- 门户中的系统配置
- 性能配置文件计划自定义
- 配置 AD/LDAP
- 使用安全声明标记语言 (SAML) 配置单点登录 (SSO)
- 更改 Oracle 数据库用户密码
- 与 CyberArk 集成
- 优化 APTARE IT Analytics
- 使用日志文件
- 定义报告指标数据
- SNMP 陷阱警报
- SSL 证书配置
- 门户属性:格式和门户自定义
- NetBackup 发现的高级配置
- SDK 数据库对象的数据保留期
- 故障排除
数据库 SCON 日志记录 - 减少日志记录
为了最大限度地减少对 scon.log 文件的输出,可以使用以下过程清理内容:
编辑 config.sql 文件。
Linux:/opt/aptare/database/stored_procedures/config.sql
Windows:C:\opt\oracle\database\stored_procedures\config.sql
将输出设置更改为 LOW,如以下示例中的红色所示。
set Echo Off set Feedback Off CREATE OR REPLACE PACKAGE config AS -- Valid APTARE IT Analytics Logging levels are as follows: -- constant.DEBUG_OFF -- constant.DEBUG_LOW -- constant.DEBUG_MEDIUM -- constant.DEBUG_HIGH -- To change the global APTARE IT Analytics logging level, change the following constant globalDebugLevel PLS_INTEGER := constant.DEBUG_LOW; reportTransLongerThan FLOAT := 0.85; -- Transactions that take longer than this number of seconds will be reported in aptare-trans.log -- The following directory will be used to store the APTARE IT Analytics -- database logfiles scon.log and scon.err. On a Windows portal server, -- this will default to C:\opt\oracle\logs LOGDIRECTORY CONSTANT VARCHAR2(64) := '/tmp' ; END config; / SHOW ERRORS;
使用以下实用程序应用和验证新设置:
Linux:
sqlplus portal/<portal_password>@//localhost:1521/scdb@/opt/aptare/database/ stored_procedures/config.sql sqlplus portal/<portal_password>@//localhost:1521/scdb@/opt/aptare/database/tools/validate_sp
Windows:
sqlplus portal/<portal_password>@//localhost:1521/scdb@C:\opt\oracle\database\ stored_procedures\config.sql sqlplus portal/<portal_password>@//localhost:1521/scdb@C:\opt\oracle\database\tools\ validate_sp