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

#931
General Support / Re: Registry keys
April 23, 2013, 04:57:50 PM
No, it's not available.
If you need to resolve single issue, I suggest to use Process Monitor from Sysinternals (http://technet.microsoft.com/en-us/sysinternals/bb896645).
#932
It's outdated, please use to this guide: http://wiki.netxms.org/wiki/Web_Interface_Installation_Guide
#933
Таблицы пока не поддерживаются, только Agent List и SNMP Walk.
Инструкция: http://www.youtube.com/watch?v=HSs9mP_0XK0
#934
Confirmed, will be resolved in next release.
https://www.radensolutions.com/chiliproject/issues/260
#935
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
#936
Пример настройки пары DCI-ев и простой Dashboard на их основе: http://www.youtube.com/watch?v=ZfJQiUIDHY4
#938
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)
#939
Общие вопросы / Re: Netxms rpm
March 28, 2013, 07:06:12 PM
На данный момент у нас их нет. Я сейчас переделываю пакеты для дебиана, rpm следующий на очереди. Но это будет не раньше чем через неделю-две.
#940
General Support / Re: sequence diagram
March 27, 2013, 02:59:50 PM
#941
Check "/tmp/nxagentupdate.log" for more details
#942
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.
#943
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.
#944
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
#945
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.