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

#376
Announcements / Re: NetXMS 2.0.7 released
December 15, 2016, 07:19:54 PM
Hello.

Check now.

Quote from: radw on December 15, 2016, 05:22:30 PM
Hello, it seems that v2.0.7 is not on http://packages.netxms.org/debian/ yet..

Regards.
#377
General Support / Re: Downgrade from 2.1-M1
November 28, 2016, 07:31:55 PM
Hello.

Backup database before upgrade.

Database manager don't support downgrading, it will take too much resources to maintain such functionality.
We can do manual downgrade on case-by-case basis, but only if there is not other way for customer.

Best regards,
Alex.
#378
Общие вопросы / Re: ver 2.0.6
November 15, 2016, 01:03:28 PM
Configuration -> SNMP Credentials
#379
General Support / Re: Startup Script
November 11, 2016, 09:30:59 PM
I'm successfully use this one: https://github.com/netxms/packages-deb/blob/master/netxms-server.netxmsd.init

Which one do you use?
#380
Yes, it's not enough to change version - we need to undo all changes to the schema.

What do you mean, you lost devices from the map? Network map? Do you still have devices in in the system (can you find them in object browser)?
#381
It will be really tricky. Possible, but tricky.
I suggest you to keep 2.1-M1, if possible. Despite "beta" state, it's stable and we already have couple of customers running this version in production.
#382
Hello.

No, it was a mistake. I cleaned up repo.

Regarding schema downgrade - we are looking into this.
Do you use table DCIs? (they are converted to new format in 2.1 and will require some efforts to convert them back)
#383
Feature Requests / Re: External API
November 07, 2016, 12:07:11 PM
Hello

Not at the moment, but you can implement methods you need using our Java API.
#384
Общие вопросы / Re: RADIUS Auth protocol
November 04, 2016, 09:54:45 AM
Добрый день.

Буквально на днях добавили поддержку.
Код сейчас только в 2.1, но пожалуй перенесем в 2.0.6 тоже.
#385
Там некоторая магия с версиями.
Для десктопа надо использовать 3.8.2: http://archive.eclipse.org/eclipse/downloads/drops/R-3.8.2-201301310800/
Для веба - 4.4: https://eclipse.org/downloads/packages/release/luna/sr2

Инструкция для веба более сложная, тут: https://wiki.netxms.org/wiki/How_to_setup_Eclipse/RAP
Для десктопа должно быть достаточно пакетов из eclipse_addons.txt
#386
Almost everything is in the database. You can dump database while netxmsd is running.

1) Backup netxmsd.conf / nxagentd.conf
2) Backup /var/lib/netxms (if you custom images, sounds or packages)
3) Backup database (pg_dump, mysqldump, exp, etc.)

Restore procedure is:
1) Restore or recreate config
2) Restore files, if any
3) Restore database
4) Check data consistency: "nxdbmgr check"
#387
Имя меняется в двух случаях:

1) Включена опция ResolveNodeNames в конфиге сервера и текущее имя - IP адрес (ноды или любого ее интерфейса). Этот режим по умолчанию включен.
Порядок такой (на 4-м уровне дебага будет видно в логах):
* dns backresolve по primary address, потом по всем интерфейсам
* если не сработало, и есть агент - запрашивается System.Hostname
* если не сработало, и есть SNMP - запрашивается .1.3.6.1.2.1.1.5.0

2) Включена опция SyncNodeNamesWithDNS, но в этом случае используется только DNS.
#388
Make sure you are running Java8
#389
Похоже vmgr.nsm не добавили в пакеты. Вечером поправлю и выложу апдейт в репозиторий.
#390
Looks like startup script is a bit incorrect.

Try to do following changes:

1) in stop section add "--retry 60" to start-stop-daemon:

stop)
        log_daemon_msg "Stopping NetXMS server" "netxmsd"
        start-stop-daemon --stop --quiet --pidfile $PIDFILE --retry 60
        log_end_msg $?


2) Add following section into /etc/init.d/netxmsd (just after #!/bin/sh):

### BEGIN INIT INFO
# Provides:          netxmsd
# Required-Start:    $remote_fs network nxagentd mysql
# Required-Stop:     $remote_fs mysql
# Default-Start:     2 3 4 5
# Default-Stop:      0 1 6
# Short-Description: NetXMS server initscript
# Description:       NetXMS server startup script
### END INIT INFO


After change is made - run "update-rc.d netxmsd defaults"