Linux版开发演示帮助
onshotstart_linux是用于开发环境以及演示的安装包,可以使用除情报中心(需要安装Grafana)以外的所有功能
要使用时空沙盘需要配置并启动OpenTSDB和HBase
使用说明:
- 解压后,直接运行 start_all.sh
- 在浏览器中打开 http://{Linux机器IP}:8080/apphub
- 登录界面输入 admin/admin,登录系统
- 在应用列表界面,能够看到有“上帝之眼”等7个应用则表示运行正常。
- 上帝之眼:UAV.Monitor+APM核心GUI应用,包括应用/基础监控,报警,日志,调用链,线程分析等
- AppHub管理:负责管理AppHub的应用登记,应用授权,用户反馈浏览等
- 基础集群管理:负责管理UAV服务使用的Elastic Search和RocketMQ
- 服务治理管理:负责管理对监控数据以及监控操作的授权
- 上帝罗盘:与Grafana深度集成实现Dashboard展示,相关权限与上帝之眼完全一致
- UAV内测:用于内测发布的应用,该应用内有“服务星云”的功能:该功能尚属于实验阶段,它可以展现全网服务图谱,对客户端机器有点小考验
- 组件测试:AppHub包括一些自研组件的小测试,如果二研可以看看
- 如果登录失败或者未显示应用列表界面,检查所有程序是否都启动正常。
更多帮助,请参考UAV.Monitor+APM用户指南:
https://uavorg.github.io/main/uavdoc_useroperation/index.html
- 运行stop_all.sh将停止所有第三方服务和UAV服务
如何启用时空沙盘功能:
使用start_sup_hbase.sh,启动HBase,参见正常启动日志
注:HBase运行在standalone模式,生产环境请自行搭建基于Hadoop的分布式HBase
cd到sup_hbase目录,运行create_opentsdb_tables.sh,创建OpenTSDB所需的表
cd sup_hbase ./create_opentsdb_tables.sh
如果运行成功,日志如下:
HBase Shell; enter 'help<RETURN>' for list of supported commands. Type "exit<RETURN>" to leave the HBase Shell Version 1.1.4, r14c0e77956f9bb4c6edf0378474264843e4a82c3, Wed Mar 16 21:18:26 PDT 2016 create 'tsdb-uid', {NAME => 'id', COMPRESSION => 'GZ', BLOOMFILTER => 'ROW'}, {NAME => 'name', COMPRESSION => 'GZ', BLOOMFILTER => 'ROW'} 0 row(s) in 1.5160 seconds Hbase::Table - tsdb-uid create 'tsdb', {NAME => 't', VERSIONS => 1, COMPRESSION => 'GZ', BLOOMFILTER => 'ROW'} 0 row(s) in 1.2270 seconds Hbase::Table - tsdb create 'tsdb-tree', {NAME => 't', VERSIONS => 1, COMPRESSION => 'GZ', BLOOMFILTER => 'ROW'} 0 row(s) in 1.2200 seconds Hbase::Table - tsdb-tree create 'tsdb-meta', {NAME => 'name', COMPRESSION => 'GZ', BLOOMFILTER => 'ROW'} 0 row(s) in 1.2280 seconds Hbase::Table - tsdb-meta
使用start_sup_opentsdb.sh,启动OpenTSDB,参见正常启动日志
应用分组:
默认应用分组显示为UNKNOWN,如果需要更改应用分组,请参考修改属性
安装包内容:
- jdk1.8.0_121: 自带JDK,默认安装包内所有项目使用该JDK
- sup_apache-tomcat-8.5.9: Tomcat(已安装MOF探针),其webapps包含apphub.war(AppHub UAV前端JEE程序),rocket.war(RocketMQ监控支持)
- sup_elasticsearch: ES 5.4.1
- sup_mongodb: MongoDB
- sup_redis: Redis
- sup_rocketmq: RockeMQ
- sup_opentsdb: OpenTSDB
- sup_hbase: HBase
- uav: UAV.Monitor+APM根目录
- uavagent: 监控代理程序(Agent)已安装MOF探针
- uavhm: 健康管理服务(HM)已安装MOF探针
- uavmof: MOF探针
脚本说明:
start_all.sh: 启动并后台运行所有(第三方服务、UAV服务、AppHub),然后打开http://localhost:8080/apphub
注:start_all.sh并不包含OpenTSDB和HBase的启动
start_apphub.sh: 启动包含AppHub的Tomcat
start_monitor_agent.sh: 启动监控代理程序
start_monitor_healthmanager.sh: 启动健康管理程序
start_thirdparty_support.sh: 启动并后台运行第三方支持
start_sup_es.sh: 单独启动ElasticSearch服务
start_sup_mongo.sh: 单独启动MongoDB服务
start_sup_redis.sh: 单独启动Redis服务
start_sup_rmqserver.sh: 单独启动RocketMQ的NameServer
start_sup_rmqbroker.sh: 单独启动RocketMQ的Broker
start_sup_hbase.sh: 单独启动HBase
start_sup_opentsdb.sh: 单独启动OpenTSDB
reset_all.sh 清除所有数据
stop_all.sh 停止所有第三方服务和UAV服务
问题说明:
start_all.sh 启动的进程都是后台运行的,如何停止?
- 使用stop_all.sh
执行以下操作
通过 ps -ef | grep "java\|redis\|mongo" 命令找到所有服务的pid
- kill -9 pid 停掉所有相关进程
如果遇到不能看到上帝之眼的情况,说明权限数据没有进入MongoDB,该情况常见于机器性能不佳导致,因为该安装包包含了所有需要的程序运行
请分别检查Redis,MongoDB,RocketMQ,ElasticSearch是否都已经正常启动,并检查是否由于权限或防火墙阻止了其端口运行
执行reset_all.sh,或删除以下目录的文件(不要直接删除目录,只删除内容)
sup_elasticsearch/data/* sup_elasticsearch/logs/* sup_mongodb/Server/data/* sup_redis/dump.rdb sup_rocketmq/bin/logs sup_apache-tomcat-8.5.9/logs/* uav/uavhm.metadata uav/uavagent.metadata uav/uavmof.metadata /var/log/opentsdb/* sup_hbase/logs/* sup_hbase/data/*
- 按以下顺序在新终端中分别启动,然后重新登录
start_sup_redis.sh start_sup_mongo.sh start_sup_rmqserver.sh start_sup_rmqbroker.sh start_sup_es.sh start_sup_hbase.sh (可选,需要配置openTSDB表,参考) start_sup_opentsdb.sh (可选) start_monitor_healthmanager.sh start_monitor_agent.sh start_apphub.sh
可以忽略的异常
如果没有启动OpenTSDB(也要启动HBase,OpenTSDB依赖HBase), 健康管理服务(HM)日志出现OpenTSDB插入失败的异常:
[2017-09-14 14:56:59:648]39 E com.creditease.uav.datastore.core.OpentsdbDataStore$InsertCallBack.failed(95) DataStore INSERT FAIL with Exception: rmsg=,com.creditease.uav.httpasync.HttpAsyncException: java.net.ConnectException: Connection refused: no further information at com.creditease.uav.httpasync.AsyncReqProcWithHttpClientCallback.failed(AsyncReqProcWithHttpClientCallback.java:102)
如果启动OpenTSDB,则应该检查健康管理服务配置的OpenTSDB的端口是否正确或是否有防火墙限制,参见uav/uavhm/config/agent.properties下的配置 ,默认使用4243端口
feature.healthmanager.MT_Monitor.ds.servers=127.0.0.1:4243
无法收到预警邮件?
- 邮件预警使用JavaMail发送,需配置HM中notifycenter的mail相关配置项
进程正常启动日志:
- 邮件预警使用JavaMail发送,需配置HM中notifycenter的mail相关配置项
第三方支持程序正常启动日志:
Redis
44495:M 14 Sep 17:42:54.335 # Server started, Redis version 3.2.10 44495:M 14 Sep 17:42:54.335 * The server is now ready to accept connections on port 6379
MongoDB
2017-09-14T17:42:55.415+0800 I CONTROL [initandlisten] MongoDB starting : pid=44527 port=27017 dbpath=../../data 64-bit host=HostName 2017-09-14T17:42:55.416+0800 I CONTROL [initandlisten] db version v3.2.16-11-g1abb660 2017-09-14T17:42:55.416+0800 I CONTROL [initandlisten] git version: 1abb660e076004f16aa1b253ab16c586209b1804 2017-09-14T17:42:55.416+0800 I CONTROL [initandlisten] allocator: system 2017-09-14T17:42:55.416+0800 I CONTROL [initandlisten] modules: none 2017-09-14T17:42:55.416+0800 I CONTROL [initandlisten] build environment: 2017-09-14T17:42:55.416+0800 I CONTROL [initandlisten] distarch: x86_64 2017-09-14T17:42:55.416+0800 I CONTROL [initandlisten] target_arch: x86_64 2017-09-14T17:42:55.416+0800 I CONTROL [initandlisten] options: { storage: { dbPath: "../../data" } } 2017-09-14T17:42:55.418+0800 I STORAGE [initandlisten] wiredtiger_open config: create,cache_size=4G,session_max=20000,eviction=(threads_min=4,threads_max=4),config_base=false,statistics=(fast),log=(enabled=true,archive=true,path=journal,compressor=snappy),file_manager=(close_idle_time=100000),checkpoint=(wait=60,log_size=2GB),statistics_log=(wait=0), 2017-09-14T17:42:56.188+0800 I CONTROL [initandlisten] 2017-09-14T17:42:56.188+0800 I CONTROL [initandlisten] ** WARNING: soft rlimits too low. Number of files is 256, should be at least 1000 2017-09-14T17:42:56.529+0800 I FTDC [initandlisten] Initializing full-time diagnostic data capture with directory '../../data/diagnostic.data' 2017-09-14T17:42:56.529+0800 I NETWORK [HostnameCanonicalizationWorker] Starting hostname canonicalization worker 2017-09-14T17:42:56.529+0800 I NETWORK [initandlisten] waiting for connections on port 27017
RocketMQ Name Server
Java HotSpot(TM) 64-Bit Server VM warning: ignoring option PermSize=128m; support was removed in 8.0 Java HotSpot(TM) 64-Bit Server VM warning: ignoring option MaxPermSize=320m; support was removed in 8.0 The Name Server boot success.
RocketMQ Broker
ava HotSpot(TM) 64-Bit Server VM warning: ignoring option PermSize=128m; support was removed in 8.0 Java HotSpot(TM) 64-Bit Server VM warning: ignoring option MaxPermSize=320m; support was removed in 8.0 The broker[HostName, 10.10.168.10:10911] boot success. and name server is 127.0.0.1:9876
Elastic Search
[2017-09-14T17:50:04,273][INFO ][o.e.n.Node ] [] initializing ... [2017-09-14T17:50:04,349][INFO ][o.e.e.NodeEnvironment ] [8s3V0tW] using [1] data paths, mounts [[/ (/dev/disk1)]], net usable_space [43.8gb], net total_space [232.6gb], spins? [unknown], types [hfs] [2017-09-14T17:50:04,350][INFO ][o.e.e.NodeEnvironment ] [8s3V0tW] heap size [990.7mb], compressed ordinary object pointers [true] [2017-09-14T17:50:04,352][INFO ][o.e.n.Node ] node name [8s3V0tW] derived from node ID [8s3V0tWkS_uoDWCvsGEauw]; set [node.name] to override [2017-09-14T17:50:04,353][INFO ][o.e.n.Node ] version[5.4.1], pid[44943], build[2cfe0df/2017-05-29T16:05:51.443Z], OS[Mac OS X/10.11.6/x86_64], JVM[Oracle Corporation/Java HotSpot(TM) 64-Bit Server VM/1.8.0_121/25.121-b13] [2017-09-14T17:50:04,353][INFO ][o.e.n.Node ] JVM arguments [-Xms512m, -Xmx1g, -XX:+UseConcMarkSweepGC, -XX:CMSInitiatingOccupancyFraction=75, -XX:+UseCMSInitiatingOccupancyOnly, -XX:+DisableExplicitGC, -XX:+AlwaysPreTouch, -Xss1m, -Djava.awt.headless=true, -Dfile.encoding=UTF-8, -Djna.nosys=true, -Djdk.io.permissionsUseCanonicalPath=true, -Dio.netty.noUnsafe=true, -Dio.netty.noKeySetOptimization=true, -Dio.netty.recycler.maxCapacityPerThread=0, -Dlog4j.shutdownHookEnabled=false, -Dlog4j2.disable.jmx=true, -Dlog4j.skipJansi=true, -XX:+HeapDumpOnOutOfMemoryError, -Des.path.home=./sup_elasticsearch] [2017-09-14T17:50:05,346][INFO ][o.e.p.PluginsService ] [8s3V0tW] loaded module [aggs-matrix-stats] [2017-09-14T17:50:05,347][INFO ][o.e.p.PluginsService ] [8s3V0tW] loaded module [ingest-common] [2017-09-14T17:50:05,347][INFO ][o.e.p.PluginsService ] [8s3V0tW] loaded module [lang-expression] [2017-09-14T17:50:05,347][INFO ][o.e.p.PluginsService ] [8s3V0tW] loaded module [lang-groovy] [2017-09-14T17:50:05,347][INFO ][o.e.p.PluginsService ] [8s3V0tW] loaded module [lang-mustache] [2017-09-14T17:50:05,347][INFO ][o.e.p.PluginsService ] [8s3V0tW] loaded module [lang-painless] [2017-09-14T17:50:05,348][INFO ][o.e.p.PluginsService ] [8s3V0tW] loaded module [percolator] [2017-09-14T17:50:05,348][INFO ][o.e.p.PluginsService ] [8s3V0tW] loaded module [reindex] [2017-09-14T17:50:05,348][INFO ][o.e.p.PluginsService ] [8s3V0tW] loaded module [transport-netty3] [2017-09-14T17:50:05,349][INFO ][o.e.p.PluginsService ] [8s3V0tW] loaded module [transport-netty4] [2017-09-14T17:50:05,350][INFO ][o.e.p.PluginsService ] [8s3V0tW] loaded plugin [analysis-ik] [2017-09-14T17:50:06,928][INFO ][o.e.d.DiscoveryModule ] [8s3V0tW] using discovery type [zen] [2017-09-14T17:50:07,469][INFO ][o.e.n.Node ] initialized [2017-09-14T17:50:07,469][INFO ][o.e.n.Node ] [8s3V0tW] starting ... [2017-09-14T17:50:07,663][INFO ][o.e.t.TransportService ] [8s3V0tW] publish_address {127.0.0.1:9300}, bound_addresses {[fe80::1]:9300}, {[::1]:9300}, {127.0.0.1:9300} [2017-09-14T17:50:07,671][WARN ][o.e.b.BootstrapChecks ] [8s3V0tW] initial heap size [536870912] not equal to maximum heap size [1073741824]; this can cause resize pauses and prevents mlockall from locking the entire heap [2017-09-14T17:50:10,787][INFO ][o.e.c.s.ClusterService ] [8s3V0tW] new_master {8s3V0tW}{8s3V0tWkS_uoDWCvsGEauw}{Xi7coIivRy6nnu_8VF4Cng}{127.0.0.1}{127.0.0.1:9300}, reason: zen-disco-elected-as-master ([0] nodes joined) [2017-09-14T17:50:10,819][INFO ][o.e.h.n.Netty4HttpServerTransport] [8s3V0tW] publish_address {127.0.0.1:9200}, bound_addresses {[fe80::1]:9200}, {[::1]:9200}, {127.0.0.1:9200} [2017-09-14T17:50:10,819][INFO ][o.e.g.GatewayService ] [8s3V0tW] recovered [0] indices into cluster_state [2017-09-14T17:50:10,821][INFO ][o.e.n.Node ] [8s3V0tW] started
UAV程序正常启动日志:
健康管理服务:检查uav\uavhm.metadata\logs\P.agent.0.0.log,正常启动日志如下
Java HotSpot(TM) 64-Bit Server VM warning: Using incremental CMS is deprecated and will likely be removed in a future release Java HotSpot(TM) 64-Bit Server VM warning: UseCMSCompactAtFullCollection is deprecated and will likely be removed in a future release. Java HotSpot(TM) 64-Bit Server VM warning: CMSFullGCsBeforeCompaction is deprecated and will likely be removed in a future release. objc[856]: Class JavaLaunchHelper is implemented in both /Users/zhuang/workspace/work/uav/oneshotstart_mac/jdk1.8.0_121/bin/java and /Users/zhuang/workspace/work/uav/oneshotstart_mac/jdk1.8.0_121/jre/lib/libinstrument.dylib. One of the two will be used. Which one is undefined. <------------MOF Agent-------------> MOF.AgentArgs=null MOF.Root=/Users/zhuang/workspace/work/uav/oneshotstart_mac/uav/uavmof MOF.EngineType=com/creditease/mscp/boot/MSCPBoot MOF.ApplicationContainer=MSCP MOF.Interceptor[mscp] Install MonitorFramework Jars Start... MOF.Interceptor[mscp] Install to class loader with jar [file:/Users/zhuang/workspace/work/uav/oneshotstart_mac/uav/uavmof/com.creditease.uav/com.creditease.uav.annoscan-1.0.jar] MOF.Interceptor[mscp] Install to class loader with jar [file:/Users/zhuang/workspace/work/uav/oneshotstart_mac/uav/uavmof/com.creditease.uav/com.creditease.uav.fastjson-1.2.6.jar] MOF.Interceptor[mscp] Install to class loader with jar [file:/Users/zhuang/workspace/work/uav/oneshotstart_mac/uav/uavmof/com.creditease.uav/com.creditease.uav.helper-1.0.jar] MOF.Interceptor[mscp] Install to class loader with jar [file:/Users/zhuang/workspace/work/uav/oneshotstart_mac/uav/uavmof/com.creditease.uav/com.creditease.uav.logging-1.0.jar] MOF.Interceptor[mscp] Install to class loader with jar [file:/Users/zhuang/workspace/work/uav/oneshotstart_mac/uav/uavmof/com.creditease.uav/com.creditease.uav.monitorframework-1.0.jar] MOF.Interceptor[mscp] Install to class loader with jar [file:/Users/zhuang/workspace/work/uav/oneshotstart_mac/uav/uavmof/com.creditease.uav/com.creditease.uav.monitorframework.apm-1.0.jar] MOF.Interceptor[mscp] Install to class loader with jar [file:/Users/zhuang/workspace/work/uav/oneshotstart_mac/uav/uavmof/com.creditease.uav/com.creditease.uav.monitorframework.dproxy-1.0-dproxy.jar] MOF.Interceptor[mscp] Install to class loader with jar [file:/Users/zhuang/workspace/work/uav/oneshotstart_mac/uav/uavmof/com.creditease.uav/com.creditease.uav.monitorframework.dproxy-1.0-webservice.jar] MOF.Interceptor[mscp] Install to class loader with jar [file:/Users/zhuang/workspace/work/uav/oneshotstart_mac/uav/uavmof/com.creditease.uav/com.creditease.uav.uautils-1.20.jar] MOF.Interceptor[mscp] Install to class loader with jar [file:/Users/zhuang/workspace/work/uav/oneshotstart_mac/uav/uavmof/com.creditease.uav.extlib/8/javassist.jar] MOF.Interceptor[mscp] Install to class loader with jar [file:/Users/zhuang/workspace/work/uav/oneshotstart_mac/uav/uavmof/com.creditease.uav.mscp/common/com.creditease.uav.monitorframework.agent-1.0-mscpplus.jar] MOF.Interceptor[mscp] Install MonitorFramework Jars End. [2017-09-14 18:34:49:175]1 I com.creditease.uav.mscp.plus.MSCPLog.doLog(48) 2017-09-14 18:34:49 [CE] INFO [MonitorServer] com.creditease.monitor.UAVServer.start <-----------------------------UAV Application Server started-------------------------------------> [2017-09-14 18:34:49:181]1 I com.creditease.uav.mscp.plus.MSCPLog.doLog(48) 2017-09-14 18:34:49 [CE] INFO [MonitorServer] com.creditease.monitor.UAVServer.start UAVClassLoader Class Map: java.net.URLClassLoader@2aae9190 [2017-09-14 18:34:49:182]1 I com.creditease.uav.mscp.plus.MSCPLog.doLog(48) 2017-09-14 18:34:49 [CE] INFO [MonitorServer] com.creditease.monitor.UAVServer.start MetaPath: /Users/zhuang/workspace/work/uav/oneshotstart_mac/uav/uavmof/../uavmof.metadata [2017-09-14 18:34:49:184]1 I com.creditease.uav.mscp.plus.MSCPLog.doLog(48) 2017-09-14 18:34:49 [CE] INFO [MonitorServer] com.creditease.monitor.UAVMetaDataMgr.saveMetaData MetaData Saved: {"JAppGroup":"UNKNOWN","NetCardIndex":"0","NetCardName":"","JAppID":"HealthManagerAllInOne"} [2017-09-14 18:34:49:214]1 I com.creditease.uav.mscp.plus.MSCPLog.doLog(48) 2017-09-14 18:34:49 [CE] INFO [MonitorServer] com.creditease.uav.supporters.InterceptFrameworkSupportor.start InterceptEventListener[com.creditease.uav.apm.invokechain.listeners.InvokeChainClsInjectListener] load SUCCESS [2017-09-14 18:34:49:273]1 I com.creditease.uav.mscp.plus.MSCPLog.doLog(48) 2017-09-14 18:34:49 [CE] INFO [MonitorServer] com.creditease.uav.supporters.InterceptFrameworkSupportor.start InterceptEventListener[com.creditease.uav.appserver.listeners.AppFrkHookFactoryListener] load SUCCESS [2017-09-14 18:34:49:277]1 I com.creditease.uav.mscp.plus.MSCPLog.doLog(48) 2017-09-14 18:34:49 [CE] INFO [MonitorServer] com.creditease.uav.supporters.InterceptFrameworkSupportor.start InterceptEventListener[com.creditease.uav.appserver.listeners.AppProfilingListener] load SUCCESS [2017-09-14 18:34:49:278]1 I com.creditease.uav.mscp.plus.MSCPLog.doLog(48) 2017-09-14 18:34:49 [CE] INFO [MonitorServer] com.creditease.uav.supporters.InterceptFrameworkSupportor.start InterceptEventListener[com.creditease.uav.appserver.listeners.GlobalFilterDispatchListener] load SUCCESS [2017-09-14 18:34:49:281]1 I com.creditease.uav.mscp.plus.MSCPLog.doLog(48) 2017-09-14 18:34:49 [CE] INFO [MonitorServer] com.creditease.uav.supporters.InterceptFrameworkSupportor.start InterceptEventListener[com.creditease.uav.monitorframework.webservice.listeners.WebServiceListener] load SUCCESS [2017-09-14 18:34:49:284]1 I com.creditease.uav.mscp.plus.MSCPLog.doLog(48) 2017-09-14 18:34:49 [CE] INFO [MonitorServer] com.creditease.monitor.UAVServer.startSupporters Supporter[com.creditease.uav.supporters.InterceptFrameworkSupportor] starts SUCCESS [2017-09-14 18:34:49:419]1 I com.creditease.uav.mscp.plus.MSCPLog.doLog(48) 2017-09-14 18:34:49 [CE] INFO [MonitorServer] com.creditease.monitor.UAVServer.startSupporters Supporter[com.creditease.uav.supporters.DataObserverSupporter] starts SUCCESS [2017-09-14 18:34:49:432]1 I com.creditease.uav.mscp.plus.MSCPLog.doLog(48) 2017-09-14 18:34:49 [CE] INFO [MonitorServer] com.creditease.monitor.UAVServer.startSupporters Supporter[com.creditease.uav.supporters.DefaultMonitorSupporter] starts SUCCESS [2017-09-14 18:34:49:433]1 I com.creditease.uav.mscp.plus.MSCPLog.doLog(48) 2017-09-14 18:34:49 [CE] INFO [MonitorServer] com.creditease.monitor.UAVServer.startSupporters Supporter[com.creditease.uav.supporters.DefaultClientMonitorSupporter] starts SUCCESS [2017-09-14 18:34:49:434]1 I com.creditease.uav.mscp.plus.MSCPLog.doLog(48) 2017-09-14 18:34:49 [CE] INFO [MonitorServer] com.creditease.monitor.UAVServer.startSupporters Supporter[com.creditease.uav.supporters.AppProfileSupporter] starts SUCCESS [2017-09-14 18:34:49:436]1 I com.creditease.uav.mscp.plus.MSCPLog.doLog(48) 2017-09-14 18:34:49 [CE] INFO [MonitorServer] com.creditease.monitor.UAVServer.startSupporters Supporter[com.creditease.uav.apm.supporters.ThreadAnalysisSupporter] starts SUCCESS [2017-09-14 18:34:49:437]1 I com.creditease.uav.mscp.plus.MSCPLog.doLog(48) 2017-09-14 18:34:49 [CE] INFO [MonitorServer] com.creditease.monitor.UAVServer.start UAV Application Server started [2017-09-14 18:34:49:438]1 I com.creditease.agent.SystemStarter.startup(181) <--------------Micro-Service Computing Platform--------------> [2017-09-14 18:34:49:438]1 I com.creditease.agent.SystemStarter.startup(183) PROFILE=agent [2017-09-14 18:34:49:438]1 I com.creditease.agent.SystemStarter.startup(184) NODEUUID=908277848681431040 [2017-09-14 18:34:49:468]1 I com.creditease.agent.SystemStarter.checkNetworkReady(231) Node IP address=10.10.168.10 [2017-09-14 18:34:49:474]1 I com.creditease.agent.SystemStarter.createTimerWorkManager(609) System Timer Manager created [2017-09-14 18:34:49:478]1 I com.creditease.agent.SystemStarter.createSys1NQueueWorkerManager(629) System 1+N QueueWorker Manager created [2017-09-14 18:34:49:481]1 I com.creditease.agent.SystemStarter.createSystemActionEngineMgr(619) System ActionEngine Manager created [2017-09-14 18:34:49:483]1 I com.creditease.agent.SystemStarter.createSysForkjoinWorkerManager(639) System Forkjoin Worker Manager created [2017-09-14 18:34:49:485]1 I com.creditease.agent.SystemStarter.createSystemInvokerMgr(649) System Invoker Manager created [2017-09-14 18:34:49:490]1 I com.creditease.uav.mscp.plus.MSCPLog.doLog(48) 2017-09-14 18:34:49 [CE] INFO [MonitorServer] com.creditease.monitor.appfra.hook.spi.HookFactory.startHook START hook for proxy=com.creditease.uav.hook.jaxws.JaxWSHookProxy,detect=javax.xml.ws.Service,jar=com.creditease.uav.hook.jaxws-1.0.jar,evt=WEBCONTAINER_INIT [2017-09-14 18:34:49:663]1 I com.creditease.uav.mscp.plus.MSCPLog.doLog(48) 2017-09-14 18:34:49 [CE] INFO [MonitorServer] com.creditease.monitor.appfra.hook.spi.HookFactory.startHook START hook for proxy=com.creditease.uav.hook.jdbc.JdbcHookProxy,detect=java.sql.DriverManager,jar=com.creditease.uav.hook.jdbc-1.0.jar,evt=WEBCONTAINER_INIT [2017-09-14 18:34:49:703]1 I com.creditease.uav.mscp.plus.MSCPLog.doLog(48) 2017-09-14 18:34:49 [CE] INFO [MonitorServer] com.creditease.monitor.appfra.hook.spi.HookFactory.startHook START hook for proxy=com.creditease.uav.hook.httpclients.sync.HttpClientHookProxy,detect=org.apache.http.client.HttpClient,jar=com.creditease.uav.hook.httpclients-1.0-sync.jar,evt=WEBCONTAINER_INIT [2017-09-14 18:34:49:763]1 I com.creditease.uav.mscp.plus.MSCPLog.doLog(48) 2017-09-14 18:34:49 [CE] INFO [MonitorServer] com.creditease.monitor.appfra.hook.spi.HookFactory.startHook START hook for proxy=com.creditease.uav.hook.httpclients3.sync.HttpClient3HookProxy,detect=org.apache.commons.httpclient.HttpMethod,jar=com.creditease.uav.hook.httpclients-1.0-sync3.jar,evt=WEBCONTAINER_INIT [2017-09-14 18:34:49:781]1 I com.creditease.uav.mscp.plus.MSCPLog.doLog(48) 2017-09-14 18:34:49 [CE] INFO [MonitorServer] com.creditease.monitor.appfra.hook.spi.HookFactory.startHook START hook for proxy=com.creditease.uav.hook.httpclients.async.HttpAsyncClientHookProxy,detect=org.apache.http.nio.client.HttpAsyncClient,jar=com.creditease.uav.hook.httpclients-1.0-async.jar,evt=WEBCONTAINER_INIT [2017-09-14 18:34:49:821]1 I com.creditease.uav.mscp.plus.MSCPLog.doLog(48) 2017-09-14 18:34:49 [CE] INFO [MonitorServer] com.creditease.monitor.appfra.hook.spi.HookFactory.startHook START hook for proxy=com.creditease.uav.hook.redis.aredis.AredisHookProxy,detect=org.aredis.cache.AsyncRedisClient,jar=com.creditease.uav.hook.redis-1.0-aredis.jar,evt=WEBCONTAINER_INIT [2017-09-14 18:34:49:880]1 I com.creditease.uav.mscp.plus.MSCPLog.doLog(48) 2017-09-14 18:34:49 [CE] INFO [MonitorServer] com.creditease.monitor.appfra.hook.spi.HookFactory.startHook START hook for proxy=com.creditease.uav.hook.mongoclients.MongoClientHookProxy,detect=com.mongodb.Mongo,jar=com.creditease.uav.hook.mongoclients-1.0.jar,evt=WEBCONTAINER_INIT [2017-09-14 18:34:49:910]1 I com.creditease.uav.mscp.plus.MSCPLog.doLog(48) 2017-09-14 18:34:49 [CE] INFO [MonitorServer] com.creditease.monitor.appfra.hook.spi.HookFactory.startHook START hook for proxy=com.creditease.uav.hook.rocketmq.RocketmqHookProxy,detect=com.alibaba.rocketmq.client.MQAdmin,jar=com.creditease.uav.hook.mq-1.0-rocketmq.jar,evt=WEBCONTAINER_INIT [2017-09-14 18:34:50:289]1 I com.creditease.uav.mscp.plus.MSCPLog.doLog(48) 2017-09-14 18:34:50 [CE] INFO [MonitorServer] com.creditease.monitor.appfra.hook.spi.HookFactory.startHook START hook for proxy=com.creditease.uav.log.hook.Log4jHookProxy,detect=org.apache.log4j.Logger,jar=com.creditease.uav.loghook-1.0.jar,evt=WEBCONTAINER_INIT [2017-09-14 18:34:50:297]1 I com.creditease.uav.mscp.plus.MSCPLog.doLog(48) 2017-09-14 18:34:50 [CE] INFO [MonitorServer] com.creditease.monitor.appfra.hook.spi.HookFactory.startHook START hook for proxy=com.creditease.uav.hook.jdbc.pools.c3p0.C3P0HookProxy,detect=com.mchange.v2.c3p0.C3P0Registry,jar=com.creditease.uav.hook.jdbc-1.0.jar,evt=WEBCONTAINER_INIT [2017-09-14 18:35:03:67]1 I com.creditease.agent.feature.common.messaging.StandardMessagingBuilder.init(72) The message threshold is 30 kb [2017-09-14 18:35:03:789]1 E com.creditease.agent.SystemStarter$2.println(360) log4j:WARN No appenders could be found for logger (io.netty.util.internal.logging.InternalLoggerFactory). [2017-09-14 18:35:03:792]1 E com.creditease.agent.SystemStarter$2.println(360) log4j:WARN Please initialize the log4j system properly. [2017-09-14 18:35:03:793]1 E com.creditease.agent.SystemStarter$2.println(360) log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig for more info. [2017-09-14 18:35:04:423]1 I com.creditease.agent.feature.common.MessageProducerResourceComponent.initResource(58) UAV MessageProducer is started [2017-09-14 18:35:04:424]1 I com.creditease.agent.SystemStarter.installResources(420) load resource [messageproducer] from resourceClass [com.creditease.agent.feature.common.MessageProducerResourceComponent] [2017-09-14 18:35:05:991]1 I com.creditease.agent.SystemStarter.installResources(420) load resource [httpinvoke] from resourceClass [com.creditease.agent.feature.common.HttpInvokerResourceComponent] [2017-09-14 18:35:05:993]1 I com.creditease.agent.SystemStarter.installFeature(491) load feature [collectserver] with loader=default [2017-09-14 18:35:05:993]1 I com.creditease.agent.SystemStarter.installFeature(520) load feature [collectserver] components=com.creditease.uav.collect.server.GatherDataManager [2017-09-14 18:35:05:995]1 I com.creditease.agent.feature.common.messaging.StandardMessagingBuilder.init(72) The message threshold is 30 kb [2017-09-14 18:35:06:77]1 I com.creditease.uav.messaging.impl.RMQMessageConsumer.start(129) MessageConsumer[JQ_IVC] starts SUCCESS [2017-09-14 18:35:06:79]1 I com.creditease.uav.collect.server.GatherDataManager.start(79) GatherData Consumer [JQ_IVC] start [2017-09-14 18:35:06:99]1 I com.creditease.uav.messaging.impl.RMQMessageConsumer.start(129) MessageConsumer[JQ_SLW] starts SUCCESS [2017-09-14 18:35:06:99]1 I com.creditease.uav.collect.server.GatherDataManager.start(79) GatherData Consumer [JQ_SLW] start [2017-09-14 18:35:06:145]1 I com.creditease.uav.messaging.impl.RMQMessageConsumer.start(129) MessageConsumer[JQ_JTA] starts SUCCESS [2017-09-14 18:35:06:149]1 I com.creditease.uav.collect.server.GatherDataManager.start(79) GatherData Consumer [JQ_JTA] start [2017-09-14 18:35:06:174]1 I com.creditease.uav.messaging.impl.RMQMessageConsumer.start(129) MessageConsumer[JQ_UEM] starts SUCCESS [2017-09-14 18:35:06:176]1 I com.creditease.uav.collect.server.GatherDataManager.start(79) GatherData Consumer [JQ_UEM] start [2017-09-14 18:35:06:178]1 I com.creditease.uav.collect.server.GatherDataManager.start(82) GatherDataManager start [2017-09-14 18:35:06:183]1 I com.creditease.agent.SystemStarter.startComponent(594) start feature [collectserver] component [com.creditease.uav.collect.server.GatherDataManager] SUCCESS [2017-09-14 18:35:06:188]1 I com.creditease.agent.SystemStarter.installFeature(491) load feature [healthmanager] with loader=default [2017-09-14 18:35:06:191]1 I com.creditease.agent.SystemStarter.installFeature(520) load feature [healthmanager] components=com.creditease.uav.feature.HealthManager [2017-09-14 18:35:06:248]1 I com.creditease.uav.cache.redis.AredisAsyncService.<init>(121) AredisAsyncService线程池设置:min=10,max=20,queue=10 [2017-09-14 18:35:06:255]1 I com.creditease.uav.feature.HealthManager.start(113) HealthManagerProfileDataLifeKeeper started [2017-09-14 18:35:06:266]1 I com.creditease.uav.datastore.api.DataStoreFactory.build(112) DataStore[MT_Monitor] Created. [2017-09-14 18:35:06:270]1 I com.creditease.uav.datastore.api.DataStoreFactory.build(112) DataStore[MT_Profile] Created. [2017-09-14 18:35:06:271]1 I com.creditease.uav.datastore.api.DataStoreFactory.build(112) DataStore[MT_Notify] Created. [2017-09-14 18:35:06:272]1 I com.creditease.uav.datastore.api.DataStoreFactory.build(112) DataStore[MT_Node] Created. [2017-09-14 18:35:06:504]1 I com.creditease.uav.datastore.source.MongoDBDataSource.initSourceConnect(73) INIT MongoDBDataSource SUCCESS:db=profileDataStore,connection=127.0.0.1:27017 [2017-09-14 18:35:06:505]1 I com.creditease.uav.datastore.source.MongoDBDataSource.start(71) DataSource[com.creditease.uav.datastore.source.MongoDBDataSource] Started [2017-09-14 18:35:06:515]1 I com.creditease.uav.datastore.source.MongoDBDataSource.initSourceConnect(73) INIT MongoDBDataSource SUCCESS:db=notifyDataStore,connection=127.0.0.1:27017 [2017-09-14 18:35:06:515]1 I com.creditease.uav.datastore.source.MongoDBDataSource.start(71) DataSource[com.creditease.uav.datastore.source.MongoDBDataSource] Started [2017-09-14 18:35:06:519]1 D com.creditease.uav.datastore.source.OpentsdbDataSource.initSourceConnect(80) OpentsdbConnect HttpAsyncClient init success:maxConnectionPerRoute=10,maxTotalConnection=50,sockTimeout=5000,connectTimeout=5000,requestTimeout=5000 [2017-09-14 18:35:06:520]1 I com.creditease.uav.datastore.source.OpentsdbDataSource.start(71) DataSource[com.creditease.uav.datastore.source.OpentsdbDataSource] Started [2017-09-14 18:35:06:564]1 D com.creditease.uav.datastore.source.OpentsdbDataSource.initSourceConnect(80) OpentsdbConnect HttpAsyncClient init success:maxConnectionPerRoute=10,maxTotalConnection=50,sockTimeout=5000,connectTimeout=5000,requestTimeout=5000 [2017-09-14 18:35:06:565]1 I com.creditease.uav.datastore.source.OpentsdbDataSource.start(71) DataSource[com.creditease.uav.datastore.source.OpentsdbDataSource] Started [2017-09-14 18:35:06:566]1 I com.creditease.uav.feature.HealthManager.start(126) HealthManager DataStore Factory started [2017-09-14 18:35:06:675]1 I com.creditease.uav.feature.healthmanager.HealthManagerServerWorker.start(205) HttpServiceComponent[HealthMangerServerWorker] for feature[healthmanager] started SUCCESS: port=8765 [2017-09-14 18:35:06:690]1 I com.creditease.uav.feature.HealthManager.start(148) HealthManager DataStore HttpServer started [2017-09-14 18:35:06:699]1 I com.creditease.agent.feature.common.messaging.StandardMessagingBuilder.init(72) The message threshold is 30 kb [2017-09-14 18:35:06:765]1 I com.creditease.uav.messaging.impl.RMQMessageConsumer.start(129) MessageConsumer[MT_Monitor] starts SUCCESS [2017-09-14 18:35:06:766]1 I com.creditease.uav.feature.HealthManager.start(180) HealthManager MDFConsumer started [2017-09-14 18:35:06:876]1 I com.creditease.uav.messaging.impl.RMQMessageConsumer.start(129) MessageConsumer[MT_Notify] starts SUCCESS [2017-09-14 18:35:06:878]1 I com.creditease.uav.feature.HealthManager.start(192) HealthManager NotifyConsumer started [2017-09-14 18:35:06:995]1 I com.creditease.uav.messaging.impl.RMQMessageConsumer.start(129) MessageConsumer[MT_Profile] starts SUCCESS [2017-09-14 18:35:06:995]1 I com.creditease.uav.feature.HealthManager.start(204) HealthManager ProfileConsumer started [2017-09-14 18:35:07:14]1 I com.creditease.uav.messaging.impl.RMQMessageConsumer.start(129) MessageConsumer[MT_Node] starts SUCCESS [2017-09-14 18:35:07:15]1 I com.creditease.uav.feature.HealthManager.start(229) HealthManager NodeInfoConsumer started [2017-09-14 18:35:07:15]1 I com.creditease.agent.SystemStarter.startComponent(594) start feature [healthmanager] component [com.creditease.uav.feature.HealthManager] SUCCESS
监控代理程序:检查uav\uavagent.metadata\logs\P.agent.0.0.log,正常启动日志如下
Java HotSpot(TM) 64-Bit Server VM warning: Using incremental CMS is deprecated and will likely be removed in a future release Java HotSpot(TM) 64-Bit Server VM warning: UseCMSCompactAtFullCollection is deprecated and will likely be removed in a future release. Java HotSpot(TM) 64-Bit Server VM warning: CMSFullGCsBeforeCompaction is deprecated and will likely be removed in a future release. objc[891]: Class JavaLaunchHelper is implemented in both /Users/zhuang/workspace/work/uav/oneshotstart_mac/jdk1.8.0_121/bin/java and /Users/zhuang/workspace/work/uav/oneshotstart_mac/jdk1.8.0_121/jre/lib/libinstrument.dylib. One of the two will be used. Which one is undefined. <------------MOF Agent-------------> MOF.AgentArgs=null MOF.Root=/Users/zhuang/workspace/work/uav/oneshotstart_mac/uav/uavmof MOF.EngineType=com/creditease/mscp/boot/MSCPBoot MOF.ApplicationContainer=MSCP MOF.Interceptor[mscp] Install MonitorFramework Jars Start... MOF.Interceptor[mscp] Install to class loader with jar [file:/Users/zhuang/workspace/work/uav/oneshotstart_mac/uav/uavmof/com.creditease.uav/com.creditease.uav.annoscan-1.0.jar] MOF.Interceptor[mscp] Install to class loader with jar [file:/Users/zhuang/workspace/work/uav/oneshotstart_mac/uav/uavmof/com.creditease.uav/com.creditease.uav.fastjson-1.2.6.jar] MOF.Interceptor[mscp] Install to class loader with jar [file:/Users/zhuang/workspace/work/uav/oneshotstart_mac/uav/uavmof/com.creditease.uav/com.creditease.uav.helper-1.0.jar] MOF.Interceptor[mscp] Install to class loader with jar [file:/Users/zhuang/workspace/work/uav/oneshotstart_mac/uav/uavmof/com.creditease.uav/com.creditease.uav.logging-1.0.jar] MOF.Interceptor[mscp] Install to class loader with jar [file:/Users/zhuang/workspace/work/uav/oneshotstart_mac/uav/uavmof/com.creditease.uav/com.creditease.uav.monitorframework-1.0.jar] MOF.Interceptor[mscp] Install to class loader with jar [file:/Users/zhuang/workspace/work/uav/oneshotstart_mac/uav/uavmof/com.creditease.uav/com.creditease.uav.monitorframework.apm-1.0.jar] MOF.Interceptor[mscp] Install to class loader with jar [file:/Users/zhuang/workspace/work/uav/oneshotstart_mac/uav/uavmof/com.creditease.uav/com.creditease.uav.monitorframework.dproxy-1.0-dproxy.jar] MOF.Interceptor[mscp] Install to class loader with jar [file:/Users/zhuang/workspace/work/uav/oneshotstart_mac/uav/uavmof/com.creditease.uav/com.creditease.uav.monitorframework.dproxy-1.0-webservice.jar] MOF.Interceptor[mscp] Install to class loader with jar [file:/Users/zhuang/workspace/work/uav/oneshotstart_mac/uav/uavmof/com.creditease.uav/com.creditease.uav.uautils-1.20.jar] MOF.Interceptor[mscp] Install to class loader with jar [file:/Users/zhuang/workspace/work/uav/oneshotstart_mac/uav/uavmof/com.creditease.uav.extlib/8/javassist.jar] MOF.Interceptor[mscp] Install to class loader with jar [file:/Users/zhuang/workspace/work/uav/oneshotstart_mac/uav/uavmof/com.creditease.uav.mscp/common/com.creditease.uav.monitorframework.agent-1.0-mscpplus.jar] MOF.Interceptor[mscp] Install MonitorFramework Jars End. [2017-09-14 18:34:52:746] 1 I com.creditease.uav.mscp.plus.MSCPLog.doLog(48) 2017-09-14 18:34:52 [CE] INFO [MonitorServer] com.creditease.monitor.UAVServer.start <-----------------------------UAV Application Server started-------------------------------------> [2017-09-14 18:34:52:751] 1 I com.creditease.uav.mscp.plus.MSCPLog.doLog(48) 2017-09-14 18:34:52 [CE] INFO [MonitorServer] com.creditease.monitor.UAVServer.start UAVClassLoader Class Map: java.net.URLClassLoader@3b192d32 [2017-09-14 18:34:52:751] 1 I com.creditease.uav.mscp.plus.MSCPLog.doLog(48) 2017-09-14 18:34:52 [CE] INFO [MonitorServer] com.creditease.monitor.UAVServer.start MetaPath: /Users/zhuang/workspace/work/uav/oneshotstart_mac/uav/uavmof/../uavmof.metadata [2017-09-14 18:34:52:753] 1 I com.creditease.uav.mscp.plus.MSCPLog.doLog(48) 2017-09-14 18:34:52 [CE] INFO [MonitorServer] com.creditease.monitor.UAVMetaDataMgr.saveMetaData MetaData Saved: {"JAppGroup":"UNKNOWN","NetCardIndex":"0","NetCardName":"","JAppID":"MonitorAgent"} [2017-09-14 18:34:52:871] 1 I com.creditease.uav.mscp.plus.MSCPLog.doLog(48) 2017-09-14 18:34:52 [CE] INFO [MonitorServer] com.creditease.uav.supporters.InterceptFrameworkSupportor.start InterceptEventListener[com.creditease.uav.apm.invokechain.listeners.InvokeChainClsInjectListener] load SUCCESS [2017-09-14 18:34:53:38] 1 I com.creditease.uav.mscp.plus.MSCPLog.doLog(48) 2017-09-14 18:34:53 [CE] INFO [MonitorServer] com.creditease.uav.supporters.InterceptFrameworkSupportor.start InterceptEventListener[com.creditease.uav.appserver.listeners.AppFrkHookFactoryListener] load SUCCESS [2017-09-14 18:34:53:41] 1 I com.creditease.uav.mscp.plus.MSCPLog.doLog(48) 2017-09-14 18:34:53 [CE] INFO [MonitorServer] com.creditease.uav.supporters.InterceptFrameworkSupportor.start InterceptEventListener[com.creditease.uav.appserver.listeners.AppProfilingListener] load SUCCESS [2017-09-14 18:34:53:42] 1 I com.creditease.uav.mscp.plus.MSCPLog.doLog(48) 2017-09-14 18:34:53 [CE] INFO [MonitorServer] com.creditease.uav.supporters.InterceptFrameworkSupportor.start InterceptEventListener[com.creditease.uav.appserver.listeners.GlobalFilterDispatchListener] load SUCCESS [2017-09-14 18:34:53:46] 1 I com.creditease.uav.mscp.plus.MSCPLog.doLog(48) 2017-09-14 18:34:53 [CE] INFO [MonitorServer] com.creditease.uav.supporters.InterceptFrameworkSupportor.start InterceptEventListener[com.creditease.uav.monitorframework.webservice.listeners.WebServiceListener] load SUCCESS [2017-09-14 18:34:53:51] 1 I com.creditease.uav.mscp.plus.MSCPLog.doLog(48) 2017-09-14 18:34:53 [CE] INFO [MonitorServer] com.creditease.monitor.UAVServer.startSupporters Supporter[com.creditease.uav.supporters.InterceptFrameworkSupportor] starts SUCCESS [2017-09-14 18:34:53:275] 1 I com.creditease.uav.mscp.plus.MSCPLog.doLog(48) 2017-09-14 18:34:53 [CE] INFO [MonitorServer] com.creditease.monitor.UAVServer.startSupporters Supporter[com.creditease.uav.supporters.DataObserverSupporter] starts SUCCESS [2017-09-14 18:34:53:296] 1 I com.creditease.uav.mscp.plus.MSCPLog.doLog(48) 2017-09-14 18:34:53 [CE] INFO [MonitorServer] com.creditease.monitor.UAVServer.startSupporters Supporter[com.creditease.uav.supporters.DefaultMonitorSupporter] starts SUCCESS [2017-09-14 18:34:53:298] 1 I com.creditease.uav.mscp.plus.MSCPLog.doLog(48) 2017-09-14 18:34:53 [CE] INFO [MonitorServer] com.creditease.monitor.UAVServer.startSupporters Supporter[com.creditease.uav.supporters.DefaultClientMonitorSupporter] starts SUCCESS [2017-09-14 18:34:53:299] 1 I com.creditease.uav.mscp.plus.MSCPLog.doLog(48) 2017-09-14 18:34:53 [CE] INFO [MonitorServer] com.creditease.monitor.UAVServer.startSupporters Supporter[com.creditease.uav.supporters.AppProfileSupporter] starts SUCCESS [2017-09-14 18:34:53:301] 1 I com.creditease.uav.mscp.plus.MSCPLog.doLog(48) 2017-09-14 18:34:53 [CE] INFO [MonitorServer] com.creditease.monitor.UAVServer.startSupporters Supporter[com.creditease.uav.apm.supporters.ThreadAnalysisSupporter] starts SUCCESS [2017-09-14 18:34:53:302] 1 I com.creditease.uav.mscp.plus.MSCPLog.doLog(48) 2017-09-14 18:34:53 [CE] INFO [MonitorServer] com.creditease.monitor.UAVServer.start UAV Application Server started [2017-09-14 18:34:53:302] 1 I com.creditease.agent.SystemStarter.startup(181) <--------------Micro-Service Computing Platform--------------> [2017-09-14 18:34:53:303] 1 I com.creditease.agent.SystemStarter.startup(183) PROFILE=agent [2017-09-14 18:34:53:304] 1 I com.creditease.agent.SystemStarter.startup(184) NODEUUID=908277862824665088 [2017-09-14 18:34:53:363] 1 I com.creditease.agent.SystemStarter.checkNetworkReady(231) Node IP address=10.10.168.10 [2017-09-14 18:34:53:368] 1 I com.creditease.agent.SystemStarter.createTimerWorkManager(609) System Timer Manager created [2017-09-14 18:34:53:370] 1 I com.creditease.agent.SystemStarter.createSys1NQueueWorkerManager(629) System 1+N QueueWorker Manager created [2017-09-14 18:34:53:371] 1 I com.creditease.agent.SystemStarter.createSystemActionEngineMgr(619) System ActionEngine Manager created [2017-09-14 18:34:53:372] 1 I com.creditease.agent.SystemStarter.createSysForkjoinWorkerManager(639) System Forkjoin Worker Manager created [2017-09-14 18:34:53:373] 1 I com.creditease.agent.SystemStarter.createSystemInvokerMgr(649) System Invoker Manager created [2017-09-14 18:34:53:377] 1 I com.creditease.uav.mscp.plus.MSCPLog.doLog(48) 2017-09-14 18:34:53 [CE] INFO [MonitorServer] com.creditease.monitor.appfra.hook.spi.HookFactory.startHook START hook for proxy=com.creditease.uav.hook.jaxws.JaxWSHookProxy,detect=javax.xml.ws.Service,jar=com.creditease.uav.hook.jaxws-1.0.jar,evt=WEBCONTAINER_INIT [2017-09-14 18:34:53:676] 1 I com.creditease.uav.mscp.plus.MSCPLog.doLog(48) 2017-09-14 18:34:53 [CE] INFO [MonitorServer] com.creditease.monitor.appfra.hook.spi.HookFactory.startHook START hook for proxy=com.creditease.uav.hook.jdbc.JdbcHookProxy,detect=java.sql.DriverManager,jar=com.creditease.uav.hook.jdbc-1.0.jar,evt=WEBCONTAINER_INIT [2017-09-14 18:34:53:692] 1 I com.creditease.uav.mscp.plus.MSCPLog.doLog(48) 2017-09-14 18:34:53 [CE] INFO [MonitorServer] com.creditease.monitor.appfra.hook.spi.HookFactory.startHook START hook for proxy=com.creditease.uav.hook.httpclients.sync.HttpClientHookProxy,detect=org.apache.http.client.HttpClient,jar=com.creditease.uav.hook.httpclients-1.0-sync.jar,evt=WEBCONTAINER_INIT [2017-09-14 18:34:53:783] 1 I com.creditease.uav.mscp.plus.MSCPLog.doLog(48) 2017-09-14 18:34:53 [CE] INFO [MonitorServer] com.creditease.monitor.appfra.hook.spi.HookFactory.startHook START hook for proxy=com.creditease.uav.hook.httpclients.async.HttpAsyncClientHookProxy,detect=org.apache.http.nio.client.HttpAsyncClient,jar=com.creditease.uav.hook.httpclients-1.0-async.jar,evt=WEBCONTAINER_INIT [2017-09-14 18:34:53:842] 1 I com.creditease.uav.mscp.plus.MSCPLog.doLog(48) 2017-09-14 18:34:53 [CE] INFO [MonitorServer] com.creditease.monitor.appfra.hook.spi.HookFactory.startHook START hook for proxy=com.creditease.uav.hook.redis.aredis.AredisHookProxy,detect=org.aredis.cache.AsyncRedisClient,jar=com.creditease.uav.hook.redis-1.0-aredis.jar,evt=WEBCONTAINER_INIT [2017-09-14 18:34:53:872] 1 I com.creditease.uav.mscp.plus.MSCPLog.doLog(48) 2017-09-14 18:34:53 [CE] INFO [MonitorServer] com.creditease.monitor.appfra.hook.spi.HookFactory.startHook START hook for proxy=com.creditease.uav.hook.rocketmq.RocketmqHookProxy,detect=com.alibaba.rocketmq.client.MQAdmin,jar=com.creditease.uav.hook.mq-1.0-rocketmq.jar,evt=WEBCONTAINER_INIT [2017-09-14 18:35:01:704] 1 I com.creditease.agent.SystemStarter.installResources(420) load resource [httpinvoke] from resourceClass [com.creditease.agent.feature.common.HttpInvokerResourceComponent] [2017-09-14 18:35:01:708] 1 I com.creditease.agent.feature.common.messaging.StandardMessagingBuilder.init(72) The message threshold is 30 kb [2017-09-14 18:35:01:731] 1 E com.creditease.agent.SystemStarter$2.println(360) SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder". [2017-09-14 18:35:01:732] 1 E com.creditease.agent.SystemStarter$2.println(360) SLF4J: Defaulting to no-operation (NOP) logger implementation [2017-09-14 18:35:01:735] 1 E com.creditease.agent.SystemStarter$2.println(360) SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details. [2017-09-14 18:35:02:300] 1 I com.creditease.agent.feature.common.MessageProducerResourceComponent.initResource(58) UAV MessageProducer is started [2017-09-14 18:35:02:301] 1 I com.creditease.agent.SystemStarter.installResources(420) load resource [messageproducer] from resourceClass [com.creditease.agent.feature.common.MessageProducerResourceComponent] [2017-09-14 18:35:02:302] 1 I com.creditease.agent.SystemStarter.installFeature(491) load feature [threadanalysis] with loader=default [2017-09-14 18:35:02:302] 1 I com.creditease.agent.SystemStarter.installFeature(520) load feature [threadanalysis] components=com.creditease.uav.threadanalysis.client.ThreadAnalysisAgent [2017-09-14 18:35:02:356] 1 I com.creditease.agent.SystemStarter.startComponent(594) start feature [threadanalysis] component [com.creditease.uav.threadanalysis.client.ThreadAnalysisAgent] SUCCESS [2017-09-14 18:35:02:357] 1 I com.creditease.agent.SystemStarter.installFeature(491) load feature [procwatch] with loader=default [2017-09-14 18:35:02:358] 1 I com.creditease.agent.SystemStarter.installFeature(520) load feature [procwatch] components=com.creditease.agent.feature.ProcWatchAgent [2017-09-14 18:35:02:364] 1 I com.creditease.agent.SystemStarter.startComponent(594) start feature [procwatch] component [com.creditease.agent.feature.ProcWatchAgent] SUCCESS [2017-09-14 18:35:02:365] 1 I com.creditease.agent.SystemStarter.installFeature(491) load feature [monitoragent] with loader=default [2017-09-14 18:35:02:365] 1 I com.creditease.agent.SystemStarter.installFeature(520) load feature [monitoragent] components=com.creditease.agent.feature.MonitorAgent [2017-09-14 18:35:02:428] 1 I com.creditease.agent.feature.MonitorAgent.startAppServerMonitorDetector(161) ApplicationServer MonitorDetector started [2017-09-14 18:35:02:434] 1 I com.creditease.agent.feature.MonitorAgent.startAppServerProfileCatchWorker(103) ApplicationServer ProfileDataCatchWorker started [2017-09-14 18:35:02:435] 1 I com.creditease.agent.SystemStarter.startComponent(594) start feature [monitoragent] component [com.creditease.agent.feature.MonitorAgent] SUCCESS [2017-09-14 18:35:02:435] 1 I com.creditease.agent.SystemStarter.installFeature(491) load feature [hbclientagent] with loader=default [2017-09-14 18:35:02:435] 1 I com.creditease.agent.SystemStarter.installFeature(520) load feature [hbclientagent] components=com.creditease.agent.feature.HeartBeatClientAgent [2017-09-14 18:35:02:452] 1 I com.creditease.agent.feature.HeartBeatClientAgent.start(74) HeartBeatEventClientWorker started [2017-09-14 18:35:02:463] 1 I com.creditease.agent.feature.HeartBeatClientAgent.start(88) HeartBeatClientReqWorker started [2017-09-14 18:35:02:466] 1 I com.creditease.agent.SystemStarter.startComponent(594) start feature [hbclientagent] component [com.creditease.agent.feature.HeartBeatClientAgent] SUCCESS [2017-09-14 18:35:02:468] 1 I com.creditease.agent.SystemStarter.installFeature(491) load feature [collectclient] with loader=default [2017-09-14 18:35:02:469] 1 I com.creditease.agent.SystemStarter.installFeature(520) load feature [collectclient] components=com.creditease.uav.collect.client.CollectDataAgent [2017-09-14 18:35:02:497] 1 D com.creditease.uav.collect.client.copylogagent.ReliableTaildirEventReader.<init>(79) Initializing {ReliableTaildirEventReader} with directory= [2017-09-14 18:35:02:750] 1 I com.creditease.uav.collect.client.copylogagent.ReliableTaildirEventReader.<init>(93) tailFileTable: com.google.common.cache.LocalCache$LocalManualCache@57f3ad72 [2017-09-14 18:35:02:761] 1 I com.creditease.uav.collect.client.copylogagent.ReliableTaildirEventReader.<init>(94) headerTable: {} [2017-09-14 18:35:02:781] 1 I com.creditease.uav.collect.client.CollectDataAgent.start(181) CollectDataAgent Started. Config: interval=2000 [2017-09-14 18:35:02:782] 1 I com.creditease.agent.SystemStarter.startComponent(594) start feature [collectclient] component [com.creditease.uav.collect.client.CollectDataAgent] SUCCESS [2017-09-14 18:35:02:783] 1 I com.creditease.agent.SystemStarter.installFeature(491) load feature [notifyagent] with loader=default [2017-09-14 18:35:02:783] 1 I com.creditease.agent.SystemStarter.installFeature(520) load feature [notifyagent] components=com.creditease.agent.feature.GlobalNotificationAgent [2017-09-14 18:35:02:790] 1 I com.creditease.agent.feature.GlobalNotificationAgent.start(51) GlobalNotificationManager started [2017-09-14 18:35:02:792] 1 I com.creditease.agent.feature.GlobalNotificationAgent.start(63) NotificationEventRecordLiferKeeper started [2017-09-14 18:35:02:792] 1 I com.creditease.agent.SystemStarter.startComponent(594) start feature [notifyagent] component [com.creditease.agent.feature.GlobalNotificationAgent] SUCCESS [2017-09-14 18:35:02:794] 1 I com.creditease.agent.SystemStarter.installFeature(491) load feature [nodeoperagent] with loader=default [2017-09-14 18:35:02:794] 1 I com.creditease.agent.SystemStarter.installFeature(520) load feature [nodeoperagent] components=com.creditease.agent.feature.NodeOperAgent [2017-09-14 18:35:02:931] 1 I com.creditease.agent.feature.nodeopagent.NodeOperHttpServer.start(372) HttpServiceComponent[NodeOperHttpServer] for feature[nodeoperagent] started SUCCESS: port=10101 [2017-09-14 18:35:02:931] 1 I com.creditease.agent.feature.NodeOperAgent.start(97) NodeOperHttpServer started [2017-09-14 18:35:02:932] 1 I com.creditease.agent.SystemStarter.startComponent(594) start feature [nodeoperagent] component [com.creditease.agent.feature.NodeOperAgent] SUCCESS [2017-09-14 18:35:02:932] 1 I com.creditease.agent.SystemStarter.installFeature(491) load feature [logagent] with loader=default [2017-09-14 18:35:02:932] 1 I com.creditease.agent.SystemStarter.installFeature(520) load feature [logagent] components=com.creditease.agent.feature.LogAgent [2017-09-14 18:35:02:953] 79 W com.creditease.agent.feature.LogAgent$LogCatchScheduleWorker.run(98) ApplicationServer LogCatcher is not running [2017-09-14 18:35:02:986] 1 I com.creditease.agent.feature.LogAgent.start(245) ApplicationServer LogCatchScheduleWorker started [2017-09-14 18:35:02:988] 1 I com.creditease.agent.feature.LogAgent.start(256) LogAgent LogDataFrame.enable: false [2017-09-14 18:35:02:991] 1 I com.creditease.agent.feature.LogAgent.start(279) ApplicationServer LogPublishWorker started [2017-09-14 18:35:02:993] 1 I com.creditease.agent.feature.LogAgent.start(286) LogAgent Muti Thread enabled:true [2017-09-14 18:35:02:995] 1 I com.creditease.agent.SystemStarter.startComponent(594) start feature [logagent] component [com.creditease.agent.feature.LogAgent] SUCCESS [2017-09-14 18:35:02:995] 1 I com.creditease.agent.SystemStarter.installFeature(491) load feature [procscan] with loader=default [2017-09-14 18:35:02:996] 1 I com.creditease.agent.SystemStarter.installFeature(520) load feature [procscan] components=com.creditease.agent.feature.ProcDetectAgent [2017-09-14 18:35:03:2] 1 I com.creditease.agent.feature.ProcDetectAgent.start(64) OSProcessScanner Started [2017-09-14 18:35:03:3] 1 I com.creditease.agent.feature.ProcDetectAgent.start(73) NetworkIoDetector Started [2017-09-14 18:35:03:4] 1 I com.creditease.agent.SystemStarter.startComponent(594) start feature [procscan] component [com.creditease.agent.feature.ProcDetectAgent] SUCCESS [2017-09-14 18:35:03:5] 1 I com.creditease.uav.mscp.plus.MSCPLog.doLog(48) 2017-09-14 18:35:03 [CE] INFO [MonitorServer] com.creditease.monitor.appfra.hook.spi.HookFactory.startHook START hook for proxy=com.creditease.uav.hook.jaxws.JaxWSHookProxy,detect=javax.xml.ws.Service,jar=com.creditease.uav.hook.jaxws-1.0.jar,evt=WEBCONTAINER_STARTED [2017-09-14 18:35:03:8] 1 I com.creditease.uav.mscp.plus.MSCPLog.doLog(48) 2017-09-14 18:35:03 [CE] INFO [MonitorServer] com.creditease.monitor.appfra.hook.spi.HookFactory.startHook START hook for proxy=com.creditease.uav.hook.jdbc.JdbcHookProxy,detect=java.sql.DriverManager,jar=com.creditease.uav.hook.jdbc-1.0.jar,evt=WEBCONTAINER_STARTED [2017-09-14 18:35:03:9] 1 I com.creditease.uav.mscp.plus.MSCPLog.doLog(48) 2017-09-14 18:35:03 [CE] INFO [MonitorServer] com.creditease.monitor.appfra.hook.spi.HookFactory.startHook START hook for proxy=com.creditease.uav.hook.httpclients.sync.HttpClientHookProxy,detect=org.apache.http.client.HttpClient,jar=com.creditease.uav.hook.httpclients-1.0-sync.jar,evt=WEBCONTAINER_STARTED [2017-09-14 18:35:03:10] 1 I com.creditease.uav.mscp.plus.MSCPLog.doLog(48) 2017-09-14 18:35:03 [CE] INFO [MonitorServer] com.creditease.monitor.appfra.hook.spi.HookFactory.startHook START hook for proxy=com.creditease.uav.hook.httpclients.async.HttpAsyncClientHookProxy,detect=org.apache.http.nio.client.HttpAsyncClient,jar=com.creditease.uav.hook.httpclients-1.0-async.jar,evt=WEBCONTAINER_STARTED [2017-09-14 18:35:03:10] 1 I com.creditease.uav.mscp.plus.MSCPLog.doLog(48) 2017-09-14 18:35:03 [CE] INFO [MonitorServer] com.creditease.monitor.appfra.hook.spi.HookFactory.startHook START hook for proxy=com.creditease.uav.hook.redis.aredis.AredisHookProxy,detect=org.aredis.cache.AsyncRedisClient,jar=com.creditease.uav.hook.redis-1.0-aredis.jar,evt=WEBCONTAINER_STARTED [2017-09-14 18:35:03:11] 1 I com.creditease.uav.mscp.plus.MSCPLog.doLog(48) 2017-09-14 18:35:03 [CE] INFO [MonitorServer] com.creditease.monitor.appfra.hook.spi.HookFactory.startHook START hook for proxy=com.creditease.uav.hook.rocketmq.RocketmqHookProxy,detect=com.alibaba.rocketmq.client.MQAdmin,jar=com.creditease.uav.hook.mq-1.0-rocketmq.jar,evt=WEBCONTAINER_STARTED [2017-09-14 18:35:03:17] 1 I com.creditease.uav.mscp.plus.MSCPLog.doLog(48) 2017-09-14 18:35:03 [CE] INFO [MonitorServer] com.creditease.uav.appserver.listeners.AppProfilingListener.startProfiling Profiling of Application[ MonitorAgent] START... [2017-09-14 18:35:03:26] 1 I com.creditease.uav.mscp.plus.MSCPLog.doLog(48) 2017-09-14 18:35:03 [CE] INFO [MonitorServer] com.creditease.uav.appserver.listeners.AppProfilingListener.startProfiling Creating Profile Object of Application[ MonitorAgent] DONE [2017-09-14 18:35:03:35] 1 I com.creditease.uav.mscp.plus.MSCPLog.doLog(48) 2017-09-14 18:35:03 [CE] INFO [MonitorServer] com.creditease.uav.appserver.listeners.AppProfilingListener.startProfiling Profile Object [MonitorAgent] of Application[ MonitorAgent] is INSTALLED on data observer [2017-09-14 18:35:03:52] 81 D com.creditease.agent.feature.procdetectagent.OSProcessScanner.scanLinuxProcesses(180) Linux Process Scanning Shell Result: netstat: -t: unknown or uninstrumented protocol [2017-09-14 18:35:03:252] 81 D com.creditease.agent.feature.ProcWatchAgent.exchange(88) ProcWatchAgent exchange refresh keys: ["738","930","774","807","856","891"] [2017-09-14 18:35:03:533] 1 I com.creditease.uav.mscp.plus.MSCPLog.doLog(48) 2017-09-14 18:35:03 [CE] INFO [MonitorServer] com.creditease.uav.profiling.handlers.LogProfileHandler.profileFromLogProfileInfo Profile:LOGS FAILs as LogProfileInfo List is null or its size 0 [2017-09-14 18:35:03:536] 1 I com.creditease.uav.mscp.plus.MSCPLog.doLog(48) 2017-09-14 18:35:03 [CE] INFO [MonitorServer] com.creditease.uav.appserver.listeners.AppProfilingListener.startProfiling Profiling of Application[ MonitorAgent] DONE SUCCESS [2017-09-14 18:35:03:545] 1 I com.creditease.agent.SystemStarter.startup(205) Micro-Service Computing Platform started
检查Tomcat(包含AppHub和rockemq_console)是否启动正常,检查sup_apache-tomcat-8.5.9\logs\catalina.out,正常日志如下
14-Sep-2017 18:35:10.792 信息 [localhost-startStop-1] org.apache.catalina.startup.HostConfig.deployWAR Deployment of web application archive ./oneshotstart_mac/sup_apache-tomcat-8.5.9/webapps/rocket.war has finished in 843 ms 14-Sep-2017 18:35:10.799 信息 [localhost-startStop-1] org.apache.catalina.startup.HostConfig.deployDirectory Deploying web application directory ./oneshotstart_mac/uav/uavmof/com.creditease.uav 14-Sep-2017 18:35:10.799 警告 [localhost-startStop-1] org.apache.catalina.core.StandardContext.setPath A context path must either be an empty string or start with a '/' and do not end with a '/'. The path [com.creditease.uav] does not meet these criteria and has been changed to [/com.creditease.uav] 14-Sep-2017 18:35:10.883 信息 [localhost-startStop-1] org.apache.catalina.startup.HostConfig.deployDirectory Deployment of web application directory ./oneshotstart_mac/uav/uavmof/com.creditease.uav has finished in 84 ms 14-Sep-2017 18:35:10.892 信息 [main] org.apache.coyote.AbstractProtocol.start Starting ProtocolHandler [http-nio-8080] 14-Sep-2017 18:35:10.905 信息 [main] org.apache.coyote.AbstractProtocol.start Starting ProtocolHandler [ajp-nio-8009] 14-Sep-2017 18:35:10.906 信息 [main] org.apache.catalina.startup.Catalina.start Server startup in 12284 ms
HBase正常启动
日志检查Hbase是否启动正常,检查sup_hbase/logs,正常日志如下
2017-09-18 19:23:16,013 INFO [main] util.VersionInfo: HBase 1.1.4 2017-09-18 19:23:16,014 INFO [main] util.VersionInfo: Source code repository git://diocles.local/Volumes/hbase-1.1.4/hbase revision=14c0e77956f9bb4c6edf0378474264843e4a82c3 2017-09-18 19:23:16,014 INFO [main] util.VersionInfo: Compiled by ndimiduk on Wed Mar 16 21:18:26 PDT 2016 2017-09-18 19:23:16,014 INFO [main] util.VersionInfo: From source with checksum b4727595ad30c5f09c49cd7af68642ad 2017-09-18 19:23:16,311 INFO [main] master.HMasterCommandLine: Starting a zookeeper cluster 2017-09-18 19:23:16,339 INFO [main] server.ZooKeeperServer: Server environment:zookeeper.version=3.4.6-1569965, built on 02/20/2014 09:09 GMT 2017-09-18 19:23:16,339 INFO [main] server.ZooKeeperServer: Server environment:host.name=localhost 2017-09-18 19:23:16,339 INFO [main] server.ZooKeeperServer: Server environment:java.version=1.8.0_121 2017-09-18 19:23:16,339 INFO [main] server.ZooKeeperServer: Server environment:java.vendor=Oracle Corporation 2017-09-18 19:23:16,339 INFO [main] server.ZooKeeperServer: Server environment:java.home=/app/uavstack/oneshotstart_linux/jdk1.8.0_121/jre 2017-09-18 19:23:16,339 INFO [main] server.ZooKeeperServer: Server environment:java.class.path=/app/uavstack/oneshotstart_linux/sup_hbase/bin/../conf:/app/uavstack/oneshotstart_linux/jdk1.8.0_121/lib/tools.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/..:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/activation-1.1.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/antisamy-1.4.3.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/aopalliance-1.0.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/apacheds-i18n-2.0.0-M15.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/apacheds-kerberos-codec-2.0.0-M15.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/api-asn1-api-1.0.0-M20.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/api-util-1.0.0-M20.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/asm-3.1.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/avro-1.7.4.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/batik-css-1.7.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/batik-ext-1.7.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/batik-util-1.7.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/bsh-core-2.0b4.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/commons-beanutils-1.7.0.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/commons-beanutils-core-1.7.0.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/commons-cli-1.2.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/commons-codec-1.9.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/commons-collections-3.2.2.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/commons-compress-1.4.1.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/commons-configuration-1.6.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/commons-daemon-1.0.13.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/commons-digester-1.8.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/commons-el-1.0.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/commons-fileupload-1.2.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/commons-httpclient-3.1.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/commons-io-2.4.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/commons-lang-2.6.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/commons-logging-1.2.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/commons-math-2.2.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/commons-math3-3.1.1.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/commons-net-3.1.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/disruptor-3.3.0.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/esapi-2.1.0.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/findbugs-annotations-1.3.9-1.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/guava-12.0.1.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/guice-3.0.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/guice-servlet-3.0.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/hadoop-annotations-2.5.1.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/hadoop-auth-2.5.1.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/hadoop-client-2.5.1.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/hadoop-common-2.5.1.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/hadoop-hdfs-2.5.1.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/hadoop-mapreduce-client-app-2.5.1.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/hadoop-mapreduce-client-common-2.5.1.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/hadoop-mapreduce-client-core-2.5.1.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/hadoop-mapreduce-client-jobclient-2.5.1.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/hadoop-mapreduce-client-shuffle-2.5.1.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/hadoop-yarn-api-2.5.1.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/hadoop-yarn-client-2.5.1.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/hadoop-yarn-common-2.5.1.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/hadoop-yarn-server-common-2.5.1.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/hbase-annotations-1.1.4.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/hbase-annotations-1.1.4-tests.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/hbase-client-1.1.4.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/hbase-common-1.1.4.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/hbase-common-1.1.4-tests.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/hbase-examples-1.1.4.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/hbase-hadoop2-compat-1.1.4.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/hbase-hadoop-compat-1.1.4.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/hbase-it-1.1.4.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/hbase-it-1.1.4-tests.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/hbase-prefix-tree-1.1.4.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/hbase-procedure-1.1.4.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/hbase-protocol-1.1.4.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/hbase-resource-bundle-1.1.4.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/hbase-rest-1.1.4.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/hbase-server-1.1.4.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/hbase-server-1.1.4-tests.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/hbase-shell-1.1.4.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/hbase-thrift-1.1.4.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/htrace-core-3.1.0-incubating.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/httpclient-4.2.5.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/httpcore-4.1.3.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/jackson-core-asl-1.9.13.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/jackson-jaxrs-1.9.13.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/jackson-mapper-asl-1.9.13.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/jackson-xc-1.9.13.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/jamon-runtime-2.3.1.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/jasper-compiler-5.5.23.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/jasper-runtime-5.5.23.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/javax.inject-1.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/java-xmlbuilder-0.4.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/jaxb-api-2.2.2.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/jaxb-impl-2.2.3-1.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/jcodings-1.0.8.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/jersey-client-1.9.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/jersey-core-1.9.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/jersey-guice-1.9.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/jersey-json-1.9.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/jersey-server-1.9.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/jets3t-0.9.0.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/jettison-1.3.3.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/jetty-6.1.26.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/jetty-sslengine-6.1.26.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/jetty-util-6.1.26.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/joni-2.1.2.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/jruby-complete-1.6.8.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/jsch-0.1.42.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/jsp-2.1-6.1.14.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/jsp-api-2.1-6.1.14.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/jsr305-1.3.9.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/junit-4.12.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/leveldbjni-all-1.8.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/libthrift-0.9.0.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/log4j-1.2.17.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/metrics-core-2.2.0.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/nekohtml-1.9.12.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/netty-3.2.4.Final.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/netty-all-4.0.23.Final.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/paranamer-2.3.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/protobuf-java-2.5.0.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/servlet-api-2.5-6.1.14.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/servlet-api-2.5.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/slf4j-api-1.7.7.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/slf4j-log4j12-1.7.5.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/snappy-java-1.0.4.1.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/spymemcached-2.11.6.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/xalan-2.7.0.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/xml-apis-1.3.03.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/xml-apis-ext-1.3.04.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/xmlenc-0.52.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/xom-1.2.5.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/xz-1.0.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/zookeeper-3.4.6.jar: 2017-09-18 19:23:16,339 INFO [main] server.ZooKeeperServer: Server environment:java.library.path=/usr/java/packages/lib/amd64:/usr/lib64:/lib64:/lib:/usr/lib 2017-09-18 19:23:16,339 INFO [main] server.ZooKeeperServer: Server environment:java.io.tmpdir=/tmp 2017-09-18 19:23:16,340 INFO [main] server.ZooKeeperServer: Server environment:java.compiler=<NA> 2017-09-18 19:23:16,340 INFO [main] server.ZooKeeperServer: Server environment:os.name=Linux 2017-09-18 19:23:16,340 INFO [main] server.ZooKeeperServer: Server environment:os.arch=amd64 2017-09-18 19:23:16,340 INFO [main] server.ZooKeeperServer: Server environment:os.version=2.6.32-573.el6.x86_64 2017-09-18 19:23:16,340 INFO [main] server.ZooKeeperServer: Server environment:user.name=root 2017-09-18 19:23:16,340 INFO [main] server.ZooKeeperServer: Server environment:user.home=/root 2017-09-18 19:23:16,340 INFO [main] server.ZooKeeperServer: Server environment:user.dir=/app/uavstack/oneshotstart_linux/sup_hbase/bin 2017-09-18 19:23:16,356 INFO [main] server.ZooKeeperServer: Created server with tickTime 2000 minSessionTimeout 4000 maxSessionTimeout 40000 datadir /app/uavstack/oneshotstart_linux/sup_hbase/bin/../data/zk/zookeeper_0/version-2 snapdir /app/uavstack/oneshotstart_linux/sup_hbase/bin/../data/zk/zookeeper_0/version-2 2017-09-18 19:23:16,371 INFO [main] server.NIOServerCnxnFactory: binding to port 0.0.0.0/0.0.0.0:2181 2017-09-18 19:23:16,477 INFO [NIOServerCxn.Factory:0.0.0.0/0.0.0.0:2181] server.NIOServerCnxnFactory: Accepted socket connection from /127.0.0.1:53657 2017-09-18 19:23:16,483 INFO [NIOServerCxn.Factory:0.0.0.0/0.0.0.0:2181] server.NIOServerCnxn: Processing stat command from /127.0.0.1:53657 2017-09-18 19:23:16,486 INFO [Thread-2] server.NIOServerCnxn: Stat command output 2017-09-18 19:23:16,487 INFO [main] zookeeper.MiniZooKeeperCluster: Started MiniZooKeeperCluster and ran successful 'stat' on client port=2181 2017-09-18 19:23:16,487 INFO [main] master.HMasterCommandLine: Starting up instance of localHBaseCluster; master=1, regionserversCount=1 2017-09-18 19:23:16,488 INFO [Thread-2] server.NIOServerCnxn: Closed socket connection for client /127.0.0.1:53657 (no session established for client) 2017-09-18 19:23:16,722 WARN [main] util.NativeCodeLoader: Unable to load native-hadoop library for your platform... using builtin-java classes where applicable 2017-09-18 19:23:16,932 INFO [main] regionserver.RSRpcServices: master/localhost/127.0.0.1:0 server-side HConnection retries=350 2017-09-18 19:23:17,095 INFO [main] ipc.SimpleRpcScheduler: Using deadline as user call queue, count=3 2017-09-18 19:23:17,114 INFO [main] ipc.RpcServer: master/localhost/127.0.0.1:0: started 10 reader(s) listening on port=39567 2017-09-18 19:23:17,179 INFO [main] impl.MetricsConfig: loaded properties from hadoop-metrics2-hbase.properties 2017-09-18 19:23:17,201 INFO [main] impl.MetricsSystemImpl: Scheduled snapshot period at 10 second(s). 2017-09-18 19:23:17,201 INFO [main] impl.MetricsSystemImpl: HBase metrics system started 2017-09-18 19:23:17,463 INFO [main] zookeeper.RecoverableZooKeeper: Process identifier=master:39567 connecting to ZooKeeper ensemble=127.0.0.1:2181 2017-09-18 19:23:17,468 INFO [main] zookeeper.ZooKeeper: Client environment:zookeeper.version=3.4.6-1569965, built on 02/20/2014 09:09 GMT 2017-09-18 19:23:17,468 INFO [main] zookeeper.ZooKeeper: Client environment:host.name=localhost 2017-09-18 19:23:17,468 INFO [main] zookeeper.ZooKeeper: Client environment:java.version=1.8.0_121 2017-09-18 19:23:17,468 INFO [main] zookeeper.ZooKeeper: Client environment:java.vendor=Oracle Corporation 2017-09-18 19:23:17,468 INFO [main] zookeeper.ZooKeeper: Client environment:java.home=/app/uavstack/oneshotstart_linux/jdk1.8.0_121/jre 2017-09-18 19:23:17,468 INFO [main] zookeeper.ZooKeeper: Client environment:java.class.path=/app/uavstack/oneshotstart_linux/sup_hbase/bin/../conf:/app/uavstack/oneshotstart_linux/jdk1.8.0_121/lib/tools.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/..:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/activation-1.1.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/antisamy-1.4.3.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/aopalliance-1.0.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/apacheds-i18n-2.0.0-M15.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/apacheds-kerberos-codec-2.0.0-M15.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/api-asn1-api-1.0.0-M20.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/api-util-1.0.0-M20.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/asm-3.1.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/avro-1.7.4.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/batik-css-1.7.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/batik-ext-1.7.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/batik-util-1.7.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/bsh-core-2.0b4.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/commons-beanutils-1.7.0.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/commons-beanutils-core-1.7.0.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/commons-cli-1.2.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/commons-codec-1.9.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/commons-collections-3.2.2.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/commons-compress-1.4.1.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/commons-configuration-1.6.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/commons-daemon-1.0.13.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/commons-digester-1.8.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/commons-el-1.0.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/commons-fileupload-1.2.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/commons-httpclient-3.1.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/commons-io-2.4.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/commons-lang-2.6.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/commons-logging-1.2.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/commons-math-2.2.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/commons-math3-3.1.1.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/commons-net-3.1.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/disruptor-3.3.0.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/esapi-2.1.0.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/findbugs-annotations-1.3.9-1.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/guava-12.0.1.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/guice-3.0.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/guice-servlet-3.0.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/hadoop-annotations-2.5.1.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/hadoop-auth-2.5.1.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/hadoop-client-2.5.1.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/hadoop-common-2.5.1.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/hadoop-hdfs-2.5.1.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/hadoop-mapreduce-client-app-2.5.1.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/hadoop-mapreduce-client-common-2.5.1.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/hadoop-mapreduce-client-core-2.5.1.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/hadoop-mapreduce-client-jobclient-2.5.1.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/hadoop-mapreduce-client-shuffle-2.5.1.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/hadoop-yarn-api-2.5.1.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/hadoop-yarn-client-2.5.1.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/hadoop-yarn-common-2.5.1.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/hadoop-yarn-server-common-2.5.1.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/hbase-annotations-1.1.4.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/hbase-annotations-1.1.4-tests.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/hbase-client-1.1.4.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/hbase-common-1.1.4.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/hbase-common-1.1.4-tests.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/hbase-examples-1.1.4.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/hbase-hadoop2-compat-1.1.4.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/hbase-hadoop-compat-1.1.4.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/hbase-it-1.1.4.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/hbase-it-1.1.4-tests.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/hbase-prefix-tree-1.1.4.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/hbase-procedure-1.1.4.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/hbase-protocol-1.1.4.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/hbase-resource-bundle-1.1.4.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/hbase-rest-1.1.4.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/hbase-server-1.1.4.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/hbase-server-1.1.4-tests.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/hbase-shell-1.1.4.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/hbase-thrift-1.1.4.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/htrace-core-3.1.0-incubating.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/httpclient-4.2.5.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/httpcore-4.1.3.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/jackson-core-asl-1.9.13.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/jackson-jaxrs-1.9.13.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/jackson-mapper-asl-1.9.13.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/jackson-xc-1.9.13.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/jamon-runtime-2.3.1.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/jasper-compiler-5.5.23.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/jasper-runtime-5.5.23.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/javax.inject-1.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/java-xmlbuilder-0.4.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/jaxb-api-2.2.2.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/jaxb-impl-2.2.3-1.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/jcodings-1.0.8.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/jersey-client-1.9.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/jersey-core-1.9.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/jersey-guice-1.9.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/jersey-json-1.9.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/jersey-server-1.9.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/jets3t-0.9.0.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/jettison-1.3.3.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/jetty-6.1.26.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/jetty-sslengine-6.1.26.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/jetty-util-6.1.26.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/joni-2.1.2.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/jruby-complete-1.6.8.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/jsch-0.1.42.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/jsp-2.1-6.1.14.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/jsp-api-2.1-6.1.14.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/jsr305-1.3.9.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/junit-4.12.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/leveldbjni-all-1.8.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/libthrift-0.9.0.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/log4j-1.2.17.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/metrics-core-2.2.0.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/nekohtml-1.9.12.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/netty-3.2.4.Final.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/netty-all-4.0.23.Final.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/paranamer-2.3.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/protobuf-java-2.5.0.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/servlet-api-2.5-6.1.14.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/servlet-api-2.5.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/slf4j-api-1.7.7.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/slf4j-log4j12-1.7.5.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/snappy-java-1.0.4.1.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/spymemcached-2.11.6.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/xalan-2.7.0.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/xml-apis-1.3.03.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/xml-apis-ext-1.3.04.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/xmlenc-0.52.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/xom-1.2.5.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/xz-1.0.jar:/app/uavstack/oneshotstart_linux/sup_hbase/bin/../lib/zookeeper-3.4.6.jar: 2017-09-18 19:23:17,469 INFO [main] zookeeper.ZooKeeper: Client environment:java.library.path=/usr/java/packages/lib/amd64:/usr/lib64:/lib64:/lib:/usr/lib 2017-09-18 19:23:17,469 INFO [main] zookeeper.ZooKeeper: Client environment:java.io.tmpdir=/tmp 2017-09-18 19:23:17,469 INFO [main] zookeeper.ZooKeeper: Client environment:java.compiler=<NA> 2017-09-18 19:23:17,469 INFO [main] zookeeper.ZooKeeper: Client environment:os.name=Linux 2017-09-18 19:23:17,469 INFO [main] zookeeper.ZooKeeper: Client environment:os.arch=amd64 2017-09-18 19:23:17,469 INFO [main] zookeeper.ZooKeeper: Client environment:os.version=2.6.32-573.el6.x86_64 2017-09-18 19:23:17,469 INFO [main] zookeeper.ZooKeeper: Client environment:user.name=root 2017-09-18 19:23:17,469 INFO [main] zookeeper.ZooKeeper: Client environment:user.home=/root 2017-09-18 19:23:17,469 INFO [main] zookeeper.ZooKeeper: Client environment:user.dir=/app/uavstack/oneshotstart_linux/sup_hbase/bin 2017-09-18 19:23:17,470 INFO [main] zookeeper.ZooKeeper: Initiating client connection, connectString=127.0.0.1:2181 sessionTimeout=10000 watcher=master:395670x0, quorum=127.0.0.1:2181, baseZNode=/hbase
OpenTSDB正常启动
检查OpenTSDB是否启动正常,检查/var/log/opentsdb/*,正常日志如下
2017-09-18 18:24:01,902 [main] INFO [TSDMain.main] - Starting. 2017-09-18 18:24:01,908 [main] INFO [TSDMain.main] - net.opentsdb.tools 2.3.0 built at revision cac608a (MINT) 2017-09-18 18:24:01,908 [main] INFO [TSDMain.main] - Built on 2016/12/29 13:57:15 +0000 by root@centos.localhost:/home/hobbes/opentsdb_OFFICIAL/build 2017-09-18 18:24:01,930 [main] INFO [Config.loadConfig] - Successfully loaded configuration file: src/opentsdb.conf 2017-09-18 18:24:01,987 [main] INFO [Config.loadConfig] - Successfully loaded configuration file: src/opentsdb.conf 2017-09-18 18:24:02,148 [main] WARN [PluginLoader.loadPlugins] - Unable to locate any plugins of the type: net.opentsdb.query.filter.TagVFilter 2017-09-18 18:24:02,179 [main] INFO [ZooKeeper.logEnv] - Client environment:zookeeper.version=3.4.6-1569965, built on 02/20/2014 09:09 GMT 2017-09-18 18:24:02,179 [main] INFO [ZooKeeper.logEnv] - Client environment:host.name=localhost 2017-09-18 18:24:02,179 [main] INFO [ZooKeeper.logEnv] - Client environment:java.version=1.7.0_45 2017-09-18 18:24:02,180 [main] INFO [ZooKeeper.logEnv] - Client environment:java.vendor=Oracle Corporation 2017-09-18 18:24:02,180 [main] INFO [ZooKeeper.logEnv] - Client environment:java.home=/opt/jdk1.7.0_45/jre 2017-09-18 18:24:02,180 [main] INFO [ZooKeeper.logEnv] - Client environment:java.class.path=.:/opt/jdk1.7.0_45/lib/tools.jar:/app/uavstack/oneshotstart_linux/sup_opentsdb/build/third_party/jexl/commons-logging-1.1.1.jar:/app/uavstack/oneshotstart_linux/sup_opentsdb/build/third_party/guava/guava-18.0.jar:/app/uavstack/oneshotstart_linux/sup_opentsdb/build/third_party/slf4j/log4j-over-slf4j-1.7.7.jar:/app/uavstack/oneshotstart_linux/sup_opentsdb/build/third_party/logback/logback-classic-1.0.13.jar:/app/uavstack/oneshotstart_linux/sup_opentsdb/build/third_party/logback/logback-core-1.0.13.jar:/app/uavstack/oneshotstart_linux/sup_opentsdb/build/third_party/jackson/jackson-annotations-2.4.3.jar:/app/uavstack/oneshotstart_linux/sup_opentsdb/build/third_party/jackson/jackson-core-2.4.3.jar:/app/uavstack/oneshotstart_linux/sup_opentsdb/build/third_party/jackson/jackson-databind-2.4.3.jar:/app/uavstack/oneshotstart_linux/sup_opentsdb/build/third_party/javacc/javacc-6.1.2.jar:/app/uavstack/oneshotstart_linux/sup_opentsdb/build/third_party/jexl/commons-jexl-2.1.1.jar:/app/uavstack/oneshotstart_linux/sup_opentsdb/build/third_party/jgrapht/jgrapht-core-0.9.1.jar:/app/uavstack/oneshotstart_linux/sup_opentsdb/build/third_party/netty/netty-3.9.4.Final.jar:/app/uavstack/oneshotstart_linux/sup_opentsdb/build/third_party/slf4j/slf4j-api-1.7.7.jar:/app/uavstack/oneshotstart_linux/sup_opentsdb/build/third_party/suasync/async-1.4.0.jar:/app/uavstack/oneshotstart_linux/sup_opentsdb/build/third_party/apache/commons-math3-3.4.1.jar:/app/uavstack/oneshotstart_linux/sup_opentsdb/build/third_party/hbase/asynchbase-1.7.2.jar:/app/uavstack/oneshotstart_linux/sup_opentsdb/build/third_party/protobuf/protobuf-java-2.5.0.jar:/app/uavstack/oneshotstart_linux/sup_opentsdb/build/third_party/zookeeper/zookeeper-3.4.6.jar:/app/uavstack/oneshotstart_linux/sup_opentsdb/build/tsdb-2.3.0.jar:/app/uavstack/oneshotstart_linux/sup_opentsdb/src 2017-09-18 18:24:02,180 [main] INFO [ZooKeeper.logEnv] - Client environment:java.library.path=/usr/java/packages/lib/amd64:/usr/lib64:/lib64:/lib:/usr/lib 2017-09-18 18:24:02,180 [main] INFO [ZooKeeper.logEnv] - Client environment:java.io.tmpdir=/tmp 2017-09-18 18:24:02,180 [main] INFO [ZooKeeper.logEnv] - Client environment:java.compiler=<NA> 2017-09-18 18:24:02,181 [main] INFO [ZooKeeper.logEnv] - Client environment:os.name=Linux 2017-09-18 18:24:02,181 [main] INFO [ZooKeeper.logEnv] - Client environment:os.arch=amd64 2017-09-18 18:24:02,181 [main] INFO [ZooKeeper.logEnv] - Client environment:os.version=2.6.32-573.el6.x86_64 2017-09-18 18:24:02,181 [main] INFO [ZooKeeper.logEnv] - Client environment:user.name=root 2017-09-18 18:24:02,181 [main] INFO [ZooKeeper.logEnv] - Client environment:user.home=/root 2017-09-18 18:24:02,181 [main] INFO [ZooKeeper.logEnv] - Client environment:user.dir=/app/uavstack/oneshotstart_linux/sup_opentsdb 2017-09-18 18:24:02,183 [main] INFO [ZooKeeper.<init>] - Initiating client connection, connectString=127.0.0.1:2181 sessionTimeout=5000 watcher=org.hbase.async.HBaseClient$ZKClient@7efd05c7 2017-09-18 18:24:02,199 [main] INFO [HBaseClient.getDeferredRoot] - Need to find the -ROOT- region 2017-09-18 18:24:02,203 [main-SendThread(127.0.0.1:2181)] INFO [ClientCnxn.logStartConnect] - Opening socket connection to server 127.0.0.1/127.0.0.1:2181. Will not attempt to authenticate using SASL (unknown error) 2017-09-18 18:24:02,208 [main-SendThread(127.0.0.1:2181)] INFO [ClientCnxn.primeConnection] - Socket connection established to 127.0.0.1/127.0.0.1:2181, initiating session 2017-09-18 18:24:02,223 [main-SendThread(127.0.0.1:2181)] INFO [ClientCnxn.onConnected] - Session establishment complete on server 127.0.0.1/127.0.0.1:2181, sessionid = 0x15e9481fdbe0007, negotiated timeout = 5000 2017-09-18 18:24:02,264 [main-EventThread] INFO [HBaseClient.handleMetaZnode] - Connecting to .META. region @ 127.0.0.1:58596 2017-09-18 18:24:02,321 [main-EventThread] INFO [ZooKeeper.close] - Session: 0x15e9481fdbe0007 closed 2017-09-18 18:24:02,322 [main-EventThread] INFO [ClientCnxn.run] - EventThread shut down 2017-09-18 18:24:02,405 [AsyncHBase I/O Worker #1] INFO [HBaseClient.discoverRegion] - Added client for region RegionInfo(table="tsdb", region_name="tsdb,,1505730186286.b7099e6a80edd745f01ed7b8f2302232.", stop_key=""), which was added to the regions cache. Now we know that RegionClient@468860247(chan=[id: 0xd8eddd6c, /127.0.0.1:60788 => /127.0.0.1:58596], #pending_rpcs=0, #batched=0, #rpcs_inflight=1) is hosting 1 region. 2017-09-18 18:24:02,407 [AsyncHBase I/O Worker #1] INFO [HBaseClient.discoverRegion] - Added client for region RegionInfo(table="tsdb-uid", region_name="tsdb-uid,,1505730184985.9e76f7649a0ba740e902be349f51d623.", stop_key=""), which was added to the regions cache. Now we know that RegionClient@468860247(chan=[id: 0xd8eddd6c, /127.0.0.1:60788 => /127.0.0.1:58596], #pending_rpcs=0, #batched=0, #rpcs_inflight=1) is hosting 2 regions. 2017-09-18 18:24:02,460 [main] INFO [RpcManager.initializeBuiltinRpcs] - Mode: rw, HTTP UI Enabled: true, HTTP API Enabled: true 2017-09-18 18:24:02,500 [main] INFO [RpcHandler.<init>] - TSD is in rw mode 2017-09-18 18:24:02,500 [main] INFO [RpcHandler.<init>] - CORS domain list was empty, CORS will not be enabled 2017-09-18 18:24:02,501 [main] INFO [RpcHandler.<init>] - Loaded CORS headers (Authorization, Content-Type, Accept, Origin, User-Agent, DNT, Cache-Control, X-Mx-ReqToken, Keep-Alive, X-Requested-With, If-Modified-Since) 2017-09-18 18:24:02,505 [main] INFO [ConnectionManager.<init>] - TSD concurrent connection limit set to: 0 2017-09-18 18:24:02,509 [main] WARN [PluginLoader.loadPlugins] - Unable to locate any plugins of the type: net.opentsdb.tsd.HttpSerializer 2017-09-18 18:24:02,533 [main] INFO [TSDMain.main] - Ready to serve on /0.0.0.0:4243