Kategorie
Linux Ubuntu

rsyslog error: Could no open output pipe ‚/dev/xconsole’:

Jeśli po restarcie demona rsyslog w logach macie poniższy komunikat:

Could no open output pipe '/dev/xconsole': No such file or directory [try http://www.rsyslog.com/e/2039 ]

wystarczy otworzyć w dowolnym edytorze plik /etc/rsyslog.d/50-default.conf i zmienić xconsole na console.

daemon.*;mail.*;\
    news.err;\
    *.=debug;*.=info;\
    *.=notice;*.=warn   |/dev/xconsole

zmieniamy na:

daemon.*;mail.*;\
    news.err;\
    *.=debug;*.=info;\
    *.=notice;*.=warn   |/dev/console

Po restarcie rsyslog’a nie powinno już być błędów w logach:

service rsyslog restart