1 먼저 vsftpd를 설치하세요
명령: #🎜🎜 #
yum -y install vsftpd
service vsftpd start
2 방화벽을 끄세요
1) 적용됩니다. 다시 시작한 후#🎜 🎜#Open:
chkconfig iptables on
Close:
chkconfig iptables off
2) 즉시 적용되며, 다시 시작하면 무효화됩니다.
Open:
service iptables start
service iptables stop
3. 기본적으로 vsftp는 루트 사용자의 로그인을 허용하지 않습니다. 제한 사항을 수정하여 이 문제를 해결할 수 있습니다 #🎜🎜 #
首先找到vsftp的配置目录 [root@localhost vsftpd]# pwd /etc/vsftpd [root@localhost vsftpd]# ls chroot_list ftpusers user_list vsftpd.conf vsftpd_conf_migrate.sh [root@localhost vsftpd]# 修改 [root@localhost vsftpd]# cat ftpusers # Users that are not allowed to login via ftp #root bin daemon adm lp sync shutdown halt mail news uucp operator games nobody 修改 [root@localhost vsftpd]# cat user_list # vsftpd userlist # If userlist_deny=NO, only allow users in this file # If userlist_deny=YES (default), never allow users in this file, and # do not even prompt for a password. # Note that the default vsftpd pam config also checks /etc/vsftpd/ftpusers # for users that are denied. #root bin daemon adm lp sync shutdown halt mail news uucp operator games nobody 上面这个两个就是默认情况下vsftp不允许使用的账号列表,讲文件中root删除,或者前面加个#号 重启一下vsftpd 服务 即可
4. 을 교체한 다음
권장 튜토리얼: Linux 튜토리얼/etc/selinux/config
中的enforcing
模式改为disabled
위 내용은 FTP 연결 및 Linux 로그인 실패에 대한 해결 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!