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 - gmonk63

#136
General Support / Migrating to new server
June 30, 2016, 11:27:43 PM
Question I currently have a server ubuntu 14.04 with netxms 2.0.1   I have purchased a newer server and want to migrate all data to the new server which is ubuntu 16.04  but I want to install the latest Netxms version 2.0.4   can i simply install the new version and dump and restore the data base using mysql tools or do i need to do this using nxdbmgr  and what is the difference between using nxdbmgr vs mysql dump  does dbmgr only grab the schema and not the data ?



Thanks
#137
General Support / OpenWRT Agent
June 03, 2016, 02:23:13 AM
Just curious what versions of WRT is netxms agent compatible with ?  I tried to build it on 15.05 and got the following



make[6]: Entering directory `/home/gmonk/Desktop/openwrt/build_dir/target-mips_34kc_uClibc-0.9.33.2/netxms-agent-nossl/netxms-2.0.2/src/libnetxms'
  CXX      libnetxms_la-tools.lo
In file included from libnetxms.h:27:0,
                 from tools.cpp:23:
../../include/nms_common.h:1175:13: error: previous declaration of 'void nx_free(void*)' with 'C++' linkage
inline void nx_free(void *p)
             ^
In file included from /home/gmonk/Desktop/openwrt/staging_dir/toolchain-mips_34kc_gcc-4.8-linaro_uClibc-0.9.33.2/include/features.h:416:0,
                 from /home/gmonk/Desktop/openwrt/staging_dir/toolchain-mips_34kc_gcc-4.8-linaro_uClibc-0.9.33.2/include/wchar.h:28,
                 from ../../include/unicode.h:119,
                 from ../../include/nms_common.h:72,
                 from libnetxms.h:27,
                 from tools.cpp:23:
/home/gmonk/Desktop/openwrt/staging_dir/toolchain-mips_34kc_gcc-4.8-linaro_uClibc-0.9.33.2/include/malloc.h:119:18: error: conflicts with new declaration with 'C' linkage
extern void free __MALLOC_P ((__malloc_ptr_t __ptr));
                  ^
make[6]: *** [libnetxms_la-tools.lo] Error 1
make[6]: Leaving directory `/home/gmonk/Desktop/openwrt/build_dir/target-mips_34kc_uClibc-0.9.33.2/netxms-agent-nossl/netxms-2.0.2/src/libnetxms'
make[5]: *** [all-recursive] Error 1
make[5]: Leaving directory `/home/gmonk/Desktop/openwrt/build_dir/target-mips_34kc_uClibc-0.9.33.2/netxms-agent-nossl/netxms-2.0.2/src'
make[4]: *** [all-recursive] Error 1
make[4]: Leaving directory `/home/gmonk/Desktop/openwrt/build_dir/target-mips_34kc_uClibc-0.9.33.2/netxms-agent-nossl/netxms-2.0.2'
make[3]: *** [all] Error 2
make[3]: Leaving directory `/home/gmonk/Desktop/openwrt/build_dir/target-mips_34kc_uClibc-0.9.33.2/netxms-agent-nossl/netxms-2.0.2'
make[2]: *** [/home/gmonk/Desktop/openwrt/build_dir/target-mips_34kc_uClibc-0.9.33.2/netxms-agent-nossl/netxms-2.0.2/.built] Error 2
make[2]: Leaving directory `/home/gmonk/Desktop/openwrt/feeds/netxms/admin/netxms'
make[1]: *** [package/feeds/netxms/netxms/install] Error 2
make[1]: Leaving directory `/home/gmonk/Desktop/openwrt'
#138
What type of the Device is this ?  Is sounds like this might be a ppoe router of some sort.   So your best bet would be to setup a port based translation that would translate any requests to the public address:port  to the internal  address:port  but since it changes every four hours you would have to setup dyndns or no-ip  and refer to it by dns or else you will have to update your netxms configs
#139
General Support / DCI timestamp delay
April 20, 2016, 07:38:48 AM
Greetings,


I have a script which sends data via nxpush to a DCI and i have noticed that it takes almost 30seconds for the dci to reflect the changes ... is there a way to specify the time stamp using nxpush instead of having  time stamped by the server when it is recieved
#140
General Support / Re: Dash Board
March 31, 2016, 06:14:54 PM
got it working now ... Thanks for the help
#141
General Support / Re: Dash Board
March 25, 2016, 02:22:17 AM
Where exactly would i make these changes I do not see an eclipse.ini  file



Thanks
#142
General Support / Line Chart Question
March 25, 2016, 02:21:10 AM
Is it possible to assign  data points to the line chart  maybe with a dot or something visible.  It is hard to distinguish  visible changes on the line when there are only slight changes in the data which almost makes it look like a single line that continues to rise slightly
#143
General Support / Dash Board
March 10, 2016, 05:18:20 PM
Does the Dashboard web page element use a internal browser ?  And is there a way to tell it you use a local browser like chrome or FireFox when rendering web pages



Thanks
#144
General Support / Re: SNMP Proxy
February 17, 2016, 06:35:45 PM
I think I got it let me know if this correct or not but it seems to work  this will read in from a list of nodes and set each nodes snmp proxy to the following id 10236


from org.netxms.client.objects import Node

for name in open("snmp-proxy.txt").readlines():
    node = session.findObjectByName(name.strip())
   
    if node:
        md = NXCObjectModificationData(node.getObjectId())
        proxy = 10236
        md.setSnmpProxy(proxy)
        session.modifyObject(md)
#145
General Support / SNMP Proxy
February 17, 2016, 05:05:27 PM
Is it possible to configure snmp proxy via nxshell  I see that its is possible during creating but what about after the fact



Thanks
#146
General Support / Re: Duplicate Node generated
February 13, 2016, 09:48:13 PM
I think this may have been just a weird glitch ..I noticed that only one switch was being duplicated and not the other I deleted the switch and did a db check which found lots of errors that were fixed and added the offending switch  again and so far no duplicates i will update if anything changes
#147
General Support / Re: Duplicate Node generated
February 12, 2016, 06:11:23 PM
The primary node name was automatically set to the IP of each vlan interface
#148
General Support / Re: Duplicate Node generated
February 12, 2016, 01:22:03 AM
here you go ... Since then I have tried multiple times to just delete this switch and is keeps coming back  the server has become quite unstable since adding these two switches SuperX East and SuperX West they are both the same type of foundry switch


#149
General Support / Re: Duplicate Node generated
February 11, 2016, 06:51:37 PM
forgot to mention version is 2.0.1
#150
General Support / Duplicate Node generated
February 11, 2016, 06:51:05 PM
I have a layer 3 switch that has several vlan interfaces and netxms has created a new node for each vlan interface  so I have  six nodes all named  L3SWITCH_TEST  and each node has all the same interfaces duplicated the only thing that is different from each node is the id and primary host name which is the vlan interface ip.



Is there a way to prevent netxms from creating all these unnecessary nodes? or does it even matter  ?  I just dont want multiple duplicated checks on the same switch


Thanks