2019/03/14

vsftpd 553 Could not create file


# Show ftp SELinux config
getsebool -a | grep ftp
# Enable ftpd_anon_write
setsebool -P allow_ftpd_anon_write on
# Enable ftpd_full_access
setsebool -P allow_ftpd_full_access on

# Or Disable SELinux

vi /etc/selinux/config
SELINUX=disabled

reboot