|
As well as the common system facilities ( mail , news , daemon , cron , etc), syslog provides a series of "local" facilities, numbers 0 to 7: LOCAL0 , LOCAL1 , ..., LOCAL7 .
Which ones are program defaults for common applications?
I'm looking to find ...
Started by Jonathan Clarke on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at serverfault):
The LOCALn facilities are available for any local use and can vary pretty widely from site to site) LOCAL3 is used by some versions of SpamAssassin This is often changed by the local admin to log to mail.
|
|
I currently have syslog configuration files using local0 to local7 setup in such a way, that a particular device is assign to an specific local facility pointing to separate directories and files for the device, for example:
*Entries related to the SYSLOG...
Started by 3D1L on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
You could log multiple servers to the same local#, but if you want separate files you should look.
|
|
I'm working on patching the DSDT for my HP Elitebook 8540w. There's apparently a bunch of different models of 8540w; this one has an i7-820 and Quadro FX 1800M graphics.
I've already extracted the DSDT and attempted to do my own patching, however, things...
Started by Lem on
, 20 posts
by 3 people.
Answer Snippets (Read the full thread at insanelymac):
Dsdt.Lem.zip 39.3K 50 downloads
DTGP
EHCI
FN KEYS
HDEF
HPET
IRQs
LPC*
OS PATCHING
PNLF
RTC
SMBUS
SHUTDOWN
FIX WARNINGS
FIX ERRORS
test it
mald0n.png 603bytes 25 downloads cavernous DSDT 01o.png 854bytes 23 downloads Thank you! You are correct, it is ... .
|
Ask your Facebook Friends
|
Hi I have an issue with bounced mail it does not happen all the time but at the same time is very frequent. Most of the time if I send an email to an address that does not exist then i get a bounce back into failues@domain however there seem to be instances...
Started by penfold45 on
, 6 posts
by 5 people.
Answer Snippets (Read the full thread at serverfault):
There are a couple ways to do ....
This happens when domain.com has an MX record.
As a local domain (not in mydestination , virtual_mailbox_domains or relay_domains - and some very and why "domain.com" is not recognized as a local address.
|
|
Hi Linux folk.
OS is Debian 6.0.3 x64
I am trying to setup Heartbeat and Haproxy
When starting hearbeat I get the following
CM1:~# /etc/init.d/heartbeat start Starting High-Availability services: IPaddr\[21315\]: INFO: Resource is stopped Done.
Any help...
Started by William Acree on
, 5 posts
by 3 people.
Answer Snippets (Read the full thread at ittoolbox):
03 13:58:45 CM1 heartbeat: \[22192\]: info: Local status now set to: 'up' Jan 03 13:58:45 CM1 03 13:58:45 CM1 heartbeat: \[22192\]: info: Local status now set to: 'active' IPaddr\[22243\]: 2012/01/03_13:58:45 INFO: Resource is stopped Jan....
|
|
Using Java Reflection, is it possible to get the name of a local variable? For example, if I have this:
Foo b = new Foo(); Foo a = new Foo(); Foo r = new Foo();
is it possible to implement a method that can find the names of those variables, like so:
...
Started by David on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
For example, take this simple class:
class TestLocalVarNames { public String aMethod(int arg) { String local1 = "a string"; StringBuilder local2 = new StringBuilder(); return ....
The names of local variables are kept in the .class file.
|
|
I'm fairly new to TCL, and am providing QA on some code developed by others (no really!). There are lots and lots of global variables in this particular program, and I sometimes see upvar used, often in conjunction with global. I understand that upvar...
Started by Andy Michaels on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Proc p1 { var1 } { upvar 1 $var1 local1 puts $local1 } proc p2 { } { set local2 "local2" p1 global by passing upvar #0 varName....
The difference is that upvar 1 $var local makes local take its value from the variable named scope.
|
|
Are there good techniques for monitoring cron tasks over a cluster?
We're starting to use cron to launch tasks at daily intervals. A few ideas for checking out information:
Add special application handling that logs information into some "network aware...
Started by Tristan Juricek on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at serverfault):
OPTIONS SYSLOGD_OPTIONS="-m 0 -r" [root@master ~]# cat /etc/syslog.conf | grep local local1.* /var/syslog.conf | grep local1 local1.* @192.168.1.3 [root@master ~]# cat /etc/sysconfig/syslog | grep SYSLOGD/log/myapp
(The first....
|
|
On Mon, 02 Feb 2009 04:56:34 +0300, Subscriber <subscr1024@mail.ru
I updated my 8-CURRENT and now system freeze shortly after boot (~0.5-3
minutes). I see following messages in console:
Jan 31 02:18:03 cache kernel: ath0: bad series0 hwrate 0x0...
Started by Subscriber on
, 4 posts
by 2 people.
Answer Snippets (Read the full thread at omgili):
Sam
_______________________________________________
freebsd-current@freebsd.org mailing list....
On Sun, 01 Feb 2009 20:41:13 -0800, Sam Leffler <sam@freebsd.org
I need to see the output of sysctl dev.ath.0 and how your card is
configured .
|
|
What exactly are the Python scoping rules?
If I have come code:
code1 class Foo: code2 def spam code3 for code4..: code5 x()
Where is x found? Some possible choices include the list above:
In the enclosing source file In the class namespace In the function...
Answer Snippets (Read the full thread at stackoverflow):
It creates a # new local variable also called: the innermost scope, which is searched first, contains the local names; the namespaces of any enclosing named x has to be resolved....
(): # Again, this doen't affect func's local1 variable.
|