: 서버에서 아이피 변경후 PROFTPD에 로그인이 안됩니다.
:
: 서버에 아이피는 바뀌었으나, 아직 도메인네임서버 변경신청중이라 도메임
: 은 변경이 안된상태입니다. telnet은 ip로 접속이 잘되고 있구요
:
: proftpd는 standalone으로 설정되어 있구요..
:
: >ps -ax | grep proftpd 하면
: 4801 ? S 0:00 proftpd (accepting connections)
:
: 라고 뜨고요..
:
: >proftpd -t 하면
: Checking syntax of configuration file
: Syntax check complete.
:
: 라고 뜨고요..
:
: >ftp localhost 하면
: Connected to localhost.localdomain.
: 220 ProFTPD 1.2.0 Server (ProFTPD Default Installation)
: [localhost.localdomain]
: Name (localhost:test): test
: 530 Access denied - user does not have ftp privilege.
: Login failed.
: 421 Service not available, remote server has closed connection
:
: 이런 error가 뜨면서 접속이 안되는데요..
: 물론 client에서도 ftp 접속하면 위와 같은 error가 발생합니다.
:
: /etc/hosts.deny 파일은 모두 #으로 막았습니다.
:
: 어떻게 해야 ftp 접속이 가능 할까요? 제발 도와주세요...
source complile을 해서 다시 Proftp를 깔아서 해결했습니다.
# rpm -qa | grep proftpd
proftpd-core
proftpd-standalone
# rpm -e proftpd-standalone
# rpm -e proftpd-core
# cp proftpd-xxx.tar.gz /url/local/src/
# cd /usr/local/src/
# ls proftpd*
proftpd-xxx.tar.gz
# tar zxvf proftpd*.tar.gz
# cd proftpd-xxx
# ./configure --help
# ./configure
--perfix=/usr/local/proftpd
--enable-autoshadow
# make
# make install
그리고 설정파일을 잘 설정해주면 되지요...