1
0
Fork 0
mirror of https://github.com/pavel-odintsov/fastnetmon synced 2024-05-26 16:16:09 +02:00

Add documentation about multi-instance mode

This commit is contained in:
Pavel Odintsov 2015-09-28 18:44:01 +03:00
parent a73e5d314f
commit a63dea5812

23
docs/MULTIPE_INSTANCES.md Normal file
View File

@ -0,0 +1,23 @@
### We could run multiple instances of FastNetMon on same server
First of all please create multiple configuration files for each instance.
In each file you should specify uniq paths for following options for each separate instance:
```bash
# Path to pid file for checking process liveness
pid_path = /var/run/fastnetmon.pid
# Path to file where we store information for fastnetmon_client
cli_stats_file_path = /tmp/fastnetmon.dat
```
Next you need to specify custom path to configuration file:
```bash
./fastnetmon --configuration_file=/etc/fastnetmon_mayflower.conf --daemonize
./fastnetmon --configuration_file=/etc/fastnetmon_hetzner.conf --daemonize
```
FastNetMon cli client expects stats file with default path /tmp/fastnetmon.dat so you need to set custom path with environment variable:
```bash
cli_stats_file_path=/tmp/fastnetmon_second_instance.dat ./fastnetmon_client
```