ubuntu server下ftp的配置

服务器端

1、使用sudo apt install vsftpd安装

vsftpd 是“very secure FTP daemon”的缩写

2、查看服务有没有装上

vsftpd -v

3、为FTP添加用户,使用sudo useradd -m sunftp命令添加一个sunftp的用户

-m:添加用户的同时,建立了相应目录

3、为sunftp用户设置密码,使用sudo passwd sunftp修改密码

4、在/home/sunftp/目录中创建一个ftpdir目录用于作为ftp的根目录

sudo mkdir /home/sunftp/ftpdir

5、在该文件夹下新建一文件,命名 姓名拼音.txt

sudo vim ..

6、使用 sudo vim /etc/vsftpd.conf编辑配置文件

(有下面三句基本就可以用了,其他慢慢来

#listen=NO

listen_ipv6=YES

local_root=/home/sunftp/ftpdir


7、启动vsftpd


如果之前启用过samba服务,要用这个关闭下sudo service smbd stop

8、查看ip


9、运行flashfxp软件进行连接

=============================================

参考:https://blog.csdn.net/sunxiaoju/article/details/85224602

注意:edge浏览器不支持ftp

===============================================

图文详解Ubuntu搭建Ftp服务器的方法(包成功)_Linux_脚本之家 (jb51.net)

==========

https://www.bilibili.com/video/av58565891   详细版的

=========================

如果flashfxp无法上传,提示550 permission denide,则修改vsftpd.conf

# Uncomment this to allow the anonymous FTP user to upload files. This only

# has an effect if the above global write enable is activated. Also, you will

# obviously need to create a directory writable by the FTP user.

anon_upload_enable=YES

#

# Uncomment this if you want the anonymous FTP user to be able to create

# new directories.

anon_mkdir_write_enable=YES

电脑技术 2022-05-12 10:17:32 通过 网页 浏览(570)

共有0条评论!

发表评论

更换一道题!