Ubuntu에서 `inetd` 및 `/etc/inetd.conf`를 대체하는 것은 무엇입니까?

Ubuntu에서 `inetd` 및 `/etc/inetd.conf`를 대체하는 것은 무엇입니까?

inetd에 기록된 서비스에 대한 서비스 스케줄러입니다 /etc/inetd.conf.

Lubuntu 18.04에서는 no 가 /etc/inetd.conf아무것도 ps -A | grep inetd반환하지 않습니다. inetd및 의 대안은 무엇입니까 /etc/inetd.conf?

나는 아니에요 /etc/xinetd*.

감사해요.

답변1

많은 Linux에서 사용하므로 xinetd파일은 /etc/xinetd.conf./etc/xinetd.d

예를 들어 파일에는 다음이 /etc/xinetd.d/time포함될 수 있습니다.

# This is the tcp version.
service time
{
        disable         = yes
        type            = INTERNAL
        id              = time-stream
        socket_type     = stream
        protocol        = tcp
        user            = root
        wait            = no
}

# This is the udp version.
service time
{
        disable         = yes
        type            = INTERNAL
        id              = time-dgram
        socket_type     = dgram
        protocol        = udp
        user            = root
        wait            = yes
}

nntp내 컴퓨터에는 다음 항목이 있습니다 leafnode.

% cat /etc/xinetd.d/nntp 
service nntp
{
        disable = no
        socket_type     = stream
        wait            = no
        user            = news
        flags           = IPv6
        server          = /usr/local/leafnode/sbin/leafnode
}

예를 들어 설치되어 있지 않으면 xinetd직접 설치하십시오.sudo apt-get install xinetd

관련 정보