Skip to main content

Hyperic Agent 4.5 Installation


Error:

hq-agent wrapper failure. Service not installed

wrapper | Starting the Hyperic HQ Agent service...
wrapper | Unable to start the service - The system cannot find the file specifi
ed. (0x2)
- No token file found, waiting for Agent to initialize
- No token file found, waiting for Agent to initialize


Solution:
Please try the following steps:
Please go to C:\Program Files\agent-4.0.1 and delete the data directory
C:\Program Files\agent-4.0.1\bin>hq-agent.bat install
C:\Program Files\agent-4.0.1\bin>hq-agent.bat start

Comments

Popular posts from this blog

Installing Nagios 4 on Ubuntu 14 04 LTS

Create a list of local administrators with PowerShell

1.        Create folder :    C:\Temp 2.        Save a text file with the name servers.txt and add server names 3.        Create a .PS1 file with the name “ Get-LocalGroupMembers . ps1 ”with below PowerShell code: **********************************************************     [ CmdletBinding () ] Param (     [ Parameter (    ValueFromPipeline = $true ,                 ValueFromPipelineByPropertyName = $true                 ) ]     [ string []]     $ComputerName = $env:ComputerName ,     [ Parameter () ]     [ string ]     $LocalGroupName = "Administrators" ,   ...