Changes between Version 2 and Version 3 of RaspberryPiSurveillanceMonitor


Ignore:
Timestamp:
06/05/17 08:17:33 (7 years ago)
Author:
Rick van der Zwet
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • RaspberryPiSurveillanceMonitor

    v2 v3  
    6464*  *    * * *   root    /root/kill_stuck_omxplayer.sh | logger
    6565}}}
     66
     67= rsyslog issues =
     68My log was flooding with messages like this:
     69{{{
     70Jun  5 10:08:31 raspberrypi rsyslogd-2007: action 'action 17' suspended, next retry is Mon Jun  5 10:10:01 2017 [try http://www.rsyslog.com/e/2007 ]
     71}}}
     72
     73Looking at the [https://www.raspberrypi.org/forums/viewtopic.php?f=91&t=122601| RaspberryPi Forum] it was caused by messages not being read from file:/dev/xconsole To fix this edit file:/etc/rsyslog.conf and comment out the block sending the entries:
     74{{{
     75daemon.*;mail.*;\
     76        news.err;\
     77        *.=debug;*.=info;\
     78        *.=notice;*.=warn       |/dev/xconsole
     79}}}