Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - RichardS

#1
Hello Victor,

Thanks for the quick reply. When compiling the mib files the -z was not used. Fixed the problem in another way. Deleted all the mib files and copied new ones over from a clean install of NetXMS 1.1.10. Compiled them, problem is now gone.

Regards,

RichardS  
#2
Hi,

I've upgraded from 1.1.9 to 1.1.10. Now whenever i start the NetXMS console i get the following error message (in a popup after logon):

   'load MIB file on startup' has encountered a problem
   cannot load MIB file from server: Bad MIB file data

I can close the popup and NextXMS console will work without problems. Ive checked whether nxmibc is able to compile the mibs but that does not show any problems.

Any idea what might be causing this.

Regards,

RichardS
#3
Hi !,

I am using NetXMS 1.0.4. When I use the syslog viewer (ALT-F8) the display of the hostname only contains garbage/random data (also see the enclosed picture). Is this a bug i have run into ?

Secondly a small remark, when i try to access the bugtracker on the website (via the support section) it fails and displays an error.

Regards,
Richard.
#4
I am currently trying to add a script to a rule in the event processing policy to limit the time at wich a email message is send out.

Script is as follows (very simple just to show the problem, actual script will be more complex):

sub main ()
{
    now = localtime();
    return now->hour >= 12;
}

When the eventrule is triggered the following error shows in the NetXMS log:

[30-Mar-2010 11:58:16] Failed to execute evaluation script for event processing policy rule #13: Error 15 in line 4: Unknown object's attribute

This points to a error with now->hour. I've seen this contruction used in several examples on the forum so i assume it is correct.

The version of NetXMS i'm using is the 1.0.0.rc1. I had this problem also with previous versions.

Is this a bug or am i doing something wrong ?