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 - Alex Kirhenshtein

#76
As per https://www.releases.ubuntu.com/, bionic is out of standard support and we don't publish these binaries to our public repository anymore.

Please check this for options: https://netxms.com/commercial-support
#77
Quote from: hmjvaline on November 10, 2024, 01:59:29 PMNew NXMC already has mib file upload feature ,
There is no need to pull the mib file from the server side

another The jar file used in the report server also needs to be added to the server.
If it can be uploaded directly to the server through nxmc on the client, it will become very convenient to maintain or update.
;D ;D ;D
Just use built-in file manager to delete jar file and upload new version to definitions directory.
#78
Feature Requests / Re: IOS App
November 08, 2024, 01:07:11 PM
Yes, I think we'll have some working version by early next year
#79
Announcements / Re: NetXMS 5.1 released
November 06, 2024, 05:22:01 PM
Quote from: hmjvaline on November 06, 2024, 05:16:03 PM
Quote from: Victor Kirhenshtein on November 06, 2024, 04:22:49 PMIf you represent educational or non-profit institution, feel free to contact us directly and I'm sure we can find a solution.
Best regards,
Victor
I think I need your support, how should I contact you ?
as before I upgraded to 5.1.0 without thinking carefully, now I can't downgrade to 5.0.8 so that I can continue working with netxms, the worst I also lack a backup of the database and cannot see the complete steps for downgrading the database. How can I get myself back to the normal working state as quickly as possible?

Please send mail to [email protected] with basic information about your organisation, and I'll handle that
#80
Announcements / Re: NetXMS 5.1 released
November 06, 2024, 03:29:31 PM
Quote from: hmjvaline on November 06, 2024, 03:03:35 PMI am shock netxms 5.1 is limited to 250 nodes :-\ :-\ :'(  :'(
It reduced my enthusiasm for NetXMS and even gave up on it because it is no longer so open and free. Although I have never needed the company's institutionalized services, I feel discouraged by this new restriction.
Hi

Well, product is still open and free. Only official build for Windows Server is restricted now. You have following options:
- purchase support contract from us (any support tier will give you license for unlimited number of nodes)
- built it yourself
- migrate server to Linux
#81
Announcements / Re: NetXMS 5.1 released
November 06, 2024, 11:05:43 AM
Quote from: richard21 on November 06, 2024, 10:56:52 AMit looks like the link fore the Windows Server download isn't correct its currently https://netxms.com/download/releases/5.0/netxms-server-5.1.0-x64.exe which isn't working it looks like it should be  https://netxms.com/download/releases/5.1/netxms-server-5.1.0-x64.exe which works
Thank you for the report, fixed
#82
General Support / Re: Line Charts - 5.0.8
October 14, 2024, 09:40:43 PM
Please provide more details
#83
Fixed
#84
General Support / Re: Threshold Question
September 14, 2024, 12:27:34 AM
add threshold "diff != 0", it will trigger on value change
#85
Этот скрипт из вики расчитан на запуск при помощи nxshell (python).
Execute script в консоли запускает nxsl скрипты.

Из NXSL можно отключить таким скриптом:

$node->enableSsh(false);
$node->enableConfigurationPolling(false);
$node->enableRoutingTablePolling(false);
$node->enableTopologyPolling(false);
$node->enableDiscoveryPolling(false);

Можно запустить на ноде, или добавить в Hook::ConfigurationPoll.

Ну или можно обойти ноды скриптом:

for (n : GetAllNodes())  {
    n->enableSsh(false);
    n->enableConfigurationPolling(false);
    n->enableRoutingTablePolling(false);
    n->enableTopologyPolling(false);
    n->enableDiscoveryPolling(false);
}
#86
General Support / Re: Should Agent IDs be unique?
September 10, 2024, 06:01:11 PM
It's mostly important when you have tunnels (connection from agnet to the server instead of the default). 
You can reset it by running "nxagentd -T"
#87
Well, you can send PR on the GitHub
#88
Just install full package, then disable "netxms core" service in service manager
#89
dnf update should be sufficient
#90
You are running second instance of the netxmsd. Only once instance of the netxmsd should access database at the same time.

If you want to keep reporting server separate, change parameter ReportingServer.Hostname to remote IP of the reporting server.