Navigation: Home | Download | Screenshots | Documentation | Support | Forum | Bug tracker | Users | Contacts | About
Step-By-Step guide:

NB! "VERSION" should be replaced with actual version

1) Grab latest version from http://www.netxms.org/download/
2) Unpack it
	$ tar zxvf netxms-VERSION.tar.gz
3) Change directory to netxms-VERSION and run "configure" script.
	$ cd netxms-VERSION
	$ sh ./configure --prefix=/opt --with-server --with-mysql --with-agent

Important arguments:
	* --prefix=VALUE: installation prefix, all files go there
	* --with-server: build server. Don't forget DB Driver!
	* --with-pgsql: build Postgres DB Driver (used by server)
	* --with-mysql: build MySQL DB Driver (used by server)
	* --with-agent: build monitoring agent.
		Note: We advise you to install agent on a server box too.

4) run "make" and "make install"
	$ make
	$ make install

5) Copy sample config files to desired locations
	$ cp contrib/netxmsd.conf-dist /etc/netxmsd.conf
	$ cp contrib/nxagentd.conf-dist /etc/nxagentd.conf

6) Create Database and User with access to this database

	Mysql Example:
	$ mysql -U root -p mysql
	mysql> CREATE DATABASE netxms;
	mysql> GRANT ALL ON netxms.* TO netxms IDENTIFIED BY 'PaSsWoRd';
	mysql> \q

7) Modify config files to suit your needs, in agent config add loopback
	address to allowed list.

8) Initialise this database using sql-script in sql/dbinit_DBTYPE.sql
	DBTYPE can be "mssql", "mysql", "pgsql" or "oracle"

	MySQL Example:
	$ mysql -u netxms -p netxms < sql/dbinit_mysql.sql

9) Run agent and server. Note: run agent first!
	$ PREFIX/bin/nxagentd -d -c /etc/nxagentd.conf
	$ PREFIX/bin/netxmsd --config /etc/netxmsd.conf

10) Check also output of "PREFIX/bin/nxagentd -h" and "PREFIX/bin/netxmsd help"

11) Try to connect using management console, default login/password is
	admin/netxms


==============================================================================

Users mailing list: netxms-users@alk.lv
Subscribe command: send mail to minimalist@alk.lv with
	"subscribe netxms-users" in subject line