|
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.
|
|
Hello,
i have 2 local Cards:
Local1: HD+ Germany
Local2: Srg Swiss Full HD
i search for this Cards:
- Sky it Full HD with Primafila
- Digital + Spain Full HD with Taquila
i search only original cards and freeze free
if you have one of this Cards, please...
Started by Wusel on
, 10 posts
by 1 people.
Answer Snippets (Read the full thread at cardsharing):
Hello,
i have 2 local Cards:
Local1: HD+ Germany
Local2: Srg Swiss Full HD
i search for this Cards Hello,
i have 2 local Cards:
Local1: HD+ Germany
Local2: Srg Swiss Full HD
i search for this Cards Hello,
i have 2 local....
|
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.
|
|
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.
|
|
I have a oracle database server running on Head Office IP address 192.168.10.1
We have a server IP address 192.168.20.1 at Branch office and
this server has the connectivity with Head Office DB via Checkpoint Secure Client.
This branch office have four...
Started by user606493 on
, 12 posts
by 4 people.
Answer Snippets (Read the full thread at oracle):
Let's say your local server is local1 , the remote server - simply create tunnel g = make the local port 1521 global/ public on local1 -L 1521:remotedb1:1521 on local....
And the remote headoffice server, allowing ssh access.
|
|
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 .
|
|
On Sat, 31 Oct 2009 12:16:33 +0000 (UTC), mss <mss@dev.null
In section '8.2.1 Function Definition Syntax' of the GNU gawk manual,
I read:
http://www.gnu.org/manual/gawk/gawk.html#Definition-Syntax
'During execution of the function body, the arguments...
Started by mss on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at omgili):
{ baz = 42 ; bar = 99 ; foo(5,7) }
function foo (par1, par2, local1, local2, bar)
{
baz = 0 # accesses and resets the global variable
bar = 1 # local to function defined, global.
|