After using the FTP software login to solve the issue of Oops:cannot change directory:/home/
Login again this error prompts: 553 could not create file
SELinux settings are as follows
View SELinux Settings
[Root@localhost ~]# getsebool-a|grep FTP
Allow_ftpd_anon_write–> off
Allow_ftpd_full_access–> off
Allow_ftpd_use_cifs–> off
Allow_ftpd_use_nfs–> off
Ftp_home_dir–> on
Ftpd_connect_db–> off
Ftpd_use_passive_mode–> off
Httpd_enable_ftp_server–> off
Tftp_anon_write–> off
The workaround is to set the allow_ftpd_full_access on state.
[Root@localhost ~]# Setsebool allow_ftpd_full_access on
View SELinux Settings
[Root@localhost ~]# getsebool-a|grep FTP
Allow_ftpd_anon_write–> off
Allow_ftpd_full_access–> on
Allow_ftpd_use_cifs–> off
Allow_ftpd_use_nfs–> off
Ftp_home_dir–> on
Ftpd_connect_db–> off
Ftpd_use_passive_mode–> off
Httpd_enable_ftp_server–> off
Tftp_anon_write–> off
Restart VSFTPD service, test can log in
[root@localhost ~]# Service vsftpd restart