외부에서 iptime DNS 를 이용하여 FTP를 붙으려했을때 아래와 같은 오류가 발생.
명령: USER root
응답: 331 Please specify the password.
명령: PASS *******
응답: 500 OOPS: vsftpd: refusing to run with writable root inside chroot()
오류: 치명적 오류: 서버에 연결하지 못함
아래 파일에서 [ allow_writeable_chroot=YES ] 를 추가 후 restart 시 해결.
[root@localhost ~]# vi /etc/vsftpd/vsftpd.conf
101 #chroot_local_user=YES
102 chroot_list_enable=YES
103 allow_writeable_chroot=YES
104 # (default follows)
105 chroot_list_file=/etc/vsftpd/chroot_list
[root@localhost ~]# systemctl restart vsftpd

'Server > 기타' 카테고리의 다른 글
| [Linux] 기본 명령어 정리 (0) | 2022.04.27 |
|---|---|
| [Linux] Mysql 계정 관련 명령어 (0) | 2022.04.25 |
| [Linux] CentOS 7 FTP ( ISSUE : 550 Create directory operation failed ) (0) | 2022.04.05 |
| [ Linux ] Centos 7 timemachine / 백업 및 복구 (0) | 2022.04.05 |
| [Linux] CentOS 7 방화벽 확인 (0) | 2022.04.01 |