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

#6076
Zapustite s debug level 9 - posmotrim kakie SQL zaprosi delajutsja i na chem vse obrivaetsja. Takze mozno poprobovat' zapustit' pod gdb.

#6077
General Support / Re: Agent detection and Nodes
April 07, 2011, 12:26:48 AM
By default, server check configuration of each node every hour - it's called "configuration poll". You can forcibly execute configuration poll by right-clicking node in console and then selecting Poll->Configuration. Or you can just wait one hour.

Best regards,
Victor
#6078
General Support / Re: error loading database driver
April 07, 2011, 12:24:25 AM
Hi!

Did you select component called "Microsoft SQL DB-Library" during installation? Also, you can try to use ODBC driver instead of mssql.

Best regards,
Victor
#6079
Default configuration file name is /etc/nxagentd.conf. There are configuration file example with comments in source package: contrib/nxagentd.conf-dist. You can copy it to /etc/nxagentd.conf and modify as needed, or use as reference. There are also startup scripts for various platforms under contrib/startup.

Best regards,
Victor
#6080
Hi!

I see that this is a bit confusing... You should get netxms-1.0.11.tar.gz (common source package), unpack it, and run

./configure --with-agent
make
make install

Best regards,
Victor
#6081
Hi!

APKG file is an installer script with embedded archive, which mostly intended for centralized agent upgrades. Generic UNIX package is a source package, and using it is equivalent to just get source .tar.gz archive, unpack it, and run

./configure --with-agent
make
make install

For Ubuntu you can use Debian packages (netxms-base_1.0.11_i386.deb and netxms-agent_1.0.11_i386.deb).
For CentOS/RHEL and others you have to compile agent from sources.

Best regards,
Victor
#6082
Announcements / NetXMS 1.0.11 released
March 31, 2011, 04:01:23 PM
Hi all!

NetXMS version 1.0.11 is out. It's a bugfix release, which fixes few bugs in server and legacy management console.

Best regards,
Victor
#6083
General Support / Re: Limitation on script length?
March 30, 2011, 11:14:28 AM
Hi!

Yes, there is the limitation on script size of about 256KB, imposed by communication protocol. I'll fix that.

Best regards,
Victor
#6084
Popravil v 1.0.11.
#6085
General Support / Re: Downgrade database
March 29, 2011, 03:15:45 PM
You can try to execute the following SQL script to downgrade database:

DROP TABLE ap_common;
DROP TABLE ap_bindings;
DROP TABLE ap_config_files;
ALTER TABLE items DROP COLUMN system_tag;

ALTER TABLE users DROP COLUMN auth_failures;
ALTER TABLE users DROP COLUMN last_passwd_change;
ALTER TABLE users DROP COLUMN min_passwd_length;
ALTER TABLE users DROP COLUMN disabled_until;
ALTER TABLE users DROP COLUMN last_login;
ALTER TABLE users DROP COLUMN password_history;

DROP TABLE network_maps;
DROP TABLE network_map_elements;
DROP TABLE network_map_links;

UPDATE metadata SET var_value='105';

Best regards,
Victor
#6086
General Support / Re: Downgrade database
March 29, 2011, 03:09:15 PM
Hi!

There are no standard downgrade procedure. It is not safe to just change schema version. I'll take a look how to downgrade database manually.

Best regards,
Victor
#6087
Hi!

Unfortunately it requires more changes in server's code then I expect initially. I'm working on this right now. It should be included in 1.1.1 release.

Best regards,
Victor
#6088
Dobrij den'!

Vozmozno problema vse-ze v konkretnom faile. Poproboval sejchas zagruzit' proizvol'nij bol'shoj fail http://robotics10.utcluj.ro/images/big_map.jpg (9921x7015, 12M) - vrode vse ok.

Mozet est' vozmoznost' kuda-to vilozit' vashu kartu? Poprobuju posmotret', pochemu ne gruzitsja.

Viktor
#6089
Proveril, eto bug v konsoli - nel'zja postavit' pravo na upravlenie kartami. Kak workaround, mozno pomenjat' prava pol'zovatelja v baze:

UPDATE users SET system_access = 4194303 WHERE id = <user_id>

Eto dast pol'zovatelju vse prava.
#6090
General Support / Re: Cant Connect to SQL Server
March 24, 2011, 07:00:34 PM
Hi!

Try to use SQL server authentication and ODBC driver. MSSQL driver uses very old and outdated client library, which may now work as expected on WIndows Server 2008.

Best regards,
Victor