vsftpd - Cannot upload files to the server. Error 553 [closed]

旧街凉风 提交于 2019-11-29 13:35:50

You are specifying a full path which does not exist on the remote server.

ftp> put ~/Downloads/test.jpg
local: /Users/ram/Downloads/test.jpg
remote: /Users/ram/Downloads/test.jpg

See? You probably want to lcd ~/Downloads then put test.jpg, or switch to a client which allows you to specify a complete local path for put and still only uses the basename for the remote file name.

setenforce 0
  • check SELinux is enabled

Try changing the OWNERSHIP of the folder you're trying to upload to:
chown USER:GROUP folder_name

manual: http://linux.die.net/man/1/chown

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!