Ik heb een kort vraagje. De LP daemon geeft meldingen als ik ingelogd ben via SSH.
Als ik naar mijn /etc/syslog.conf kijk
Ik had de volgende 3 regels:
... veranderd in:
Vervolgens heb ik de syslog daemon gestopt, en weer gestart
Maarrrrrr, de meldingen blijven in beeld komen.
Kijk ik ergens overheen? Doe ik iets verkeerd?
code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| Message from lp on testbak (???) [ Thu Jun 14 11:23:49 ] ...
Subject: Problem with printer jd-b3220-3
The printer jd-b3220-3 has stopped printing for the reason given below.
Fix the problem and bring the printer back on line.
Printing has stopped, but will be restarted in a few minutes;
issue an enable command if you want to restart sooner.
Unless someone issues a change request
lp -i jd-b3220-3-796 -P ...
to change the page list to print, the current request will be reprinted from
the beginning.
The reason(s) it stopped (multiple reasons indicate repeated attempts):
exec exit fault |
Als ik naar mijn /etc/syslog.conf kijk
code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
| #ident "@(#)syslog.conf 1.5 98/12/14 SMI" /* SunOS 5.0 */ # # Copyright (c) 1991-1998 by Sun Microsystems, Inc. # All rights reserved. # # syslog configuration file. # # This file is processed by m4 so be careful to quote (`') names # that match m4 reserved words. Also, within ifdef's, arguments # containing commas must be quoted. # *.err;kern.notice;auth.notice /dev/sysmsg *.err;kern.debug;daemon.notice;mail.crit /var/adm/messages *.alert;kern.err;daemon.err operator *.alert root *.emerg * # if a non-loghost machine chooses to have authentication messages # sent to the loghost machine, un-comment out the following line: #auth.notice ifdef(`LOGHOST', /var/log/authlog, @loghost) mail.debug ifdef(`LOGHOST', /var/log/syslog, @loghost) # # non-loghost machines will use the following lines to cause "user" # log messages to be logged locally. # ifdef(`LOGHOST', , user.err /dev/sysmsg user.err /var/adm/messages user.alert `root, operator' user.emerg * ) |
Ik had de volgende 3 regels:
code:
1
2
3
| *.alert;kern.err;daemon.err operator *.alert root *.emerg * |
... veranderd in:
code:
1
2
3
| #*.alert;kern.err;daemon.err operator #*.alert root #*.emerg * |
Vervolgens heb ik de syslog daemon gestopt, en weer gestart
code:
1
2
| /etc/init.d/syslog stop /etc/init.d/syslog start |
Maarrrrrr, de meldingen blijven in beeld komen.
Kijk ik ergens overheen? Doe ik iets verkeerd?