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

#5041
Попробуйте добавить --with-internal-libtre при конфигурации.
#5042
Общие вопросы / Re: Баги 1.2.3
September 12, 2012, 01:40:40 PM
Иконка там неправильная, но и не от старой консоли тоже. Поправлю.
#5043
Общие вопросы / Re: Баги 1.2.3
September 12, 2012, 12:07:16 PM
Выложил обновленные исходники:  https://www.netxms.org/download/archive/netxms-1.2.3.1.tar.gz. Попробуйте.
#5044
Общие вопросы / Re: Баги 1.2.3
September 12, 2012, 11:31:03 AM
Разобрался - это я неудачно исправил ошибку с n=n-1. Сейчас поправлю и сделаю новый билд.
#5045
Feature Requests / Re: multiple Selection
September 12, 2012, 10:13:24 AM
Hi!

It's usually done in all places where it makes sense (if not forgotten :) ). If somewhere it is missing, please report exact places.

Best regards,
Victor
#5046
Общие вопросы / Re: Баги 1.2.3
September 12, 2012, 09:55:24 AM
Ага, поправлю сейчас. Как workaround, попробуйте в базе сделать такой запрос:

UPDATE network_map_links SET bend_points='' WHERE bend_points is NULL;

После этого сервер падать не должен.

А что за база кстати?
#5047
Hi!

Try to omit port number, and use only host name, or loopback address 127.0.0.1. Check that MySQL server is running.

Best regards,
Victor
#5048
Общие вопросы / Re: Баги 1.2.3
September 11, 2012, 07:57:08 PM
Да, это может быть если созданы графики в новой консоли. Здесь совместимость только в одну сторону. Legacy консоли давно пора на свалку истории...
#5049
Announcements / NetXMS 1.2.3 released
September 11, 2012, 04:31:29 PM
Hi all!

NetXMS version 1.2.3 is out! Changes since previous release:

- Improved LLDP support
- New "Find IP address" function (find node's switch port by IP address)
- Set MAC address for "unknown" interfaces from ARP cache
- Detection of IP address change for nodes without agent and SNMP
- Agent on Windows is in UNICODE
- UNICODE build supported on Linux and FreeBSD
- ifXTable used when possible for interface traffic DCIs creation
- Server can be configured to use DNS host names instead of FQDN for newly discovered nodes
- Script hooks for configuration poll
- Management console:
   - Configurable date and time format
   - Background color can be set for network maps
   - Different connection routing algorithms for network maps
   - Fixed incorrect display of string data in DCI history
   - Added "copy to clipboard" action in MAC address search reults
   - Added "copy to clipboard" action in interface tab
   - Double click in MIB explorer walk results selects OID in tree
   - Fixed status indicator update problems in object browser
   - Fixed dashboard navigator refresh issues
   - Object tools execution on multiple objects
   - Implemented "Clear collected data" action for DCIs
   - Fixed missing scrollbar issue in VLAN view
- Added commands "get" and "set" to nxdbmgr to manager server configuration variables
- New NXSL function: RenameObject
- Web interface look is more consistent with desktop client
- Fixed critical bug in NXSL interpreter (incorrect execution of operation --)
- Android client:
   - Added: nodes and dashboards container status in home screen reflect children status (icon changes on WARNING, MINOR, MAJOR, and CRITICAL).
   - Added: interfaces tab under node info activity
   - Added: handle alarm sticky acnowledge action and state.
   - Added: sort of alarm list in node info tab.
   - Added: multiple selection for actions on alarms list.
   - Added: sort by node name on alarm list.
   - Fixed bug: added protection to null pointers
   - Fixed bug: hidden wrong menu item in alarms tab

Best regards,
Victor
#5050
Its just preconfigured group, without any special power - just preconfigured access to all objects. It's probably worth to convert it to built-in group (or create separate built-in group) with any users inside treated as built-in admin.

Best regards,
Victor
#5051
Hi!

You mean predefined graphs? What error message he get? Also, check that Admin groups added to access list in predefined graphs.

Best regards,
Victor
#5052
Общие вопросы / Re: вопросик.
September 10, 2012, 11:44:05 PM
Сделал. Если в Script Library есть скрипт с названием Hook::ConfigurationPoll, то он запускается для каждой ноды в коне полла.
#5053
Общие вопросы / Re: Баги 1.2.3-rc4
September 10, 2012, 10:58:55 PM
Да, потрясающий баг :( В интерпретаторе операция -- выглядит так:


void NXSL_Value::decrement()
{
   if (isNumeric())
   {
      switch(m_nDataType)
      {
         case NXSL_DT_INT32:
            m_value.nInt32++;
            break;
         case NXSL_DT_UINT32:
            m_value.uInt32++;
            break;
         case NXSL_DT_INT64:
            m_value.nInt64++;
            break;
         case NXSL_DT_UINT64:
            m_value.uInt64++;
            break;
         case NXSL_DT_REAL:
            m_value.dReal++;
            break;
         default:
            break;
      }
      invalidateString();
   }
}


Похоже придется таки 1.2.3 перепаковывать... Релиз будет завтра.
#5054
General / Re: About Compling Result of Java Console 1.2.2
September 10, 2012, 05:39:46 PM
Hi!

Configurable background colors introduced only in 1.2.3. At one point there was a bug which resets background color to black. It is fixed now. Looks like you get svn version instead of 1.2.2 release.

Best regards,
Victor
#5055
Hi!

To create node manually in new console, right-click on the container object where you want to create node and select "Create node".

Best regards,
Victor