Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

AIX Syslogd startup

Status
Not open for further replies.

Mag0007

MIS
Feb 15, 2005
829
US
Hey:

On AIX 4.3.3 how do I pass an argument to syslogd at startup? currently I am doing,

stopsrc -s syslogd
startsrc -s syslogd -a "-r"

How can I start it up with "-r" option on startup?

TIA
 
In AIX syslog is started from the /etc/rc.tcpip file uncomment out the following line and it should start when the system starts up.

# Start up syslog daemon (for error and event logging)
start /usr/sbin/syslogd "$src_running"
 
Use -r option as below

# Start up syslog daemon (for error and event logging)
start /usr/sbin/syslogd "$src_running" -r
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top