This post is more than 5 years old
14 Posts
0
814
January 23rd, 2007 11:00
Disable message from Networker into console
Hello, anybody know how to disable messages from Networker into console AIX?!
When I start the service " /etc/rc.nsr ", lot of messages is going to console, I don't like to see them.
With I send the command " /etc/rc/nsr > /dev/null 1&2 ", it don't have any change.
My S.O is AIX 5.3, and my Networker is 7.3.2
thanks !!!
When I start the service " /etc/rc.nsr ", lot of messages is going to console, I don't like to see them.
With I send the command " /etc/rc/nsr > /dev/null 1&2 ", it don't have any change.
My S.O is AIX 5.3, and my Networker is 7.3.2
thanks !!!
No Events found!


ble1
6 Operator
•
14.4K Posts
•
56.2K Points
0
January 24th, 2007 14:00
ble1
6 Operator
•
14.4K Posts
•
56.2K Points
0
January 23rd, 2007 14:00
site2
14 Posts
0
January 24th, 2007 09:00
cat /etc/rc.nsr
# Copyright (c) 1990-2006, EMC Corporation
# All rights reserved.
(echo 'starting NetWorker daemons:') > /dev/null
if [ -f /bin/nsrexecd ]; then
if [ -f /bin/NetWorker.clustersvr ]; then
if [ -f /nsr.NetWorker.local -o -h /nsr.NetWorker.local ]; then
if [ -h /nsr ]; then
rm -f /nsr
ln -s /nsr.NetWorker.local /nsr
fi
fi
fi
(/bin/nsrexecd) > /dev/null 2>&1
(echo ' nsrexecd') > /dev/null
fi
if [ -f /bin/lgtolmd ]; then
(/bin/lgtolmd -p /nsr/lic -n 1) > /dev/null 2>&1
(echo ' lgtolmd') > /dev/null
fi
if [ -f /bin/nsrd -a ! -f /bin/NetWorker.clustersvr ]; then
(/bin/nsrd) > /dev/null 2>&1
(echo ' nsrd') > /dev/null
fi
if [ -f /bin/nsrwreg ]; then
(/bin/nsrwreg) > /dev/null 2>&1
fi
And the syslog.conf
# Start of lines added by NetWorker - DO NOT DELETE OR CHANGE THIS LINE
daemon.notice /dev/null
daemon.notice /nsr/logs/messages
daemon.notice operator
local0.notice /nsr/logs/summary
local0.alert root, operator
# DO NOT DELETE OR CHANGE THIS LINE - End of lines added by NetWorker
But the messages continue
site2
14 Posts
0
January 26th, 2007 02:00
Thanks !!