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

#916
Нет, нельзя. Мы давно думаем, как бы это попроще сделать (особенно критично для Android клиента), но пока решения нет.

Лично я обычно ставлю WebUI на тот же сервер, где работает netxmsd (и обновляю одновременно), плюс на всякий случай держу последние несколько версий на лаптопе.
#917
Yes, if it asked you for login and password – it works.

Default credentials:
Login: "admin"
Password: "netxms"
#918
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"
#919
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.
#920
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\...)
#921
Please provide more details about failed step
#922
Бан ставиться не должен. Пришлите мне пожалуйста IP и адрес (@bk.ru) приватным сообщением – я проверю логи.
#923
bk.ru нет в бан листе, мало того – есть 5 пользователей с почтой на этом домене.
Проверьте свой адрес на http://www.stopforumspam.com/

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