1833772 Members
2224 Online
110063 Solutions
New Discussion

named syslog message

 
SOLVED
Go to solution
Samuel Mota
Occasional Contributor

named syslog message

Hi,

I'm running an HP-UX 11i V1 (B.11.11 U 9000/800) on an internal network.

My syslog is plenty of named messages like the following one, is this message a real error or should I try to make named less verbose?

Sep 30 11:31:01 mybox named[705]: Cleaned cache of 0 RRs
Sep 30 11:31:01 mybox named[705]: USAGE 1128090661 1127748661 CPU=0.05u/0.07s CHILDCPU=0u/0s
Sep 30 11:31:01 mybox named[705]: NSTATS 1128090661 1127748661 A=1 PTR=3
Sep 30 11:31:01 mybox named[705]: XSTATS 1128090661 1127748661 RR=0 RNXD=0 RFwdR=0 RDupR=0 RFail=0 RFErr=0 RErr=0 RAXFR=0 RLame=0 ROpts=0 SSysQ=0 SAns=4 SFwdQ=0 SDupQ=0 SErr=0 RQ
=4 RIQ=0 RFwdQ=0 RDupQ=0 RTCP=0 SFwdR=0 SFail=0 SFErr=0 SNaAns=0 SNXD=4
6 REPLIES 6
Pat Lieberg
Valued Contributor

Re: named syslog message

Looks like a normal maintenance message from named.
baiju_3
Esteemed Contributor
Solution

Re: named syslog message

Have you setup DNS services on this server.
If not try /sbin/init.d/named stop and observe.


thx,
bl.
Good things Just Got better (Plz,not stolen from advertisement -:) )
Stephen Keane
Honored Contributor

Re: named syslog message

Anything unusual in /etc/named.conf ?
Samuel Mota
Occasional Contributor

Re: named syslog message

Nothing unusual I think:

// generated by named-bootconf.pl

options {
check-names response fail; // do not change this
check-names slave warn;
directory "/etc/named.data"; // running directory for named

// query-source address * port 53;
};

//
// type domain source file
//
zone "0.0.127.IN-ADDR.ARPA" {
type master;
file "db.127.0.0";
};

zone "netsetux" {
type master;
file "db.mydomain";
};

zone "1.110.10.IN-ADDR.ARPA" {
type master;
file "db.10.110.1";
};

zone "." {
type master;
file "db.root";
};

In fact I must run named service because some applications are using it to resolve it's own domain. (at least this was what the app support told us:)
Stephen Keane
Honored Contributor

Re: named syslog message

If you run

# ps -ef | grep "named"

Does the named daemon have a flag -dN associated with it, where 'N' is an integer.
Samuel Mota
Occasional Contributor

Re: named syslog message

No, no -dN flag enabling logging.