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

#406
General Support / Re: Node Down/Up Alerts not sending
September 04, 2024, 07:11:23 PM
I wonder that Recipient column in the log is empty. How is your action configured, recipient is specified in it.
#407
If you can close this error message and it does not occur again when using the console, you can disregard this error message.

The version that you are using (2.0.1) is very old and not supported any more. But, as I remember, there was a checkbox "slow connection" on login screen of the console. Checking it skipped downloading mib file to client, so you can check if that is unchecked.
#408
General Support / Re: Database is locked for report server
September 02, 2024, 05:32:08 PM
You can create nxreportd.properties file in C:\NetXMS\etc\nxreportd folder. In this file you can specify bind address:

nxreportd.bindAddress=1.2.3.4

setting it to * or 0.0.0.0 will bind to all available interfaces.

#409
General Support / Re: Report Server not Starting
September 02, 2024, 01:51:59 PM
Java 11 or later should be installed on the system
#410
How does NetXMS communicate with these devices, via SNMP or you have NetXMS agent installed there?
#411
General Support / Re: Node Down/Up Alerts not sending
September 02, 2024, 11:46:16 AM
First thing to check, just to make sure, is if you've pressed "save" button in epp editor.

Check Logs -> Server Action Executions and Logs -> Notifications, if your Slack is listed there.

For testing you can add Slack notification actions to maintenance mode enter and leave rules in EPP, then you can just take any node and take it in and out of maintenance.

If it still does not work, pls show screenshots of your EPP rule configuration.
#412
General Support / Re: Port Monitoring No Agent
August 30, 2024, 01:41:37 PM
To have answer to original question in this thread, current way to check is ports are open is 

NetworkService.Status(tcp://netxms.org:80)
agent metric, agent should have netsvc subagent enabled. 
https://netxms.org/documentation/adminguide/service-monitoring.html#network-service-monitoring-using-dci
#413
I can confirm this issue on Windows, will check with developers
#414
Might be because version of Eclipse SWT library, on which client depends, was upgraded and that version does not support Win7. But I'm afraid we won't have resources to fix that, except for a commercial client, as Win7 went end of life in 2020.
#415
So which exactly powershell you use and on what OS this is?
#416
Can you actually share your powershell script (or some version of it with which gives same results).
Also, what's the version of powershell itself - it might make some difference.
#417
I see you have two external metric providers configured. Does the problem still happen if you remove the second one?

Can you also check with Windows Task manager, if between this line
2024.08.14 16:18:01.182 *D* [procexec.2        ] ProcessExecutor::executeWithOutput(): process "CMD.EXE /C pwsh.exe -NoProfile C:\\NetXMS\\var\\test1.ps1" started (PID=2020)

and that line
2024.08.14 16:18:31.185 *D* [ext.provider      ] ExternalDataProvider::poll(): command "pwsh.exe -NoProfile C:\\NetXMS\\var\\test1.ps1" execution timeout (30000 milliseconds)

pwsh.exe -NoProfile C:\\NetXMS\\var\\test1.ps1
process is actually running, or it has already terminated? I'd try to add say 10 second delay inside test1.ps1, then it would be seen in Task Manager that this process starts and when it ends.
#418
Can you please enable
DebugLevel = 7
in agent configuration file and set it to log to file
LogFile = /path/to/log/file

let it run until it finishes second call of the script and share the log (you can sent it to me as private message if needed)
#419
General Support / Re: Huawei switch - emty ports
August 13, 2024, 02:17:52 PM
Quote from: Spheron on August 13, 2024, 02:08:09 PMhaving here a similar problem with a Netgear GS728TPv3.
Any chances we can get remote access to your device for a few days? SNMP-only access is enough, it can be some test device not connected to real network
#420
Make sure you've selected Legacy Authentication Method when installing MySQL as described in MySQL notes in this chapter: 
https://netxms.org/documentation/adminguide/installation.html#id14

On Initialize Database page in the installer "Create database and database user before initialization" should be checked, DBA login name should be "root" and DBA password is the password you entered when installing MySQL.

Event if this step fails, NetXMS software is fully installed, so you can connect to your MySQL DB with any client and issue queries to create user and database:
CREATE DATABASE netxms CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
CREATE USER 'netxms'@'localhost' IDENTIFIED BY 'PaSsWd';
GRANT ALL on netxms.* to 'netxms'@'localhost';

You may also need to adjust NetXMS configuration file to match these credentials, the file is here: C:\NetXMS\etc\netxmsd.conf