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 - Victor Kirhenshtein

#3211
Hi,

what version you are installing?

Best regards,
Victor
#3212
Quote from: heizeberg on March 20, 2015, 03:37:32 PM
Where i can change the Ip adress of the NETXMS Server ? At the moment i connect via localhost

you mean in web UI? In desktop console you just type server DNS name or IP address in login dialog.

Best regards,
Victor
#3213
General Support / Re: Pushing beta
March 22, 2015, 10:54:12 PM
Actually it was not a good idea to hide 1.2.17 in archive. We will change download page to offer both versions. As for M releases - it may be quite stable (as 2.0-M2 for example) or may not. Main reason why we use M releases now is significant amount of internal changes (mostly targeted at IPv6 support).

Best regards,
Victor
#3214
I see a typo in your config: DBPasswort - should be DBPassword.

Best regards,
Victor
#3215
Hi,

it should work. Can you provide a screenshot of both rules so I could see them completely?

Best regards,
Victor
#3216
Feature Requests / Re: 3com switchs
March 20, 2015, 01:25:09 PM
What you get if you run Tools -> Find MAC address on MAC address 00:19:D1:80:EC:DB?

Best regards,
Victor
#3217
General Support / Re: Monitoring offsite network
March 20, 2015, 01:22:35 PM
Currently it's not possible to setup connection from proxy agent to server. We have it in our roadmap though.

Best regards,
Victor
#3218
Hi!

Do you run console ob the server or on your workstation? Do you have java runtime installed (you need JRE 7 or higher, 64 bit if you are using 64 bit console).

Best regards,
Victor
#3219
Hi,

I've fixed this for 2.0-M3. Now only visible dashboards or charts are updated automatically.

Best regards,
Victor
#3220
Quote from: bloodlin on March 10, 2015, 12:51:56 PM
Еще вопросы - стоит WEBUI x64 под win 8.1 - по умолчанию язык русский - можно ли сменить языковой пакет на английский?
При коннекте на webui - сервер к которому коннектиться -  всегда указан 127.0.0.1 - в каком файле можно указать нужный мне Ip адрес сервера, что бы не прописывать его каждый раз?
Спасибо.

Web UI язык определяет из браузера. Можно к URL дописать ?lang=en - тогда будет английский. Жестко задать язык сейчас нельзя.

Адрес сервера прописывается в файле nxmc.properties. В каталоге WebUI\nxmc\lib должен быть файл nxmc.properties.sample - переименуйте его в nxmc.properties и подправьте как надо.
#3221
Я имел ввиду в скрипте написать int64($1) - это преобразование типов:


return int64($1)*8;

#3222
Можно через transformation script в таблице. Табличный скрипт получает объект класса Table (https://wiki.netxms.org/wiki/NXSL:Table) как $1. Поделить значение колонки с именем "VALUE" на 1024 можно так:


idx = $1->getColumnIndex("VALUE");
for(i = 0; i < $1->rowCount; i++)
{
   curr = $1->get(i, idx);
   $1->set(i, idx, curr / 1024);
}

#3223
Скорее всего переполнение 32 бит целого. Попробуйте использовать int64($1).
#3224
Общие вопросы / Re: websms.ru
March 12, 2015, 05:20:35 PM
Сервер на Linux'е? Тогда скорее всего не установлен curl. Надо поставить curl (dev package) и пересобрать сервер.
#3225
MIB написан совершенно не по стандарту. RFC требует чтобы все идентификаторы объектов начинались со строчной буквы - а здесь они все начинаются с заглавной. Вторая проблема (не такая серьезная) - названия объектов пересекаютрся со стандартными MIB'ами (например ifIndex). Самым хорошим вариантом было бы подправить этот MIB дописав ко всем объектам префикс (например qnap или nas).