On 4/27/06, Devon Harding <devonharding@xxxxxxxxx> wrote: > I have my one of my xinetd service set to redirect http sevices to > another server. I'm getting this in /etc/log/messages: Any Idea > whats causing this? > > Apr 27 13:16:42 gatekeeper xinetd[2573]: Exiting... > [file=/etc/xinetd.d/http] [line=4]116]: Bad socket type: stream > Apr 27 13:16:43 gatekeeper xinetd[3116]: Error parsing attribute > socket_type - DISABLING SERVICE [file=/etc/xinetd.d/http] [line=4] > [file=/etc/xinetd.d/http] [line=5]116]: Bad service flag: REUSE > Apr 27 13:16:43 gatekeeper xinetd[3116]: Error parsing attribute flags > - DISABLING SERVICE [file=/etc/xinetd.d/http] [line=5] > [file=/etc/xinetd.d/http] [line=6]116]: Bad value for wait: no > Apr 27 13:16:43 gatekeeper xinetd[3116]: Error parsing attribute wait > - DISABLING SERVICE [file=/etc/xinetd.d/http] [line=6] > [file=/etc/xinetd.d/http] [line=7]116]: Unknown user: root > Apr 27 13:16:43 gatekeeper xinetd[3116]: Error parsing attribute user > - DISABLING SERVICE [file=/etc/xinetd.d/http] [line=7] > [file=/etc/xinetd.d/http] [line=8]116]: Bad log_on_success flag: DURATION > Apr 27 13:16:43 gatekeeper xinetd[3116]: Error parsing attribute > log_on_success - DISABLING SERVICE [file=/etc/xinetd.d/http] [line=8] > [file=/etc/xinetd.d/http] [line=9]116]: Bad log_on_failure flag: HOST > Apr 27 13:16:43 gatekeeper xinetd[3116]: Error parsing attribute > log_on_failure - DISABLING SERVICE [file=/etc/xinetd.d/http] [line=9] > > Here is the /etc/xinetd.d/http: > > [root@gatekeeper ~]# cat /etc/xinetd.d/http > service http > { > disable = no > socket_type = stream > flags = REUSE > wait = no > user = root > log_on_success += HOST DURATION > log_on_failure += HOST > redirect = 192.168.1.10 80 > } > Anyone?