AGENT时区问题

2024-09-07 12:38
文章标签 问题 agent 时区

本文主要是介绍AGENT时区问题,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

1、因agent的时区与machine时区不匹配导致启动agent失败,解决在安装检查时区的检查的警告问题
解决问题:在利用12c MOS推送方式安装12c agent时,会出现时区检查的warning,上面提示利用emctl resetTZ agent在安装后处理。在做的过程中,可能遇到某些状况的解决方法
环境:HP_UNIX B.11.31
--查看agent状态
$ ./emctl status agent
Oracle Enterprise Manager Cloud Control 12c Release 3  
Copyright (c) 1996, 2013 Oracle Corporation.  All rights reserved.
---------------------------------------------------------------
Agent Version     : 12.1.0.3.0
OMS Version       : 12.1.0.3.0
Protocol Version  : 12.1.0.1.0
Agent Home        : /u01/app/agent_12c/agent_inst
Agent Binaries    : /u01/app/agent_12c/core/12.1.0.3.0
Agent Process ID  : 16518
Parent Process ID : 16451
Agent URL         : https://tdbsvr2:3872/emd/main/
Repository URL    : https://oragc12c.yto56.com.cn:4900/empbs/upload
Started at        : 2014-03-25 02:45:25
Started by user   : oracle
Last Reload       : (none)
Last successful upload                       : 2014-03-26 03:00:33
Last attempted upload                        : 2014-03-26 03:00:33
Total Megabytes of XML files uploaded so far : 2.67
Number of XML files pending upload           : 0
Size of XML files pending upload(MB)         : 0
Available disk space on upload filesystem    : 15.49%
Collection Status                            : Collections enabled
Heartbeat Status                             : Ok
Last attempted heartbeat to OMS              : 2014-03-26 03:00:18
Last successful heartbeat to OMS             : 2014-03-26 03:00:18
Next scheduled heartbeat to OMS              : 2014-03-26 03:01:18
---------------------------------------------------------------
Agent is Running and Ready

--关闭agent,查看agent所配置的时区,配置文件位于emd.properties文件里agentTZRegion字段
$ ./emctl stop agent
Oracle Enterprise Manager Cloud Control 12c Release 3  
Copyright (c) 1996, 2013 Oracle Corporation.  All rights reserved.
Stopping agent ..... stopped.
$ ./emctl config agent getTZ
Oracle Enterprise Manager Cloud Control 12c Release 3  
Copyright (c) 1996, 2013 Oracle Corporation.  All rights reserved.
GMT+08:00
--查看agent所在主机的时区
$ date
Wed Mar 26 11:01:28 EAT 2014
$ more /etc/TIMEZONE
TZ=EAT-8
export TZ

--如果不设置时区,则此时利用文档所给的命令做配置,则会报下面错误
$ ./emctl resetTZ agent
Oracle Enterprise Manager Cloud Control 12c Release 3  
Copyright (c) 1996, 2013 Oracle Corporation.  All rights reserved.
Updating /u01/app/agent_12c/agent_inst/sysman/config/emd.properties...
----- Wed Mar 26 11:02:06 2014::Blackout update timestamp Error : null
resetTZ failed.
The agentTZRegion in:
/u01/app/agent_12c/agent_inst/sysman/config/emd.properties
is not in agreement with what the agent thinks it should be.
Fix your environment.
Pick a TZ value that corresponds to time zone settings listed in:
/u01/app/agent_12c/core/12.1.0.3.0/sysman/admin/supportedtzs.lst
$ ./emctl start agent
Oracle Enterprise Manager Cloud Control 12c Release 3  
Copyright (c) 1996, 2013 Oracle Corporation.  All rights reserved.
Starting agent ..... failed.
property 'agentTZregion' in '/u01/app/agent_12c/agent_inst/sysman/config/emd.properties' contains an invalid value of '+08:00'.Agent start up can not proceed.This value might have been manually modified to be an incorrect value.This value needs to be set to one of the  values listed in '/u01/app/agent_12c/core/12.1.0.3.0/sysman/admin/supportedtzs.lst'. Execute 'emctl config agent getTZ' and see if this is an appropriate value.
Consult emctl.log and emagent.nohup in: /u01/app/agent_12c/agent_inst/sysman/log

--更改session的TZ,此TZ选择与agentTZ所在的时区一致,配置agentTZ再启动agent,查看状态
$  export TZ=Asia/Shanghai
$ date
Wed Mar 26 03:02:22 Asia/Shanghai 2014
$ ./emctl resetTZ agent
Oracle Enterprise Manager Cloud Control 12c Release 3  
Copyright (c) 1996, 2013 Oracle Corporation.  All rights reserved.
Updating /u01/app/agent_12c/agent_inst/sysman/config/emd.properties...
----- Wed Mar 26 03:03:04 2014::Blackout update timestamp Error : null
Successfully updated /u01/app/agent_12c/agent_inst/sysman/config/emd.properties.
Login as the em repository user and run the  script:
exec mgmt_target.set_agent_tzrgn('tdbsvr2:3872','Asia/Shanghai')
and commit the changes
This can be done for example by logging into sqlplus and doing
SQL> exec mgmt_target.set_agent_tzrgn('tdbsvr2:3872','Asia/Shanghai')
SQL> commit
$ ./emctl start agent
Oracle Enterprise Manager Cloud Control 12c Release 3  
Copyright (c) 1996, 2013 Oracle Corporation.  All rights reserved.
Starting agent ................................... started.
$ ./emctl status agent
Oracle Enterprise Manager Cloud Control 12c Release 3  
Copyright (c) 1996, 2013 Oracle Corporation.  All rights reserved.
---------------------------------------------------------------
Agent Version     : 12.1.0.3.0
OMS Version       : 12.1.0.3.0
Protocol Version  : 12.1.0.1.0
Agent Home        : /u01/app/agent_12c/agent_inst
Agent Binaries    : /u01/app/agent_12c/core/12.1.0.3.0
Agent Process ID  : 18879
Parent Process ID : 18826
Agent URL         : https://tdbsvr2:3872/emd/main/
Repository URL    : https://oragc12c.yto56.com.cn:4900/empbs/upload
Started at        : 2014-03-26 11:03:25
Started by user   : oracle
Last Reload       : (none)
Last successful upload                       : 2014-03-26 11:03:58
Last attempted upload                        : 2014-03-26 11:03:58
Total Megabytes of XML files uploaded so far : 0.01
Number of XML files pending upload           : 0
Size of XML files pending upload(MB)         : 0
Available disk space on upload filesystem    : 15.49%
Collection Status                            : Collections enabled
Heartbeat Status                             : Ok
Last attempted heartbeat to OMS              : 2014-03-26 11:03:57
Last successful heartbeat to OMS             : 2014-03-26 11:03:57
Next scheduled heartbeat to OMS              : 2014-03-26 11:04:57
---------------------------------------------------------------
Agent is Running and Ready

这篇关于AGENT时区问题的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1145078

相关文章

关于@MapperScan和@ComponentScan的使用问题

《关于@MapperScan和@ComponentScan的使用问题》文章介绍了在使用`@MapperScan`和`@ComponentScan`时可能会遇到的包扫描冲突问题,并提供了解决方法,同时,... 目录@MapperScan和@ComponentScan的使用问题报错如下原因解决办法课外拓展总结@

MybatisGenerator文件生成不出对应文件的问题

《MybatisGenerator文件生成不出对应文件的问题》本文介绍了使用MybatisGenerator生成文件时遇到的问题及解决方法,主要步骤包括检查目标表是否存在、是否能连接到数据库、配置生成... 目录MyBATisGenerator 文件生成不出对应文件先在项目结构里引入“targetProje

C#使用HttpClient进行Post请求出现超时问题的解决及优化

《C#使用HttpClient进行Post请求出现超时问题的解决及优化》最近我的控制台程序发现有时候总是出现请求超时等问题,通常好几分钟最多只有3-4个请求,在使用apipost发现并发10个5分钟也... 目录优化结论单例HttpClient连接池耗尽和并发并发异步最终优化后优化结论我直接上优化结论吧,

Java内存泄漏问题的排查、优化与最佳实践

《Java内存泄漏问题的排查、优化与最佳实践》在Java开发中,内存泄漏是一个常见且令人头疼的问题,内存泄漏指的是程序在运行过程中,已经不再使用的对象没有被及时释放,从而导致内存占用不断增加,最终... 目录引言1. 什么是内存泄漏?常见的内存泄漏情况2. 如何排查 Java 中的内存泄漏?2.1 使用 J

numpy求解线性代数相关问题

《numpy求解线性代数相关问题》本文主要介绍了numpy求解线性代数相关问题,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧... 在numpy中有numpy.array类型和numpy.mat类型,前者是数组类型,后者是矩阵类型。数组

解决systemctl reload nginx重启Nginx服务报错:Job for nginx.service invalid问题

《解决systemctlreloadnginx重启Nginx服务报错:Jobfornginx.serviceinvalid问题》文章描述了通过`systemctlstatusnginx.se... 目录systemctl reload nginx重启Nginx服务报错:Job for nginx.javas

Redis缓存问题与缓存更新机制详解

《Redis缓存问题与缓存更新机制详解》本文主要介绍了缓存问题及其解决方案,包括缓存穿透、缓存击穿、缓存雪崩等问题的成因以及相应的预防和解决方法,同时,还详细探讨了缓存更新机制,包括不同情况下的缓存更... 目录一、缓存问题1.1 缓存穿透1.1.1 问题来源1.1.2 解决方案1.2 缓存击穿1.2.1

vue解决子组件样式覆盖问题scoped deep

《vue解决子组件样式覆盖问题scopeddeep》文章主要介绍了在Vue项目中处理全局样式和局部样式的方法,包括使用scoped属性和深度选择器(/deep/)来覆盖子组件的样式,作者建议所有组件... 目录前言scoped分析deep分析使用总结所有组件必须加scoped父组件覆盖子组件使用deep前言

解决Cron定时任务中Pytest脚本无法发送邮件的问题

《解决Cron定时任务中Pytest脚本无法发送邮件的问题》文章探讨解决在Cron定时任务中运行Pytest脚本时邮件发送失败的问题,先优化环境变量,再检查Pytest邮件配置,接着配置文件确保SMT... 目录引言1. 环境变量优化:确保Cron任务可以正确执行解决方案:1.1. 创建一个脚本1.2. 修

Python 标准库time时间的访问和转换问题小结

《Python标准库time时间的访问和转换问题小结》time模块为Python提供了处理时间和日期的多种功能,适用于多种与时间相关的场景,包括获取当前时间、格式化时间、暂停程序执行、计算程序运行时... 目录模块介绍使用场景主要类主要函数 - time()- sleep()- localtime()- g