vsftpd의 xinetd 설정 파일.

ohmyname의 이미지

vsftpd를 rpm으로 설치했는데

실행하니 inetd로 실행하라고 합니다.

/etc/xinetd.d/에 들어갈 vsftpd파일 내용 좀 카피해 주세요

상관없을지도 모르지만 fedora씁니다.

tranquillity의 이미지

ohmyname의 이미지

두 글이 같은 내용이군요 이곳에서도 vsftpd나 비슷한 파일이 있을거라 하는데

이상하게도 vsftpd를 설치했어도 /etc/xinetd.d/에 vsftpd파일이

없어서 다른 사람 것 보고 만들려합니다.

그러니 ftpd쓰시면 vsftpd파일 내용좀 올려 주세요.

tranquillity의 이미지

# default: on
# description:
#   The vsftpd FTP server serves FTP connections. It uses
#   normal, unencrypted usernames and passwords for authentication.
# vsftpd is designed to be secure.
service ftp2
{
        socket_type             = stream
        wait                    = no
        user                    = root
        server                  = /usr/local/sbin/vsftpd
#       server_args             =
#       log_on_success          += DURATION USERID
#       log_on_failure          += USERID
        nice                    = 10
        disable                 = no
}

다른 port를 사용하기 위해 ftp2는 임의로 붙인 이름입니다.

/etc/services 에 추가시키면 됩니다.

精神一到何事不成