`
javatgo
  • 浏览: 1112859 次
  • 性别: Icon_minigender_2
  • 来自: 北京
文章分类
社区版块
存档分类
最新评论

Hyperic HQ 4.1.2 on Mac OS X 10.5.7 Installation Task

 
阅读更多

今天在mac os x 10.5.7上部署了一个监控系统,类似ibm tivoli monitering 以及itcam。以下是安装过程

jaminwmdemacbook:hyperic-hq-installer jianmingxu$ ./setup.sh
Initializing Hyperic HQ 4.1.2 Installation...
Loading taskdefs...
Taskdefs loaded
Choose which software to install:
1: Hyperic HQ Server
2: Hyperic HQ Agent
You may enter multiple choices, separated by commas.
HQ server installation path [default '/home/hyperic']:
/home/hyperic
server.installdir does not exist: /home/hyperic
HQ server installation path [default '/home/hyperic']:
/Applications/hyperic
Enter the fully qualified domain name of the SMTP server that HQ will use to send email messages [default 'jaminwmdemacbook.local']:

Loading install configuration...
Install configuration loaded.
Preparing to install...
Validating server install configuration...
Checking server webapp port...
Checking server secure webapp port...
Checking server JRMP port...
Checking server JNP port...
Verifying admin user properties
Validating server DB configuration...
Installing the server...
Unpacking server to: /Applications/hyperic/server-4.1.2...
Creating server configuration files...
Copying binaries and libraries to server installation...
Copying server configuration file...
Copying server control file...
Copying server binaries...
Copying server libs...
Setting up server database...
Setting up JDBC driver...
Copying database files...
Configuring database...
Starting repopulation of configuration table...
Waiting for built-in database to start (on port 9432)...
Starting built-in database...
Preparing database...
Waiting for server to stop...
Stopping built-in database...
Built-in database stopped.
Setting permissions on server binaries...
Fixing line endings on text files...
--------------------------------------------------------------------------------
Installation Complete:
Server successfully installed to: /Applications/hyperic/server-4.1.2
--------------------------------------------------------------------------------


You can now start your HQ server by running this command:

/Applications/hyperic/server-4.1.2/bin/hq-server.sh start

Note that the first time the HQ server starts up it may take several minutes
to initialize. Subsequent startups will be much faster.

Once the HQ server reports that it has successfully started, you can log in
to your HQ server at:

http://jaminwmdemacbook.local:7080/
username: hqadmin
password: hqadmin

To change your password, log in to the HQ server, click the "Administration"
link, choose "List Users", then click on the "hqadmin" user.


Setup completed.
A copy of the output shown above has been saved to:
/Users/jianmingxu/Desktop/hyperic-hq-installer/installer-4.1.2/./hq-install.log

jaminwmdemacbook:hyperic-hq-installer jianmingxu$


jaminwmdemacbook:bin jianmingxu$ pwd
/Applications/hyperic/server-4.1.2/bin
jaminwmdemacbook:bin jianmingxu$ hq-server.sh start
-bash: hq-server.sh: command not found
jaminwmdemacbook:bin jianmingxu$ ls -al
total 184
drwxr-xr-x 2 jianmingxu admin 510 6 10 22:03 .
drwxr-xr-x 10 jianmingxu admin 374 6 10 22:03 ..
-rwxr-xr-x 1 jianmingxu admin 8837 6 10 22:03 ant
-rwxr-xr-x 1 jianmingxu admin 4217 6 10 22:03 ant.bat
-rwxr-xr-x 1 jianmingxu admin 2687 6 10 22:03 ant.cmd
-rwxr-xr-x 1 jianmingxu admin 3263 6 10 22:03 antenv.cmd
-rwxr-xr-x 1 jianmingxu admin 577 6 10 22:03 db-archive.sh
-rwxr-xr-x 1 jianmingxu admin 221 6 10 22:03 db-createdb.sh
-rwxr-xr-x 1 jianmingxu admin 219 6 10 22:03 db-dropdb.sh
-rwxr-xr-x 1 jianmingxu admin 222 6 10 22:03 db-psql.sh
-rwxr-xr-x 1 jianmingxu admin 478 6 10 22:03 db-start.sh
-rwxr-xr-x 1 jianmingxu admin 239 6 10 22:03 db-stop.sh
-rwxr-xr-x 1 jianmingxu admin 24576 5 7 06:47 hq-server.exe
-rwxr-xr-x 1 jianmingxu admin 10204 5 7 06:47 hq-server.sh
-rwxr-xr-x 1 jianmingxu admin 327 5 7 06:47 hq-threaddump.sh
jaminwmdemacbook:bin jianmingxu$ ./hq-server.sh
Usage: ./hq-server.sh {start|stop}
jaminwmdemacbook:bin jianmingxu$ ./hq-server.sh start
Starting HQ server...
Initializing HQ server configuration...
Checking jboss jndi port...
Checking jboss mbean port...
Starting HQ built-in database...
HQ built-in database started.
Booting the HQ server (Using JAVA_OPTS=-XX:MaxPermSize=192m -Xmx512m -Xms512m)...
HQ server booted.
Login to HQ at: http://127.0.0.1:7080/
jaminwmdemacbook:bin jianmingxu$

jaminwmdemacbook:hyperic-hq-installer jianmingxu$ ./setup.sh
Initializing Hyperic HQ 4.1.2 Installation...
Loading taskdefs...
Taskdefs loaded
Choose which software to install:
1: Hyperic HQ Server
2: Hyperic HQ Agent
You may enter multiple choices, separated by commas.
2
HQ agent installation path [default '/home/hyperic']:
/Applications/hypericAgent
agent.installdir does not exist: /Applications/hypericAgent
HQ agent installation path [default '/home/hyperic']:
/Applications/hyperic
Loading install configuration...
Install configuration loaded.
Preparing to install...
Validating agent install configuration...
Installing the agent...
Looking for previous installation
Unpacking agent to: /Applications/hyperic/agent-4.1.2...
Setting permissions on agent binaries...
Fixing line endings on text files...
--------------------------------------------------------------------------------
Installation Complete:
Agent successfully installed to: /Applications/hyperic/agent-4.1.2
--------------------------------------------------------------------------------

You can now start your HQ agent by running this command:

/Applications/hyperic/agent-4.1.2/bin/hq-agent.sh start


Setup completed.
A copy of the output shown above has been saved to:
/Users/jianmingxu/Desktop/hyperic-hq-installer/installer-4.1.2/./hq-install.log

jaminwmdemacbook:hyperic-hq-installer jianmingxu$
jaminwmdemacbook:Applications jianmingxu$ pwd
/Applications
jaminwmdemacbook:Applications jianmingxu$ cd hyperic/
lsjaminwmdemacbook:hyperic jianmingxu$ ls
agent-4.1.2 server-4.1.2
jaminwmdemacbook:hyperic jianmingxu$ cd agent-4.1.2/
jaminwmdemacbook:agent-4.1.2 jianmingxu$ cd bin
jaminwmdemacbook:bin jianmingxu$ ./hq-agent.sh start
-n Starting HQ Agent...

- Unable to load agent token file. Generating a new one ... Done
[ Running agent setup ]
What is the HQ server IP address: 127.0.0.1
Should Agent communications to HQ always be secure [default=no]: no
What is the HQ server port [default=7080]: 7080
- Testing insecure connection ... Success
What is your HQ login [default=hqadmin]: hqadmin
What is your HQ password:
What IP should HQ use to contact the agent [default=192.168.1.120]: 192.168.1.120
What port should HQ use to contact the agent [default=2144]: 2144
- Received temporary auth token from agent
- Registering agent with HQ
- HQ gave us the following agent token
1244643344990-7574237227885028630-8716539742061968876
- Informing agent of new HQ server
- Validating
- Successfully setup agent
jaminwmdemacbook:bin jianmingxu$

jaminwmdemacbook:bin jianmingxu$ ./hq-agent.sh stop
Stopping HQ Agent...
Stopped HQ Agent.
jaminwmdemacbook:bin jianmingxu$ cd ..
jaminwmdemacbook:agent-4.1.2 jianmingxu$ cd ..
jaminwmdemacbook:hyperic jianmingxu$ cd server-4.1.2/
jaminwmdemacbook:server-4.1.2 jianmingxu$ cd bin
jaminwmdemacbook:bin jianmingxu$ ./hq-server.sh stop
Stopping HQ server...
HQ server PID 3116 exited
Stopping HQ built-in database...
server stopped
HQ server is stopped.
jaminwmdemacbook:bin jianmingxu$

以下是hq的几个特点:比ibm tivoli monitering要简单些,我使用的是开源版本

Hyperic HQ自动发现所有软件和硬件的Asset Inventory

  • 正确地模拟和显示硬件,软件和服务的关系
  • Hyperic HQ自动侦测硬件和软件的每一个侧面,包括内存,CPU,磁盘,网络设备,版本和配置信息
  • Hyperic HQ对配置或者被控制资源的关键属性的任何变化而产生事件,用来向IT管理员报警
  • Hyperic HQ通过一个单独的,易于操纵的视图检查硬件和软件资源的健康情况

Hyperic HQ监测基础设施的每一层

  • Hyperic HQ不通过侵入的方式,从基础设施中生产的硬件、网络和应用等层中搜集实时的和历史上的数据
  • Hyperic HQ定义智能警报帮助在问题造成损失之前,能够预见问题
  • Hyperic HQ通过定制的指示视图比较和关联不同资源的度量值,帮助你理解他们之间的相互作用关系
  • Hyperic HQ用单一的视图将资源和资源组关键的度量值显示出来,可以快速地评估环境的状态

Hyperic HQ跟踪所有日志,配置,安全事件数据

  • 报告由所有被管理资源产生日志事件的实时和历史的详细信息
  • 跟踪所有主机或应用的配置,帮助分析影响和控制变化
  • 加强安全策略,侦测和记录物理的或远程的对环境中任何主机的访问
  • 在环境中的任何地方,可以定义警报去跟踪详细的日志消息
  • Hyperic HQ可以将任何日志事件,配置改变或安全事件与计算环境的可用性相关联

Hyperic HQ通过报警和纠正的控制行动等方式管理可用性

  • Hyperic HQ可以定义任意简单或精细的条件产生警报
  • Hyperic HQ可以覆盖从操作系统的故障到服务层的响应时间等所有技术范围
  • Hyperic HQ对于发生在你环境中的所有日志,配置和安全事件等定义警报
  • Hyperic HQ根据需要,可以在设备上执行生产级的控制活动
  • 串行或者并行的地控制资源组合
  • 不必编写代码,就可以将定制的控制脚本集成到HQ

Hyperic HQ扩展和定制,最优地管理你特有的环境需求

  • 使用拖拽portlets设置你的操作仪表板,并很容易使用配置控制
  • 创建组,帮助管理和测量大环境的健康
  • Hyperic HQ通过定义应用的方式进行管理,可以将特定应用所涉及到的特定硬件,软件和服务等作为一个整体进行管理
  • 扩展 Hyperic HQ强大的管理portal.可以通过易于描述的XML或任何语言与Hyperic PDK相配合,扩展到管理所有的软件和硬件设备
分享到:
评论

相关推荐

    Hyperic HQ安装配置指南(第一部分)

    该中文手册是了解Hyperic HQ安装,配置,以及内部结构的必备资料,本手册还包括了常见问题解答,并在网上开设论坛解答用户在安装配置HQ时所遇到的问题。 由Hyperic HQ 国内独家代理商北京铸锐数码科技有限公司提供。...

    Hyperic HQ 系统安装指南

    Hyperic HQ是一个开源(GPL授权)IT资源管理平台。 Hyperic HQ 可以监控和管理: •操作系统:AIX,HP/UX,Linux,Solaris,Windows,Mac OSX,FreeBSD •Web服务器:Apache,Microsoft IIS,Sun ONE Web Server •...

    Hyperic HQ 在linux下的安装教程

    Hyperic HQ 在redhat6.4下的安装教程

    HypericHQ产品及功能介绍

    Hyperic HQ是工业级,功能丰富的产品,提供监测生产环境中软件的各技术栈的可视性,包括开源的,商业的或混合软件。因而,公司现在能够集中管理在下一代数据中心中所运用的快速发展的技术,能够更为充分和有效地避免...

    hyperic hq server

    hyperic hq server 管理配置

    Hyperic_HQ

    Hyperic HQ 应用监控解决方案,Hyperic HQ的作用,Hyperic HQ一些监控指标

    Hyperic HQ使用说明.doc

    Hyperic HQ使用说明,介绍Hyperic HQ使用的一些概念,说明,操作手册等。

    从源码编译构建Hyperic HQ

    NULL 博文链接:https://swanky-yao.iteye.com/blog/1923328

    Hyperic HQ使用说明

    Hyperic HQ 是一个开源的IT管理框架,让用户使用统一的界面来管理各种不同的IT技术。

    Hyperic HQ安装和配置入门指南

    Hyperic HQ安装和配置入门指南,介绍hyperic的安装过程、启动,基本功能。

    Hyperic HQ

    NULL 博文链接:https://ring-feng.iteye.com/blog/998769

    Hyperic HQ简介

    Hyperic HQ功能简介,使用图文并茂的方式对hyperic的功能做了简单介绍,是学习hyperic入门的资料

    hypericHq汉化(版本是HQ的3.2.1)

    HQ汉化_版本是HQ的3.2.1 ApplicationResources.properties 博文链接:https://hongliangpan.iteye.com/blog/225730

    Hyperic hq 4.4.0 静默安装包(内附网盘地址)

    这是我自己做的Hyperic-hq-4.4.0的一键安装版本(Win32环境),不需要任何其他操作,默认安装在D:\Hyperic 文件夹下。记住,安装server期间如果出现重启现象,请在安装前就关闭360安全卫士(设置不当有冲突),且...

    Hyperic HQ简体中文-开源

    Hyperic简体中文版,与英文版尽量同步。欢迎使用,并提出建议。 中文手册(收费) http://www.innovatedigital.com/hypericmanual 问题反馈: http://www.oschina.net/p/hyperic+hq support@InnovateDigital.com

    Hyperic hqapi 使用手册

    Hyperic HQAPI最新的使用参考手册.一书在手,万事不愁!

    hyperic-mule-plugin

    hyperic hq mule esb plugin

    hyperic-sigar-1.6.4.zip

    sigar全名是System Information Gatherer And Reporter,Sigar是Hyperic-hq产品的基础包,是Hyperic HQ主要的数据收集组件。它用来从许多平台收集系统和处理信息。这些平台包括:Linux, Windows, Solaris, AIX, HP-UX...

Global site tag (gtag.js) - Google Analytics