You can install nrep_nt on any windows OS (2000 workstation/server , XP, 2003).
So, in order to test, I've installed nrpe_nt on my computer (XP).
The service is launched with an account which have some administrator's rights on domain.
Search found 7 matches
- Fri Nov 05, 2004 8:16 am
- Forum: Scripts and Templates
- Topic: Windows WMI with Cacti on Linux server
- Replies: 30
- Views: 50959
- Wed Oct 20, 2004 11:19 am
- Forum: Scripts and Templates
- Topic: Windows WMI with Cacti on Linux server
- Replies: 30
- Views: 50959
NRPE
In order to monitor Windows servers from a linux box with WMI, you should use NRPE_NT. Perl scripts posted in this forum can be easily adapted : Per exemple, on cacti : Original "input string" was : perl <path_cacti>/scripts/w32_query_LogicalDisk.pl <hostname> <driveletter> New "input...
- Wed Mar 03, 2004 8:48 am
- Forum: Help: General
- Topic: cacti in a chroot environement
- Replies: 3
- Views: 1516
cacti in a chroot environement
Hi,
Be carreful with Mysql :
If you try to connect to "localhost",
the client try to open an UNIX socket "/tmp/mysql.sock".
If you use "127.0.0.1", the client will use TCP/IP stack
(connect to port tcp/3306).
This is what you want.
Be carreful with Mysql :
If you try to connect to "localhost",
the client try to open an UNIX socket "/tmp/mysql.sock".
If you use "127.0.0.1", the client will use TCP/IP stack
(connect to port tcp/3306).
This is what you want.
- Sun Feb 29, 2004 8:29 am
- Forum: Help: Windows Specific
- Topic: OID Usage for 2003 Server
- Replies: 2
- Views: 3677
Hi,
I've posted a patch which allows CACTI to have multiple polling interval :
http://www.raxnet.net/board/viewtopic.php?t=2154
Not tested on Windows....
Thanks for your link.
Regards,
N.C.
I've posted a patch which allows CACTI to have multiple polling interval :
http://www.raxnet.net/board/viewtopic.php?t=2154
Not tested on Windows....
Thanks for your link.
Regards,
N.C.
- Wed Feb 25, 2004 4:52 pm
- Forum: Feature Requests
- Topic: Nagios& Cacti - integration
- Replies: 7
- Views: 12334
Nagios& Cacti - integration : Access to CACTI easier
I've wrote a little patch which makes access to CACTI's graphs easier: A symbolic name (leaf's name or host's name) can be used now. Modified file : cacti/graph_view.php 1] In tree view mode : Find First Tree and leaf from leaf's name (make "tree_id" and "leaf_id") Example : http...
- Tue Feb 24, 2004 4:40 pm
- Forum: Feature Requests
- Topic: Polling Interval
- Replies: 20
- Views: 36499
Polling Interval : a patch !
I've just finished to write what I explained last time. In order to work, Modify crontab : */1 * * * * cactiuser php /var/www/cacti/cmd.php > /dev/null 2>&1 Modify database : ALTER TABLE `data_input_data_cache` ADD `rrd_step` MEDIUMINT( 8 ) UNSIGNED, ADD `next_step` MEDIUMINT( 8 ) UNSIGNED; Appl...
- Tue Feb 24, 2004 2:33 pm
- Forum: Help: General
- Topic: Little bug found in poller cache
- Replies: 1
- Views: 1014
Little bug found in poller cache
The "Clear Poller Cache" function doesn't clean correctly the "data_input_data_fcache" table. I've found only these lines in lib/utility.php : db_execute("delete from data_input_data_fcache where local_data_id=$local_data_id"); But, when a data source is destroyed, the ...