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

#901
Yes, if it asked you for login and password – it works.

Default credentials:
Login: "admin"
Password: "netxms"
#902
Try http://10.0.2.15:8080/nxmc-1.2.6/. By default, Tomcat unpack application into directory matching original war file
Check it: ls -la /var/lib/tomcat6/webapps

If you want to have /nxmc/ URL – rename war file to "nxmc.war"
#903
Yes, currently server connects to the agent to gather data.

You can push DCI values or events using "nxpush" and "nxevent", but in this configuration all scheduling is done on agent's side (actually agent is not required for these tools).
Both tools are built when "--with-client" configure option is enabled.

Major drawback of this implementation – both tools versions should match server's version, so you'll have to upgrade all nodes at the same time.
#904
General Support / Re: Geolocation information
May 02, 2013, 03:08:38 AM
Do you use Java UI or Web interface? I just tried to reproduce it with desktop version and it's working fine.
Please attach UI log file (~/.nxmc/data/.metadata/.log for UNIX builds, similar in Windows, probably C:\Documents\USERNAME\.nxmc\...)
#905
Please provide more details about failed step
#906
Бан ставиться не должен. Пришлите мне пожалуйста IP и адрес (@bk.ru) приватным сообщением – я проверю логи.
#907
bk.ru нет в бан листе, мало того – есть 5 пользователей с почтой на этом домене.
Проверьте свой адрес на http://www.stopforumspam.com/

Если сеть за тунелем пересекается с сетью, в котором стоит netxmsd – нужно включить и настроить зоны: http://wiki.netxms.org/wiki/UM:Zones
Если адреса разные – то должно работать, проверьте коммуникации между сервером, на котором стоит netxmsd  и хостами за тунелем. Так же проверьте параметор MasterServers (Servers, etc.) на удаленных агентах, возможно (в случае трансляции) соединение приходит не с IP netxms-а, и агент просто не отвечает.
#908
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).
#909
It's outdated, please use to this guide: http://wiki.netxms.org/wiki/Web_Interface_Installation_Guide
#910
Таблицы пока не поддерживаются, только Agent List и SNMP Walk.
Инструкция: http://www.youtube.com/watch?v=HSs9mP_0XK0
#911
Confirmed, will be resolved in next release.
https://www.radensolutions.com/chiliproject/issues/260
#912
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
#913
Пример настройки пары DCI-ев и простой Dashboard на их основе: http://www.youtube.com/watch?v=ZfJQiUIDHY4
#915
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)