在Centos 6 64bit 上安装 Hyperic HQ 5.8.2.1 中文版
原文:https://my.oschina.net/hyperichq/blog/306791
环境描述:
[test@tester ~]$ cat /etc/issue
CentOS release 6.5 (Final)
Kernel \r on an \m [test@tester ~]$ uname -a
Linux tester 2.6.-431.11..el6.x86_64 # SMP Tue Mar :: UTC x86_64 x86_64 x86_64 GNU/Linux
用户名:test
口令: test
IP: 192.168.1.103
工作目录: /work
安装文件准备:
下载地址: http://www.innovatedigital.com/download/hyperic_index.asp
下载安装文件: hyperic-hq-installer-x86-64-linux-5.8.2.1.tar.gz ,放在 /work/temp目录下
这里备注一下,我安装的是5.8.6这个版本,需要分别下载 hyperic-hq-installer-x86-64-linux-5.8.6.tar.gz 和 hyperic-hq-agent-x86-64-linux-5.8.6.tar.gz两个包,最后面的工作才能继续
安装过程
[test@tester work]$ cd /work
[test@tester work]$ mkdir hq-zh
[test@tester work]$ cd temp
[test@tester temp]$ tar xzvf hyperic-hq-installer-x86-64-linux-5.8.2.1.tar.gz
hyperic-hq-installer-5.8.2.1/installer/bin/hq-migration-5.8.2.1.zip
hyperic-hq-installer-5.8.2.1/installer/lib/
。。。。。。
此处略去N多行
。。。。。。
hyperic-hq-installer-5.8.2.1/COPYING.txt
hyperic-hq-installer-5.8.2.1/setup.sh
[test@tester temp]$ cd hyperic-hq-installer-5.8.2.1/
[test@tester hyperic-hq-installer-5.8.2.1]$ ./setup.sh
Unpacking JRE to temporary directory /tmp/jre
Please ignore references to missing tools.jar
Unable to locate tools.jar. Expected to find it in /tmp/lib/tools.jar
Loading taskdefs...
Taskdefs loaded
Initializing Hyperic HQ 5.8.2.1 Installation...
Choose which software to install:
1: Hyperic HQ Server
2: Hyperic HQ Agent
You may enter multiple choices, separated by commas.
1,2
HQ server installation path [default '/home/hyperic']:
/work/hq-zh
Enter the fully qualified domain name of the SMTP server that HQ will use to send email messages [default '192.168.1.103']: Enter the email address that HQ will use as the sender for email messages [default 'hqadmin@168.1.103']: Choices:
1: Yes
2: No
Would you like to use an auto generated encryption key to encrypt the database password? [default '1']: What should the username be for the initial admin user? [default 'hqadmin']: What should the password be for the initial admin user?: (输入初始口令 hqadmin)
(again): (再次输入初始口令 hqadmin)
What should the email address be for the initial admin user? [default 'hqadmin@168.1.103']: HQ agent installation path [default '/work/hq-zh']: Loading install configuration...
Install configuration loaded.
Preparing to install...
Validating agent install configuration...
Validating server install configuration...
Checking server webapp port...
Checking server secure webapp port...
Verifying admin user properties
Validating server DB configuration...
Installing the agent...
Looking for previous installation
Unpacking /work/temp/hyperic-hq-installer-5.8.2.1/hyperic-hq-agent-x86-64-linux-5.8.2.1.tar.gz to: /work/hq-zh/agent-5.8.2.1...
Setting permissions on /work/hq-zh/agent-5.8.2.1...
Setting permissions on /work/hq-zh/agent-5.8.2.1/conf/agent.properties...
Setting permissions on agent binaries...
Fixing line endings on text files...
--------------------------------------------------------------------------------
Installation Complete:
Agent successfully installed to: /work/hq-zh
--------------------------------------------------------------------------------
You can now start your HQ agent by running this command: /work/hq-zh/agent-5.8.2.1/bin/hq-agent.sh start
Installing the server...
Unpacking server to: /work/hq-zh...
Creating server configuration files...
Using "small" installing profile...
Copying binaries and libraries to server installation...
Copying server configuration file...
Copying server db-upgrade files...
Copying server libs...
Setting up server database... Now login to another terminal as root and execute this script: /work/temp/hyperic-hq-installer-5.8.2.1/installer/data/hqdb/tune-os.sh This script sets up the proper shared memory settings to run the
built-in database. Press Enter after you run the script to continue this installation.
打开另一终端窗口,进入到 root 用户
[test@tester ~]$ su
Password:
[root@tester test]# /work/temp/hyperic-hq-installer-5.8.2.1/installer/data/hqdb/tune-os.sh
/etc/sysctl.conf defined an adequate kernel.shmmax, not changing anything
Tuning completed successfully!
[root@tester test]#
回到原窗口:
Setting up JDBC driver...
Copying database files...
Configuring database...
Loading taskdefs...
Taskdefs loaded
Starting repopulation of configuration table...
Waiting for built-in database to start (on port 9432)...
Starting built-in database...
Preparing database...
Loading taskdefs...
Taskdefs loaded
Loading taskdefs...
Taskdefs loaded
Loading taskdefs...
Taskdefs loaded
Waiting for server to stop...
Stopping built-in database...
Built-in database stopped.
Installing the server JRE ...
Unpacking JRE amd64-linux-1.7_51.tar.gz to: /work/hq-zh/server-5.8.2.1...
Setting permissions on /work/hq-zh/server-5.8.2.1...
Setting permissions on server binaries...
Fixing line endings on text files...
--------------------------------------------------------------------------------
Installation Complete:
Server successfully installed to: /work/hq-zh/server-5.8.2.1
-------------------------------------------------------------------------------- You can now start your HQ server by running this command: /work/hq-zh/server-5.8.2.1/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://192.168.1.103:7080/
username: 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:
/work/temp/hyperic-hq-installer-5.8.2.1/installer/logs/hq-install.log Deleting temporary JRE
[test@tester hyperic-hq-installer-5.8.2.1]$
运行
[test@tester hyperic-hq-installer-5.8.2.1]$ cd /work/hq-zh/server-5.8.2.1/bin
[test@tester bin]$ ./hq-server.sh start
Starting HQ Server...
[test@tester bin]$ cd /work/hq-zh/agent-5.8.2.1/bin
[test@tester bin]$ ./hq-agent.sh start
Starting HQ Agent...... running (20732).
[ Running agent setup ]
What is the HQ server IP address: 192.168.1.103
Should Agent communications to HQ always be secure [default=yes]:
What is the HQ server SSL port [default=7443]:
- Testing secure connection ... Success
What is your HQ login [default=hqadmin]:
What is your HQ password:
What IP should HQ use to contact the agent [default=192.168.1.103]:
What port should HQ use to contact the agent [default=2144]:
- Received temporary auth token from agent
- Registering agent with HQ
The server to agent communication channel is using a self-signed certificate and could not be verified
Are you sure you want to continue connecting? [default=no]: yes
- HQ gave us the following agent token
1409038071406-733078726523143911-738338007125620383
- Informing agent of new HQ server
- Validating
- Successfully setup agent
[test@tester bin]$
使用
打开浏览器访问 http://X192.168.1.103:7080/
在Centos 6 64bit 上安装 Hyperic HQ 5.8.2.1 中文版的更多相关文章
- 在CentOS或RHEL上安装Nux Dextop仓库
介绍 Nux Dextop是类似CentOS.RHEL.ScientificLinux的第三方RPM仓库(比如:Ardour,Shutter等等).目前,Nux Dextop对CentOS/RHEL ...
- CentOS 6.5上安装MySQL-Cluster
参考博文: CentOS 6.2下MySQL Cluster 7.2 配置数据库集群 CentOS 6.5上安装MySQL-Cluster 7.3.4过程笔记--下一步学习 MySQL Cluster ...
- CentOS 6.9上安装mysql-5.6.36
CentOS 6.9上安装mysql-5.6.36 1.准备数据存放的文件系统 新建一个逻辑卷,并将其挂载至特定目录即可.这里不再给出过程. 这里假设其逻辑卷的挂载目录为/data,而后需要创建/da ...
- 记录CentOS 7.4 上安装MySQL&MariaDB&Redis&Mongodb
记录CentOS 7.4 上安装MySQL&MariaDB&Redis&Mongodb 前段时间我个人Google服务器意外不能用,并且我犯了一件很低级的错误,直接在gcp讲服 ...
- [转]在Linux CentOS 6.6上安装Python 2.7.9
在Linux CentOS 6.6上安装Python 2.7.9 查看python安装版本 python -V yum中最新的也是Python 2.6.6,所以只能下载Python 2.7.9的源代码 ...
- Windows 7 64bit上安装Oracle Database 12c [INS-30131] 错误的解决方法
Windows 7 64bit上安装Oracle Database 12c,出现以下错误: 解决方法: 第一步:控制面板>所有控制面板项>管理工具>服务>SERVER 启动 ...
- 在 CentOS 7.2 上安装 ODOO 10 (2018-10-09 持续更新)
在 CentOS 7.2 上安装 ODOO 10 更新系统 yum update 安装 EPEL 源 1 yum install -y epel-release 安装依赖组件 yum install ...
- CentOS 6.9上安装mysql-5.6.37
CentOS 6.9上安装mysql-5.6.37 1.准备数据存放的文件系统 新建一个逻辑卷,并将其挂载至特定目录即可.这里不再给出过程. 这里假设其逻辑卷的挂载目录为/data,而后需要创建/da ...
- CentOS 6.9上安装Mysql 5.7.18 安装
CentOS 6.9上安装Mysql 5.7.18 安装 下载地址:https://dev.mysql.com/get/Downloads/MySQL-5.7/mysql-5.7.18-linux-g ...
随机推荐
- 不一样的go语言-构建系统与构件系统
前言 代码的最后一步是构建成计算机可识别的二进制数据,然后才得以在计算机上运行.如果你曾经写过有点规模(至少数十个以上独立的源文件,且需要依赖第三方包)C语言项目,必定对C语言项目的构建过程印象深 ...
- Java线程池深入理解
之前面试baba系时遇到一个相对简单的多线程编程题,即"3个线程循环输出ADC",自己答的并不是很好,深感内疚,决定更加仔细的学习<并发编程的艺术>一书,到达掌握的强度 ...
- npm包的更新说明,你还敢不看吗
npm包的更新说明,你还敢不看吗 前言 平时工作少不了依赖一些第三方的npm包,站在各位大牛的肩膀上来更好的写bug,此外还可以学习各位大佬们的各种设计思路和优雅实现.不过npm包虽好,但使用之前也要 ...
- WinForm中DataGridView导出为Excel(快速版)
public static void ExportExcel(DataGridView myDGV, string fileName) { string saveFileName = fileName ...
- 洛谷P1886 滑动窗口(POJ.2823 Sliding Window)(区间最值)
To 洛谷.1886 滑动窗口 To POJ.2823 Sliding Window 题目描述 现在有一堆数字共N个数字(N<=10^6),以及一个大小为k的窗口.现在这个从左边开始向右滑动,每 ...
- Python3基础之基本问题
问题1: 加法运算符重载 如果我们有两个列表对象,我要将两个列表中的元素依下标进行加和,我们该如何实现? 1列表对象的加法 list1 = [1,2,3,4] list2 = [10,20,30,40 ...
- Cocos Creator 安装和启动,Dashboard 的介绍
1,去官网:http://www.cocos.com/download,或者直接百度cocos2d官网,进入下载对应版本:[参考来源:官方文档] 2,下载完成后直接解压即可.以window举例, 运行 ...
- spring源码分析系列 (5) spring BeanFactoryPostProcessor拓展类PropertyPlaceholderConfigurer、PropertySourcesPlaceholderConfigurer解析
更多文章点击--spring源码分析系列 主要分析内容: 1.拓展类简述: 拓展类使用demo和自定义替换符号 2.继承图UML解析和源码分析 (源码基于spring 5.1.3.RELEASE分析) ...
- 【转载】IntelliJ IDEA 内存优化最佳实践
本文转自 http://blog.oneapm.com/apm-tech/426.html [编者按]本文作者在和同事的一次讨论中发现,对 IntelliJ IDEA 内存采用不同的设置方案,会对 I ...
- 域名DNS解析工具ping/nslookup/dig/host
常见 DNS 记录的类型 类型 目的 A 地址记录,用来指定域名的 IPv4 地址,如果需要将域名指向一个 IP 地址,就需要添加 A 记录. AAAA 用来指定主机名(或域名)对应的 IPv6 地址 ...