リンク: [ホーム] [自己紹介] [リンク集] [アルバム] [ソフトウェア] [発表文献] [その他]

まさおのChangeLogメモ / 2005-06-10

01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30

2005-06-10 Fri

* syslog.conf+cron

messages が cron ログで溢れるので、別ファイルにすることにする。
→ /var/log/cron

--- /etc/syslog.conf.20050610 2005-06-10 16:32:14.049304200 +0900
+++ /etc/syslog.conf 2005-06-10 16:42:47.708973288 +0900
@@ -4,7 +4,7 @@
 
 # Log anything (except mail) of level info or higher.
 # Don't log private authentication messages!
-*.info;mail.none;authpriv.none /var/log/messages
+*.info;mail.none;authpriv.none;cron.none /var/log/messages
 
 # The authpriv file has restricted access.
 authpriv.* /var/log/secure
@@ -22,3 +22,6 @@
 
 # Save boot messages also to boot.log
 local7.* /var/log/boot.log
+
+# Save cron
+cron.* /var/log/cron