감사합니다..
그런데 왜 /etc/shutmsg라는 화일이 생겼죠?
암것도만지지 안았는데..
왜 그러죠?
궁금합니다..
왜 그럴까..--_--
: : 안녕하십니까..
: :
: : 리눅스 7.1파란이며
: :
: : proftp를 컴파일밑 설치 하였습니다..
: :
: : standalone모드이며
: :
: : ps -aux | grep proftpd로 검색을 하여도..데몬은 떠 있습니다..
: :
: : 그런데..
: :
: : ftp로 접속을 하면..
: :
: : [root@ns /root]# ftp 192.168.0.1
: : Connected to 192.168.0.1.
: : 500 FTP server shut down (going down at Sat Dec 8 04:21:19 2001) -- please try again later.
: : ftp>
: :
: :
: : 위와 같은 메세지가 나옵니다..
: :
: :
: :
: : 참고로..
: :
: : ./proftpd -t를 하면...아무 이상없다고 나옵니다..
: :
: : 그도 당연할것이...컴파일해서..처음 접속이거든요..
: :
: :
: :
: : 왜 그런지 궁금합니다..
: :
: : # This is a basic ProFTPD configuration file (rename it to
: : # 'proftpd.conf' for actual use. It establishes a single server
: : # and a single anonymous login. It assumes that you have a user/group
: : # "nobody" and "ftp" for normal operation and anon.
: :
: : ServerName "ProFTPD Default Installation"
: : ServerType standalone
: : DefaultServer on
: :
: : # Port 21 is the standard FTP port.
: : Port 21
: : # Umask 022 is a good standard umask to prevent new dirs and files
: : # from being group and world writable.
: : Umask 022
: : # To prevent DoS attacks, set the maximum number of child processes
: : # to 30. If you need to allow more than 30 concurrent connections
: : # at once, simply increase this value. Note that this ONLY works
: : # in standalone mode, in inetd mode you should use an inetd server
: : # that allows you to limit maximum number of processes per service
: : # (such as xinetd)
: : MaxInstances 30
: :
: : # Set the user and group that the server normally runs at.
: : User nobody
: : Group nobody
: :
: : # Normally, we want files to be overwriteable.
: : <Directory /*>
: : AllowOverwrite on
: : </Directory>
: :
: : <Anonymous ~ftp>
: : User ftp
: : Group ftp
: : # We want clients to be able to login with "anonymous" as well as "ftp"
: : UserAlias anonymous ftp
: :
: : # Limit the maximum number of anonymous logins
: : MaxClients 10
: :
: : # We want 'welcome.msg' displayed at login, and '.message' displayed
: : # in each newly chdired directory.
: : DisplayLogin welcome.msg
: : DisplayFirstChdir .message
: :
: : # Limit WRITE everywhere in the anonymous chroot
: : <Limit WRITE>
: : DenyAll
: : </Limit>
: :
: : </Anonymous>
: 이미 답을 알고 계시는 군요..^^;;
: 제가 봤을 때는 ftp서버가 셧다운 중이라서 더이상 접속을 못받아들이겠다는
: 메시지로 보이는 군요..
: standalone방식으로 서버를 운영하신다면
: /etc/아래에 가시면 shutmsg라는 파일이 있을 겁니다.
: 그 파일 지워주시면 됩니다.
: 그럼 수고하세요..
:
: --
: 산은 지리산...^^