Linux中的vsftpd
場景:碰到的情況,自己搭建一個linux伺服器,想用LeapFTP連線到伺服器的ip,但是碰到了兩個錯誤
1,許可權不足
220 (vsFTPd 2.0.5)
USER root
530 Permission denied.
QUIT
USER root
530 Permission denied.
QUIT
2,密碼無法識別,其實是root使用者不讓進入
USER root
331 Please specify the password.
PASS xxxxxx
530 Login incorrect.
331 Please specify the password.
PASS xxxxxx
530 Login incorrect.
vsftpd是一個安全很高的ftp軟體包
裡面的有兩個配置檔案
ftpusers和user_list
[root@www vsftpd]# cat ftpusers;
# Users that are not allowed to login via ftp(這裡呈現哪些使用者不能進入ftp)
#root
bin
daemon
adm
lp
sync
shutdown
halt
mail
news
uucp
operator
games
nobody
[root@www vsftpd]#
# Users that are not allowed to login via ftp(這裡呈現哪些使用者不能進入ftp)
#root
bin
daemon
adm
lp
sync
shutdown
halt
news
uucp
operator
games
nobody
[root@www vsftpd]#
[root@www vsftpd]# cat user_list(這裡是user進入的許可權檔案)
# 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
[root@www vsftpd]#
# 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
news
uucp
operator
games
nobody
[root@www vsftpd]#
只要用#註釋掉使用者root,就可以讓root成功連線ftp
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/26446098/viewspace-721771/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Linux中Vsftpd服務的部署及優化LinuxFTP優化
- 【linux】Debian10.0配置vsftpdLinuxFTP
- Linux伺服器---安裝vsftpdLinux伺服器FTP
- vsftpdFTP
- 【linux運維】Linux伺服器玩轉vsftpd安裝與配置Linux運維伺服器FTP
- Centos8中使用VSFTPD配置FTPsCentOSFTP
- linux之FTP服務vsftpd和pure-ftpd常用配置LinuxFTP
- Xmanager4遠端連線linux圖形介面(vsftpd配置)LinuxFTP
- Ubuntu22.04 vsftpdUbuntuFTP
- ubuntu下vsftpd配置UbuntuFTP
- Linux雲端計算-07_Linux檔案伺服器之vsftpd伺服器Linux伺服器FTP
- vsftpd部署(centos7.9)FTPCentOS
- docker搭建vsftpd服務DockerFTP
- Linux環境下安裝配置vsftpd服務(三種認證模式)LinuxFTP模式
- vsftpd.conf 配置詳解FTP
- Ubuntu上ftp的vsftpd.conf檔案的配置UbuntuFTP
- FTP伺服器——使用vsftpd搭建FTP伺服器
- vsftpd伺服器配置與使用FTP伺服器
- 關於vsftpd的refusing to run with writable root inside chroot()問題FTPIDE
- FTP-Vsftpd的高階應用:虛擬使用者FTP
- ubuntu系統使用vsftpd搭建FTP伺服器。UbuntuFTP伺服器
- vsftpd多例項多使用者不同許可權FTP
- 小白搭建ftp伺服器(vsftpd centos8.2)FTP伺服器CentOS
- Linux 中 sed 中xxx 的應用Linux
- [Linux]Linux中的零拷貝技術(一)Linux
- linux 中 date命令的用法Linux
- IoT中的Linux選擇Linux
- Linux 中 grep xxx的用法Linux
- Linux中的主次裝置Linux
- 【linux】Shell中的運算子Linux
- Linux中“>”和“>>”的區別Linux
- Linux中如何安裝RabbitMQ?在linux系統中安裝Rabbitmq的方法LinuxMQ
- [原創] Linux 中的 nohup 與 &Linux
- Linux中的LVM和軟RAIDLinuxLVMAI
- linux:檢視使用中的埠Linux
- Linux中的IO模型介紹Linux模型
- linux中ls卡死的問題Linux
- linux shell指令碼中 =~ 的作用Linux指令碼
- linux中的firewalld防火牆配置Linux防火牆