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 - Filipp Sudanov

#211
General Support / Re: Shrink Postgres DB
July 29, 2025, 11:41:10 AM
If you've been using windows event syncronization, then 

VACUUM FULL WIN_EVENT_LOG; 
query might help, but it also needs additional disk space for it to run (https://www.postgresql.org/docs/current/sql-vacuum.html). 

If do don't need any records from this table, then
TRUNCATE WIN_EVENT_LOG;
will clean all records and instantly reclaim disk space
#212
На Download странице есть упоминание об этом: https://netxms.com/downloads/

Windows сборки сервера имеют ограничение в 250 нод. На Линукс платформах ограничения нет и не планируется. 
#213
You can just do "Execute script" on your node and try the following script from there:

r = $node.executeSSHCommand("ping 8.8.8.8 repeat 3 timeout 1");
println(typeof(r));
println(r);

It will print the result of executeSSHCommand() function.

One probable issue is that ssh communication goes through the agent that runs along with the server. So this agent should have
SubAgent = ssh
in it's configuration file (make sure you restart the agent after making the changes).

To debug you can add
DebugLevel = 6
to agent configuration file - agent log should give some information the moment when you execute your script.
#214
Hi, 

For Huawei the information might be here: https://support.huawei.com/hedex/hdx.do?docid=EDOC1100333029&id=EN-US_CONCEPT_0176370110

Can you show walk output for
1.3.6.1.4.1.2011.5.25.40.4.1.14.1
#215
Hi, 

Quite a few things changes between these two version, one of them is that for performace reasons interfaces are synchronized only when needed. In most places this works quite transparently and they are received from the server as needed, but in object tree the search is actually a filter and finds only objects that are syncronized. 
There's a setting that changes this behavior, it's in client's properties, Objects->Full object synchronization on startup
#216
Still not resolved, created bugtracker ticket so it won't be forgotten
https://track.radensolutions.com/issue/NX-2813
#217
Changes were made in the code, please try v.5.2.4 
#218
General Support / Re: v5.1.3 Android Client
July 17, 2025, 01:45:00 PM
Yes, looks that there's still a bug with webapi packaging, will check with developers. 
Webui should now be available for download (but, just in case, you can use any 5.2 webui or desktop ui with 5.2.4)
#219
General Support / Re: v5.1.3 Android Client
July 09, 2025, 12:09:19 AM
New Android client uses new WEB API that is a server module. 

Quick setup guide:
- add "Module=webapi,Y" to netxmsd.conf, module listens on port 8000 by default. You can change it:
[WEBAPI]
ListenerPort=12345

Please note, it's unencrypted HTTP!
- add nginx, reproxy, traefic - or any other ssl offloading app in front of it.
- connect to the APi endpoint.

But for testing you can skip this and just use HTTP
#220
Hi, 

A few changes were made in the code, including better logging and special handling if 0.0.0.0/0 subnet was received during network discovery. This will be included in next patch release that should be in the coming days. 
#221
General Support / Re: Possible Bug
July 08, 2025, 01:45:22 PM
PING3 is something niche and yes, looks that it's being auto-detected incorrectly. You can put PING3 into NetworkDeviceDrivers.BlackList server configuration parameter, this will prevent the auto-detection
#222
After the moment when system shows "request timeout message" please capture dump of netxmsd process. You can do this using Windows Task Manager, there's "Create Dump File" if you right-click the process.

You can share the dump with us using this link: https://cloud.radensolutions.com/s/SHniBXHz5PJKpeR

Pls drop a message when you've uploaded the file
#223
Agent uses GetSecurityInfo win api function, please check information about needed access rights here:
https://learn.microsoft.com/en-us/windows/win32/api/aclapi/nf-aclapi-getsecurityinfo#remarks

#224
Please try to run the agent under system user to see if that makes any difference
#225
Well, that explains why the metric does not return what you expect. 

How do you run the agent - under SYSTEM user or in some other way?