News:

We really need your input in this questionnaire

Main Menu
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

#1006
It's outdated, please use to this guide: http://wiki.netxms.org/wiki/Web_Interface_Installation_Guide
#1007
Таблицы пока не поддерживаются, только Agent List и SNMP Walk.
Инструкция: http://www.youtube.com/watch?v=HSs9mP_0XK0
#1008
Confirmed, will be resolved in next release.
https://www.radensolutions.com/chiliproject/issues/260
#1009
General Support / Re: Folder size via agent
April 09, 2013, 05:18:27 PM
Just some notes:

1) I'd add error handling, like this:
Try {
"{0:F2}" -f ((Get-ChildItem $args[0] -r -ErrorAction stop | Measure-Object -property length -sum).sum / 1KB)
}
Catch {
Write-Host "0.00"
}


2) If you plan to scan large directories and it could potentially take long time, it's better to use ExternalParametersProvider with script like this:

$dirs = @("c:\DosBox", "C:\tmp")

foreach ($dir in $dirs) {
$size = "0.00"
Try {
$size="{0:F2}" -f ((Get-ChildItem $dir -r -ErrorAction stop | Measure-Object -property length -sum).sum / 1KB)
}
Catch {
}
Write-Host "DirSize($dir)=$size"
}


3) If these script saved as a file, PowerShell may require to sign it before running, disable execution policy:
powershell -ExecutionPolicy ByPass -File ...\script.ps1
#1010
Пример настройки пары DCI-ев и простой Dashboard на их основе: http://www.youtube.com/watch?v=ZfJQiUIDHY4
#1012
1) Start -> Run -> cmd
2) inside cmd window: "c:\netxms\bin\netxmsd -D3", it will start in debug mode (3 is "debug level") and report error.

Also you can check server's log (Event Log by default,  parameter "LogFile" in netxmsd.conf)
#1013
Общие вопросы / Re: Netxms rpm
March 28, 2013, 07:06:12 PM
На данный момент у нас их нет. Я сейчас переделываю пакеты для дебиана, rpm следующий на очереди. Но это будет не раньше чем через неделю-две.
#1014
General Support / Re: sequence diagram
March 27, 2013, 02:59:50 PM
#1015
Check "/tmp/nxagentupdate.log" for more details
#1016
Announcements / Re: NxShell
February 16, 2013, 07:46:30 PM
It's build around Jython which is 2.5.4 right now (not CPython, which is 3.3.0 right now), 2.7 is in beta stage.
I've did couple of quick tests with 2.7-beta1 version and it seems to work fine. You can try this jar: https://netxms.org/nxshell-1.2.5_jython27.jar.
#1017
General Support / Re: problem with runing netxms agent
February 13, 2013, 09:59:21 AM
Just realized – you running "netxmsd", but topic is about agent.

netxmsd - server binary
nxagentd - agent binary

There should be much more output with debug (-D) enabled, please post complete output and attach configuration files.
#1018
General Support / Re: console
February 13, 2013, 09:57:19 AM
Download https://www.netxms.org/download/nxmc/nxmc-1.2.5-linux-gtk-x86.tar.gz
Unpack it: tar zxf nxmc-1.2.5-linux-gtk-x86.tar.gz
Run nxmc/nxmc
#1019
We will probably change this feature.
Right now WebUI tries to get image at http://127.0.0.1/, port 80 - regardless the application server port.
You can either drop file into existing web server root if you are running one, or setup reverse proxy and keep file in application server's ROOT.
#1020
General Support / Re: Exporting the list of nodes
February 12, 2013, 03:17:12 PM
Sure. I've put sample script here: http://wiki.netxms.org/wiki/Using_nxshell_to_automate_bulk_operations#List_free.28administratively_down.29_ethernet_ports_on_switches

Quote from: yshiro on February 12, 2013, 12:50:26 PM
It´s possible to make the same question, with scripting ?

I´m trying to make an script, for free ports on my switches.