Quantcast
Channel: VMware Communities : Popular Discussions - Hyperic User Forums
Viewing all 52618 articles
Browse latest View live

IIS 7 Configuration Error - Plugin error: 403

$
0
0

I am trying to get monitoring working for IIS 7. At first I got a 404 then when I fixed the hostname I get a 403 error. I assume this is a permission error but there is no capability to add credentials on the properties page.

 

The agent log shows:

14-01-2013 15:55:37,505 EST ERROR [commandlistener-generic-0] [MeasurementCommandsService@248] Error getting real time measurement: Plugin error: 403 (Microsoft-IIS/7.5)
14-01-2013 15:55:38,301 EST ERROR [commandlistener-generic-0] [MeasurementCommandsService@248] Error getting real time measurement: Plugin error: 404 (Microsoft-HTTPAPI/2.0)
14-01-2013 15:55:38,987 EST ERROR [commandlistener-generic-0] [MeasurementCommandsService@248] Error getting real time measurement: Plugin error: 404 (Microsoft-HTTPAPI/2.0)
14-01-2013 15:55:40,563 EST WARN  [commandlistener-generic-0] [CommandListener@223] Error invoking method
org.hyperic.hq.agent.AgentRemoteException: Failed to unschedule metrics for entity 3:10606: No measurement schedule for: 3:10606
    at org.hyperic.hq.measurement.agent.server.MeasurementCommandsService.unscheduleMeasurements(MeasurementCommandsService.java:433)
    at org.hyperic.hq.measurement.agent.server.MeasurementCommandsServer.dispatchCommand(MeasurementCommandsServer.java:167)
    at org.hyperic.hq.agent.server.CommandDispatcher.processRequest(CommandDispatcher.java:113)
    at org.hyperic.hq.agent.server.CommandListener.handleConn(CommandListener.java:216)
    at org.hyperic.hq.agent.server.CommandListener.access$100(CommandListener.java:57)
    at org.hyperic.hq.agent.server.CommandListener$AgentDispatchTask.run(CommandListener.java:200)
    at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
    at java.lang.Thread.run(Thread.java:662)

 

Anybody know how I can get resolve this?

 

Thanks . . . Murray


getProcState may return wrong value on consecutive calls

$
0
0

Hi,

 

In my application code I found that consecutive calls to getProcState may return wrong value.

 

My box is a Linux amd64, and this test case fails with both 1.6.4 and 1.6.5:

 

package test;

import org.hyperic.sigar.ProcState;
import org.hyperic.sigar.Sigar;
import org.hyperic.sigar.SigarException;

public class ProcStateTest {

     private Process process;     private Sigar sigar;     private long processPid;     public static void main(String[] args) throws Exception {          ProcStateTest test = new ProcStateTest();          try {               test.setup();               test.testIsRunning();          } finally {               test.tearDown();          }     }     public void setup() throws Exception {          process = Runtime.getRuntime().exec("watch echo hellosigar");          if (!isAlive(process)) {               throw new RuntimeException("process is not alive");          }          sigar = new Sigar();          processPid = processPid();          if (processPid == -1) {               throw new RuntimeException("process not found");          }     }     public void tearDown() {          if (process != null) {               process.destroy();          }     }     public void testIsRunning() throws Exception {          if (!isRunning(getProcState())) {               throw new RuntimeException("Expected process to be running");          }          process.destroy();          do {               Thread.sleep(5000);          } while (isAlive(process));          for (int i = 0; i < 10; i++) {               if (isRunning(getProcState())) {                    throw new RuntimeException(                              "Expected process to be down at step[" + i + "]");               }          }     }     private long processPid() throws SigarException {          long[] pids = sigar.getProcList();          long processPid = -1;          for (long pid : pids) {               String[] procArgs = sigar.getProcArgs(pid);               for (String procArg : procArgs) {                    if (procArg != null && procArg.contains("hellosigar")) {                         processPid = pid;                         break;                    }               }               if (processPid != -1) {                    break;               }          }          return processPid;     }     private boolean isAlive(Process process) {          if (process == null) {               return false;          }          try {               process.exitValue();               return false;          } catch (IllegalThreadStateException e) {               return true;          }     }     private ProcState getProcState() {          ProcState procState = null;          try {               procState = sigar.getProcState(processPid);          } catch (SigarException ignore) {          }          return procState;     }     private boolean isRunning(ProcState procState) {          boolean running = false;          if (procState != null) {               running = (procState.getState() == ProcState.RUN                         || procState.getState() == ProcState.SLEEP || procState                         .getState() == ProcState.IDLE);          }          return running;     }

}

 

The only way to get it work is to have at least a 2 seconds interval between calls to getProcState.

 

Did I miss something or is this really a bug?

 

Thanks and regards,

Thomas

Error while installing Hyperic with embeded postgres

$
0
0

Hi,

 

I'm trying to install Hyperic Open Source over a RHEL 6.3 64 bits.

 

I ran into this error during the installation (agent and server at the same time)

 

"Starting built-in database...
--------------------------------------------------------------------------------
An ERROR occurred, the installation cannot continue.

 

An error occurred trying to start the HQ built-in database.  More
information may be available in the /home/hyperic/server-4.6.6/logs/hqdb.log file.
--------------------------------------------------------------------------------
Waiting for server to stop...
Stopping built-in database...
--------------------------------------------------------------------------------
An ERROR occurred, the installation cannot continue.
FATAL EXCEPTION at /opt/hyperic/hyperic-hq-installer-4.6.6/installer/data/setup.xml:523: : The following error occurred while executing this line:
/opt/hyperic/hyperic-hq-installer-4.6.6/installer/data/setup.xml:532: The following error occurred while executing this line:
/opt/hyperic/hyperic-hq-installer-4.6.6/installer/data/setup.xml:777: The following error occurred while executing this line:
/opt/hyperic/hyperic-hq-installer-4.6.6/installer/data/setup-db-PostgreSQL.xml:156: The following error occurred while executing this line:
/opt/hyperic/hyperic-hq-installer-4.6.6/installer/data/setup-db-PostgreSQL.xml:197: The following error occurred while executing this line:
/opt/hyperic/hyperic-hq-installer-4.6.6/installer/data/server.xml:125: exec returned: 1
--------------------------------------------------------------------------------
Deleting temporary JRE "

 

If a "cat" the log as adviced, I get this message.

 

"pg_ctl: PID file "/home/hyperic/server-4.6.6/hqdb/data/postmaster.pid" does not exist
Is server running?"

 

So the problem seems to be related to the embeded database but I have no idea what can I do to fix that...I'm working on a test machine with snapshots so roll backs are easy

 

Any help is more than welcome!

elgreco81

Monitoring SAP applications with hyperic ?

$
0
0

Good morning,

 

I intended to monitor my SAP applications and I have already hyperic installed. I'm wondering, can hyperic monitor SAP applications? if yes, how ?

 

 

Plz help me, it's urgent.

Build sigar.dll on 32/64-bit Windows

$
0
0

Hi guys,

 

Just want to know if there's a clear documentaion about how to build the "sigar.dll" on 32/64-bit Windows.

I'm using Windows7/8 with "Microsoft VisualStudio 10.0".

 

The "winbuild.bat" seems very old and won't works (complains about missing cmake, mysql, etc.).

 

So, is there a way to simplify this building process?

 

Thx

Mica

How to get correctly the percent of used CPU per process

$
0
0

I'm trying to get the percent of used CPU per process on windows with Qt/C++. Firstly i get a list of running processes and after, for each process i try to get the used CPU, for most process the result looks valid (they match with task manager in windows), but with the AIDA64 process (that is running a CPU stress test in background), i got strange values like 312% what is wrong with my c++ code?

 

    sigar_t *sigarproclist;
    sigar_proc_list_t proclist;
    sigar_open(&sigarproclist);
    sigar_proc_list_get(sigarproclist, &proclist);
    for (size_t i = 0; i < proclist.number; i++)
    {
        sigar_proc_cpu_t cpu;
        int status1 = sigar_proc_cpu_get(sigarproclist, proclist.data[i], &cpu);
        if (status1 == SIGAR_OK)
        {
            Sleep(50);
            int status2 = sigar_proc_cpu_get(sigarproclist, proclist.data[i], &cpu);
            if (status2 == SIGAR_OK)
            {
                sigar_proc_state_t procstate;
                sigar_proc_state_get(sigarproclist, proclist.data[i], &procstate);
                qDebug() << procstate.name << cpu.percent * 100 << "%";
            }
        }
    }
    sigar_close(sigarproclist);

hyperic-agent in maintenance state, fails to start

$
0
0

Hi,

 

I'm running hyperic on HP x86 blades with a 64-bit Solaris OS.

 

The hyperic-agent service keeps entering maintenance state with the following logs;

 

 

xhkny91035>svcs -a | grep hyper
online         Jan_23   svc:/ericsson/eric_3pp/hyperic-server:default
maintenance    11:45:55 svc:/ericsson/eric_3pp/hyperic-agent:default
Look at service log
xhkny91035>svcs -x /ericsson/eric_3pp/hyperic-agent
svc:/ericsson/eric_3pp/hyperic-agent:default (Hyperic Agent)
State: maintenance since Fri Mar 15 11:45:55 2013
Reason: Start method failed repeatedly, last died on Killed (9).
   See: Hyperic Agent-4.6(1)
   See: /var/svc/log/ericsson-eric_3pp-hyperic-agent:default.log
Impact: This service is not running.

xhkny91035>tail /var/svc/log/ericsson-eric_3pp-hyperic-agent:default.log
[ Mar 15 11:40:54 Leaving maintenance because clear requested. ]
[ Mar 15 11:40:54 Enabled. ]
[ Mar 15 11:40:54 Executing start method ("/opt/hyperic-agent/ericsson/bin/hq-service.sh start") ]
java version "1.6.0_26"
Java(TM) SE Runtime Environment (build 1.6.0_26-b03)
Oracle Corporation      SunOS 5.10      Generic Patch   January 2005
-n Starting HQ Agent...

[ Mar 15 11:45:55 Method or service exit timed out.  Killing contract 25776 ]
[ Mar 15 11:45:55 Method "start" failed due to signal KILL ]
xhkny91035>tail -20 /var/svc/log/ericsson-eric_3pp-hyperic-agent:default.log
[ Jan 23 15:57:57 Disabled. ]
[ Jan 23 16:05:51 Enabled. ]
[ Jan 23 16:05:51 Executing start method ("/opt/hyperic-agent/ericsson/bin/hq-service.sh start") ]
java version "1.6.0_26"
Java(TM) SE Runtime Environment (build 1.6.0_26-b03)
Oracle Corporation      SunOS 5.10      Generic Patch   January 2005
-n Starting HQ Agent...

[ Jan 23 16:10:51 Method or service exit timed out.  Killing contract 5607 ]
[ Jan 23 16:10:51 Method "start" failed due to signal KILL ]
[ Mar 15 11:40:54 Leaving maintenance because clear requested. ]
[ Mar 15 11:40:54 Enabled. ]
[ Mar 15 11:40:54 Executing start method ("/opt/hyperic-agent/ericsson/bin/hq-service.sh start") ]
java version "1.6.0_26"
Java(TM) SE Runtime Environment (build 1.6.0_26-b03)
Oracle Corporation      SunOS 5.10      Generic Patch   January 2005
-n Starting HQ Agent...

[ Mar 15 11:45:55 Method or service exit timed out.  Killing contract 25776 ]
[ Mar 15 11:45:55 Method "start" failed due to signal KILL ]

Look at agent log

 

xhkny91035>tail /var/log/hyperic/agent/agent.log

...

 

java.lang.OutOfMemoryError: Java heap space

        at java.util.TreeMap.put(TreeMap.java:554)

        at java.util.TreeSet.add(TreeSet.java:238)

        at org.hyperic.util.file.DiskList.genFreeList(DiskList.java:250)

        at org.hyperic.util.file.DiskList.<init>(DiskList.java:141)

        at org.hyperic.hq.agent.server.AgentDListProvider.intrCreateList(AgentDListProvider.java:100)

        at org.hyperic.hq.agent.server.AgentDListProvider.createList(AgentDListProvider.java:111)

        at org.hyperic.hq.measurement.agent.server.SenderThread.<init>(SenderThread.java:131)

        at org.hyperic.hq.measurement.agent.server.MeasurementCommandsServer.startup(MeasurementCommandsServer.java:232)

        at org.hyperic.hq.agent.server.AgentDaemon.startHandlers(AgentDaemon.java:796)

        at org.hyperic.hq.agent.server.AgentDaemon.start(AgentDaemon.java:917)

        at org.hyperic.hq.agent.server.AgentDaemon$RunnableAgent.run(AgentDaemon.java:1014)

        at java.lang.Thread.run(Thread.java:662)

...

Here's the memory dimensioning
memoryusage.PNG
I've had a look at the following after searching on the web.
1-Insufficient memory allocation in hyperic-server configuration file
2-Problems with JVM garbage collection
3-Problems with hyperic plugins being greedy with memory
Need to perform further analysis
-restart hyperic-server and activate garbage collection logging to see rate of memory usage over few days
According to VMware Vfabric Hyperic Server 4.6 documentation:
If you are running Hyperic Server on a 64-bit system with 4GB (4096 MB) or less memory, Hyperic recommends you use 32-bit JVM. A 64-bit JVM is not recommended unless you have more memory. You might need twice as much heap on a 64-bit system as on a 32-bit system to achieve the same performance.
The Model MWS is a 64-bit system with 16GB RAM and 64-bit JVM. Satisfactory.

Hype ric server is not able to start

$
0
0

Hi All,

 

I have installed open-source postgresql 9.1 database and after that i have installed Hyperic Server 4.6 but while starting HQ server i am unable to start it

 

ERROR [WrapperStartStopAppMain] [org.hyperic.bootstrap.ProcessManagerImpl@119] Command did not execute successfully (exit code = 1)

ERROR [WrapperStartStopAppMain] [org.hyperic.bootstrap.HQServer@212] Error verifying if HQ schema is valid.  url= jdbc:postgresql://localhost:5432/hyperic?protocolVersion=2, Cause: org.postgresql.util.PSQLException:

 

Please help me

 

Please let me know if more information is required.

 

Thanks & Regards

Amit Patil


Monitoring tomcat java process metrics

$
0
0

Hello,

 

          I am using hyperic hq 4.6.6 to monitor tomcat 7,

Here  hyperic has detected some services under tomcat server like, threadpool,servletMonitor,

But I have to monitor tomcat java process metrics,I tried manually adding java process metrics, but while configuration it showing error,

 

The configuration has not been set for this resource due to : Invalid configuration: Invalid request: Malformed ObjectName [sigar.ext:Type=ChildProcesses,Arg=State.Name.re=java|jsvc,State.Name.Pne=jsvc,Args.*.sw=-Dcatalina.base=/u01/HypericTesting/apache-tomcat-7.0.26]

can any one help me please...?

Can't install on RH6.4 with a Standalone DB

$
0
0

I'm new to Hyperic but have a customer who wants us to purchase and deploy HQ Enterprise over a largish AWS environment. Naturally they want to see the evaluation running before they commit though.

 

There is nothing much special about the AWS RH6.4 image so I can't understand why this doesn't work. Installation goes well with both built in and standalone DB's with builtin DB I can start the server and all seems well. With the standalone Prostgres the installation completes and I can see the DB is populated with the initial data but the server starts and then stops seconds later.

 

I've followed the installation guidelines for both the tarball and rpm versions (the full versions with included JRE) to the letter, naturally I have upgraded postgres to 9.1 (and even tried 9.2 in desperation), started again from clean images not installing with the built in DB first etc.

 

The slightly strange thing as is you can see in the bootstrap logs below I am gettingdbType=11, targetDB='null' which is slightly odd...then I get what looks to be a successful DB upgrade followed by the server exiting with an undeclared error...then it just starts the shutdown process. If I try to restart the log looks exactly the same (including the DB upgrade messages)

 

All the config points to a postgresql instance on the same host...I have confirmed that pgsql can log in as the defined user and password...and as I say something does manage to populate the database "HQ" with tables. Going round in circles with this now with pressure from the client to deliver it and a ticking away evaluation license.

 

** bootstrap log **

 

 

org.hyperic.tools.ant.dbupgrade.SST_DirectSQL$Statement@165] dbType=11, targetDB='null'
2013-08-06 13:28:25,854 INFO [main] [org.hyperic.tools.ant.dbupgrade.SST_DirectSQL$Statement@165] >>>>> Processing statement desc=[null] SQL=[create table if not exists EAM_ENCRYPTION_KEYS (encryption_key varchar(2000) not null, creation_date timestamp primary key default now()) ]
2013-08-06 13:28:25,855 INFO [main] [org.hyperic.tools.ant.dbupgrade.SST_Insert@165] >>>>> Inserting into EAM_ENCRYPTION_KEYS insert into eam_encryption_keys (encryption_key) select ? where not exists ( select * from eam_encryption_keys where encryption_key = ? and creation_date = (select max(creation_date) from eam_encryption_keys))
2013-08-06 13:28:25,867 INFO [main] [org.hyperic.tools.ant.dbupgrade.DBUpgrader@165] DATABASE SUCCESSFULLY UPGRADED TO 3.219
2013-08-06 13:28:25,887 INFO [WrapperStartStopAppMain] [org.hyperic.bootstrap.ProcessManagerImpl@122] Command executed successfully (exit code = 0)
2013-08-06 13:28:26,407 INFO [WrapperStartStopAppMain] [org.hyperic.bootstrap.HQServer@198] HQ DB schema: 3.219
2013-08-06 13:28:26,410 INFO [WrapperStartStopAppMain] [org.hyperic.bootstrap.HQServer@151] Booting the HQ server...
2013-08-06 13:28:26,434 ERROR [WrapperStartStopAppMain] [org.hyperic.bootstrap.ProcessManagerImpl@119] Command did not execute successfully (exit code = 1)

 

after that it just calls wrapper-stopper and shuts down.

 

Tried opening a support call with vmware went round in circles with them but they point blank refuse to help support a evaluation installation...a strange and disappointing anti-sales practice I must say...why would you not help someone who is poised to be spending £1000's on your software ?...even more of a shame as I have been using vmware products from when the original virtualisation product was pre 1.0 and I remember their support being a lot better than this.

 

So now I turn to the ever faithful community...can you guys help me ?

Monitoring HTTP and AJP threads of JBoss

$
0
0

Hi,

     I am using hyperic 4.6.6 for monitoring different applications.

     I have to monitor http and ajp threads of jboss .But here jboss are auto detected by hyperic but not relegated jboss web servers. So I did manual configuration for them (jmxUrl & process query) then ther are detected.and hyperic started monitoring them but here also jboss web services are not detected showing error like ---"javax.management.InstanceNotFoundException: jboss.web:type=ThreadPool,name=ajp-192.168.4.171-18909 is not registered."

     Can any buddy tell me how to solve this problem.....Please....?

hyperic 4.6.6 failed to discover jboss AS 7 (EAP 6)

$
0
0

Hi,

 

The failure error is reported when I run this cmd to discover all the plugins:

    java -jar /opt/hyperic/hyperic-hqee-agent/bundles/agent-4.6.6/pdk/lib/hq-pdk-4.6.6.jar -m discover >/tmp/MN.discover.plugins.2

 

And in the file /tmp/MN.discover.plugins.2

The JBoss 7 failed to load, with the error msg below:

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=

 

Server: MN-1 JBoss 7 localhost:9990 [/home/jboss/inventory_deployment1_mn1_jee1_instance/standalone]

AIID...../home/jboss/inventory_deployment1_mn1_jee1_instance/standalone/configuration/standalone.xml

config...

product..jboss7.user=guest,jboss7.addr=localhost,jboss7.port=9990,jboss7.https=false,

metric...null

control..null

ERROR [main] [JBossStandaloneDetector] org.hyperic.hq.product.PluginException: [http://localhost:9990/management/subsystem/datasources] http error code: '401' msg='Unauthorized'

org.hyperic.hq.product.PluginException: [http://localhost:9990/management/subsystem/datasources] http error code: '401' msg='Unauthorized'

        at org.hyperic.hq.plugin.jboss7.JBossAdminHttp.get(JBossAdminHttp.java:128)

        at org.hyperic.hq.plugin.jboss7.JBossAdminHttp.getDatasources(JBossAdminHttp.java:197)

        at org.hyperic.hq.plugin.jboss7.JBossDetectorBase.discoverServices(JBossDetectorBase.java:114)

        at org.hyperic.hq.product.ServerDetector.discoverResources(ServerDetector.java:219)

        at org.hyperic.hq.product.util.PluginDiscoverer.runtimeScan(PluginDiscoverer.java:604)

        at org.hyperic.hq.product.util.PluginDiscoverer.start(PluginDiscoverer.java:321)

        at org.hyperic.hq.product.util.PluginDumper.testDiscovery(PluginDumper.java:1153)

        at org.hyperic.hq.product.util.PluginDumper.invoke(PluginDumper.java:462)

        at org.hyperic.hq.product.util.PluginMain.main(PluginMain.java:321)

ERROR [main] [JBossStandaloneDetector] org.hyperic.hq.product.PluginException: [http://localhost:9990/management/subsystem/web?recursive=true] http error code: '401' msg='Unauthorized'

org.hyperic.hq.product.PluginException: [http://localhost:9990/management/subsystem/web?recursive=true] http error code: '401' msg='Unauthorized'

        at org.hyperic.hq.plugin.jboss7.JBossAdminHttp.get(JBossAdminHttp.java:128)

 

So I thought this is caused by jboss user/passwd, and then created jboss user "guest" with password "guestguest".

Then I updated the lines

       <option name="jboss7.user" description="Username" default="guest"/>
        <option name="jboss7.pass" description="Password" default="guestguest" type="secret"/>

 

 

 

But it didn't appear to fix the issue, and now I am confused what else could be related ?

Thanks

QL

How do you get CPU ID or serial number using Hyperic Sigar?

$
0
0

Is there a method in the Sigar API that returns the CPU ID of the host running the JVM?

org.postgresql.util.PSQLException: ERROR: relation "eam_config_props" does not exist

$
0
0

Hi,

 

Did anyone ever find the solution to

 

Error loading starting schema version: org.postgresql.util.PSQLException: ERROR: relation "eam_config_props" does not exist

  Position: 15


I am getting the same error on Hyperic version 5.8.0 when trying to start the service?

How to use SIGAR in Ubuntu-based Linux?

$
0
0
I am using SIGAR in a project with Maven and Spring. I have the Maven Dependencie and Maven Repository included in my pom.xml file, as described in this link:
http://mavenhub.com/mvn/thirdparty-uploads/org.hyperic/sigar/1.6.5.132

 

However, SIGAR still won't work. Aparently I also need to install libsigar-amd64-linux-1.6.4.

 

So I downloaded that file, but now I have no idea what to do with it. How do I fix this? Where do I put that file?


5.8 on Centos can't send email via SMTP

$
0
0

For some reason, the server can't send an email. I get this in the log for an alert I set up:

23-03-2014 11:36:46,237 ADT ERROR [pool-2-thread-3] [org.hyperic.hq.bizapp.server.session.EmailManagerImpl@162] Error sending email: [HQ] !! - Free Memory < 4.7GB eosstgdb01

 

The email address it is trying to send to is correct. I've installed postfix and testing it with telnet and I can send an email successfully. I've also use the mail program to send an email successfully, so I know postfix is set up correctly. I also can connect to the smtp server remotely from another server. I even set HQ to point to another server that has postfix running and it still failed. So it's definitely something with HQ.

 

All I had in my conf file was:

server.mail.host=127.0.0.1


I then tried:

# Change to SMTP port

mail.smtp.port=25

# SMTP properties

mail.smtp.auth=false

mail.smtp.socketFactory.class=javax.net.SocketFactory

mail.smtp.socketFactory.fallback=false

mail.smtp.socketFactory.port=25

mail.smtp.starttls.enable=false

 

But it didn't make a difference.

 

In the HQ server settings, the only option for email is:

base url : http://10.31.30.20:7080/

From Email Address: aa@aa.com

 

So what else can I do?

Configure WebLogic 10.3

$
0
0

Hi,

i have installed the agent on a linux server with an installed weblogic server.

During the configuration, i receive the following error.

 

The configuration has not been set for this resource due to : Invalid configuration: org.hyperic.hq.measurement.monitor.LiveMeasurementException: Error contacting resource: java.net.ConnectException: t3://server:7001: Destination unreachable; nested exception is: java.net.ConnectException: Connection refused; No available router to destination


We are using a different Port for the Server. 7102 instead of 7001.

But i cannot change the value. It changes to default every time i try to edit it.

Also the listen.ports is already on 7102.

 

Is there anything i am missing?

Thanks for any hints.

Frank

Hyperic Server 5.8.2 Open Soure Support E-Mail Alert ?

$
0
0

Hello All,

 

I use Hyperic 5.8.2.

Does Open source version of Hyperic supports Alerts thro E-Mail ?or is it available only in Enterprise Version ?

 

I set Availability alert and I am getting a similar kind of error as shown in this link.

Re: Alerts via SnmpTrap

I added Notify Other  Recipients and mentioned an E-Mail Address.

When ever the alert occurs, recipient  email id is not getting any alerts

 

I see these logs meesages in server.log

 

org.hyperic.hq.events.server.session.AlertConditionsSatisfiedListener@7bf092f11] [org.hyperic.hq.events.server.session.Action@259] Error getting initialized action for org.hyperic.hq.bizapp.server.action.integrate.OpenNMSAction

WARN  [org.hyperic.hq.events.server.session.AlertConditionsSatisfiedListener@7bf092f11] [org.hyperic.hq.events.server.session.ClassicEscalatableCreator@165] Error executing action [(id=10009, class="org".hyperic.hq.bizapp.server.action.integrate.OpenNMSAction)]

org.hyperic.hq.events.ActionExecuteException: Unable to execute action: Unable to get action

 

Where should I check ?

I am sure that, I am able to send E-Mail from the Hyperic Server.

hq-server.conf looks as follows

 

  server.mail.host=smtp.smtp.in

# Change to SMTP port

  mail.smtp.port=25

# SMTP properties

  mail.smtp.auth=false

  mail.smtp.socketFactory.class=javax.net.SocketFactory

  mail.smtp.socketFactory.fallback=false

  mail.smtp.socketFactory.port=25

  mail.smtp.starttls.enable=false

-

Sree

Sigar on FreeBSD 10

$
0
0

Hello,

 

Recently updated my FreeBSD 8.3 system to 10.0 and now realized that Sigar is not supported on this version.

 

This page https://lists.freebsd.org/pipermail/freebsd-ports/2014-April/091414.html says: "fails to build with new utmpx".

As far as I can see utmpx replaced utmph in 9.0 so the problem most likely exists for that version too.

 

Is there a roadmap to add support for these FreeBSD versions?

 

Thank you!

Zsolt

HQ 5.8.4 now available for download

$
0
0

You can download the files from sourceforge.

https://sourceforge.net/projects/hyperic-hq/files/Hyperic%205.8.4/


Bugs fixes:

Name

Bug Number

Unable to create Alert for JBoss Datasource

HHQ-5973

UI unavailable due to a delay with stuck qrtz query

HQ-4773

Alerts get backed up when email notifications hang

HHQ-5913

Unable to modify platform.log_track after using HQApi to create the platform.

HQ-4786

HQAPI resource move does not work in 5.8.x (regression back to 5.7.1)

HHQ-6003

Unable to configuring a second SNMP v3 platform on the same agent

HHQ-5998

Hyperic server Config command returns different server guid each invokation - as a result we have duplicate hyperic objects in vcops

HQ-4793

HQAPI alertdefinition list by ID comes back with AlertDefinitionResponse object instead of AlertDefinitionsResponse

HHQ-6006

Support Windows 2012r2 (test windows plugins)

HQ-4800

WebSphere plugin altering com.ibm.ws.security.crypto.jar

HHQ-5991

Sigar changes, Support non English languages on Windows OS

HQ-6024

Update JRE to JRE 7u71

HHQ-6025

Remove sslv3 from hyperic server due to POODLE Security Vulnerability

HHQ-6026

openstack-plugin

 

 

Enjoy

Yaron

Viewing all 52618 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>