> I have installed the redhat 7.0 found no /etc/inetd.conf file any body
> know what it was replaced with?
inetd.conf has been replaced with xinetd.conf
However, you cannot specify any services there.
For example :
In RHL 6.2 the line in /etc/inetd.conf was
pop3 straeam tcp nowait root /usr/local/lib/popper popper -s

In RHL 7 we have to create a file called pop3 in the /etc/xinetd.d directory and add 
these lines
service pop3
{
        socket_type = stream
        protocol        = tcp
        wait            = no
        user            = root
        server          = /usr/local/lib/popper
        server_args = popper -s
        port            = 110
}

So maybe you can use a similar file for your requirement                

-- 
Sunil Dhaka
in search of Linux enlightenment


----------------------------------------------
The mailing list archives are available at
http://lists.linux-india.org/cgi-bin/wilma/LIH

Reply via email to