Centos8上安裝Ftp

// 安裝ftp

yum install vsftpd

// 啓動

service vsftpd start

// 停止

service vsftpd stop

// 查看ftp狀態

service vsftpd status

/etc/vsftpd/vsftpd.conf配置文件主要修改配置

# Allow anonymous FTP? (Beware - allowed by default if you comment this out).
anonymous_enable=YES
#
# Uncomment this to allow local users to log in.
local_enable=YES
#
# Uncomment this to enable any form of FTP write command.
write_enable=YES


# When SELinux is enforcing check for SE bool allow_ftpd_anon_write, allow_ftpd_full_access
anon_upload_enable=YES


# You may specify an explicit list of local users to chroot() to their home
# directory. If chroot_local_user is YES, then this list becomes a list of
# users to NOT chroot().
# (Warning! chroot'ing can be very dangerous. If using chroot, make sure that
# the user does not have write access to the top level directory within the
# chroot)
chroot_local_user=YES
chroot_list_enable=YES
# (default follows)
chroot_list_file=/etc/vsftpd/chroot_list

allow_writeable_chroot=YES
 

值得注意的是如果設置:chroot_local_user=YES ,控制用戶不能查看其他目錄權限,不能查看目錄

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章