Debian Stretch - Monit: differenze tra le versioni

Riga 63: Riga 63:
<pre>
<pre>
# systemctl restart monit
# systemctl restart monit
</pre>
==Creare la configurazione per un nuovo servizio da monitorare==
Il template per il server FTP ProFTP non è disponibile in Monit, e quindi dobbiamo crearcelo:
<pre>
# nano /etc/monit/conf-available/proftpd
</pre>
con contenuto:
<pre>
check process proftpd with pidfile /var/run/proftpd.pid
  start program = "systemctl start proftpd"
  stop  program = "systemctl stop proftpd"
if failed port 21 protocol ftp then restart
</pre>
</pre>