Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to deal with 500OOPS errors in VSFTPD experiment

2025-01-19 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >

Share

Shulou(Shulou.com)06/01 Report--

Editor to share with you how to deal with VSFTPD experiment 500OOPS errors, I believe that most people do not know much, so share this article for your reference, I hope you can learn a lot after reading this article, let's go to know it!

Vsftpd has been used for a year, found a VSFTPD error, has been reporting an error, searched the Internet, there is an explanation.

Debugging information: 500OOPS: vsftpd: refusing to run with writable anonymous root

Cause: vsftpd does not allow "dangerous (unsafe)" configurations. This error message is usually caused by incorrect ownership and permissions of ftp's home directory and its subdirectories.

Namely: anon_root=/var/ftp:FTP's home

The owner of the home directory should not be the ftp user himself, and the ftp user cannot have write permission. The solution is:

Chown root ~ ftp; chmod-w ~ ftp

For example, anon_root=/var/ftp is set in the configuration file

Achieve the following results:

This is what happens in / var/ftp:

Ls-ld ftp

Drwxr-xr-x 4 root root 4096 12 21 19:35 ftp # here is the owner and group are root, the default permission755, write permission is removed

[root@ftp ftp] # ls-l

Drwxrwxr-x 2 ftp ftp 4096 12 21 20:08 incoming # subdirectory owner and group are ftp, and permission is related to the purpose of the directory. Because I have to write.

Drwxr-xr-x 2 root ftp 4096 12 21 19:36 pub # here the read-only directory owner is root, the group is ftp, the default is permission755, and write permissions are removed.

The above is all the contents of the article "how to deal with 500OOPS errors in VSFTPD experiments". Thank you for reading! I believe we all have a certain understanding, hope to share the content to help you, if you want to learn more knowledge, welcome to follow the industry information channel!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Servers

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report