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

#1
If you are familiar with docker-compose, there is a more elegant approach to setup containers:

version: '2'

services:
  server:
    image: lomo/netxms-server
    ports:
    - "4700:4700"

  webui:
    image: lomo/netxms-webui
    ports:
    - "8080:8080"
    environment:
    - "NETXMS_SERVER=server"

  console:
    image: lomo/netxms-nxmc
    environment:
    - "DISPLAY=$DISPLAY"
    volumes:
    - "/tmp/.X11-unix:/tmp/.X11-unix"


Then you can startup your environment with
docker-compose up

WebGUI is then accessible at http://localhost:8080/nxmc/nxmc

Of course, if you close the native console you have to start the container again:
docker-compose start console
or start the container directly by docker start command
#2
Quote from: Lukas on October 21, 2016, 02:59:15 PM
Thanks, very nice and convenient for showing live preview of the latest version without much hassle  :)

Currently the netxms client reports
org.netxms.client.NXCException: Server uses incompatible version of communication protocol

Is it just a temporary problem caused by the fact that both images come from the latest build and  they may have different version information?

Best Regards,
Lukas

It looks like the client version does not match NetXMS server version. I've build the docker images for latest release (2.0.6).
What server version are you running? I assume you are not running it from the docker image I've created.
#3
Is it possible to open NetXMS Web UI in context by passing arguments in URL? For example I'd like to open NetXMS Web UI's Object Browser directly by passing Object ID as argument to open NetXMS Web UI from other application.

So far I haven't found any way how to pass any arguments to Web UI. Any ideas?
#4
I find NetXMS very flexible platform and consider it using with our customers and extend the monitoring area also to application monitoring (Databases/Application Servers/Custom applications...). Technically this can be done using subagents (and probably write new ones).

However so far I could not find any functionality of creating new object types such as Application Server or Database. Only available type where metrics from NetXMS agent can be assigned in Infrastructure services is the Node type.

In NetXMS it seems those custom metrics available through NetXMS are always bound to node where they are actually monitored from. Probably a functionality to create new object types in Infrastructure services and binding performance parameters from NetXMS agents (or other sources such as SNMP) would be sufficient.

Any ideas?
#6
General Support / Re: NetXMS sever 1.1.1 crash
May 19, 2011, 03:36:43 PM
I'm experiencing same issue with 1.1.1 with the same messages on Debian Squeeze, compiled from sources.