这里写自定义目录标题

  • 一、安装vsftpd 服务器
  • 二、配置文件
  • 三、重启程序

一、安装vsftpd 服务器

apt-get install vsftpd -y

#添加用户组
groupadd ftpgroup#添加用户
useradd myftp -g ftpgroup -d /home/yolov5/ftpuser -s /sbin/nologin
passwd 123456useradd myftptail -g ftpgroup -d /home/yolov5/ftpuser -s /sbin/nologin
passwd 123456#设置权限
chown -R myftp:ftpgroup /home/yolov5/ftpuser/ftp
chown -R myftptail:ftpgroup /home/yolov5/ftpuser/ftptail#创建文件 etc/vsftpd.chroot_list
#写入内容为用户:
myftp
myftptail#创建目录/etc/vsftpd/userconfig
#创建文件 myftp和myftptail,分别写入以下内容
local_root=/home/yolov5/ftpuser/ftp
local_root=/home/yolov5/ftpuser/ftptail

二、配置文件

# Example config file /etc/vsftpd.conf
#
# The default compiled in settings are fairly paranoid. This sample file
# loosens things up a bit, to make the ftp daemon more usable.
# Please see vsftpd.conf.5 for all compiled in defaults.
#
# READ THIS: This example file is NOT an exhaustive list of vsftpd options.
# Please read the vsftpd.conf.5 manual page to get a full idea of vsftpd's
# capabilities.
#
#
# Run standalone?  vsftpd can run either from an inetd or as a standalone
# daemon started from an initscript.
listen=YES
#
# This directive enables listening on IPv6 sockets. By default, listening
# on the IPv6 "any" address (::) will accept connections from both IPv6
# and IPv4 clients. It is not necessary to listen on *both* IPv4 and IPv6
# sockets. If you want that (perhaps because you want to listen on specific
# addresses) then you must run two copies of vsftpd with two configuration
# files.
#listen_ipv6=YES
#
# Allow anonymous FTP? (Disabled by default).
anonymous_enable=NO
#
# Uncomment this to allow local users to log in.
local_enable=YES
#
# Uncomment this to enable any form of FTP write command.
write_enable=YES
#
# Default umask for local users is 077. You may wish to change this to 022,
# if your users expect that (022 is used by most other ftpd's)
#local_umask=022
#
# 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
#
# Activate directory messages - messages given to remote users when they
# go into a certain directory.
dirmessage_enable=YES
#
# If enabled, vsftpd will display directory listings with the time
# in  your  local  time  zone.  The default is to display GMT. The
# times returned by the MDTM FTP command are also affected by this
# option.
use_localtime=YES
#
# Activate logging of uploads/downloads.
xferlog_enable=YES
#
# Make sure PORT transfer connections originate from port 20 (ftp-data).
connect_from_port_20=YES
#
# If you want, you can arrange for uploaded anonymous files to be owned by
# a different user. Note! Using "root" for uploaded files is not
# recommended!
#chown_uploads=YES
#chown_username=whoever
#
# You may override where the log file goes if you like. The default is shown
# below.
#xferlog_file=/var/log/vsftpd.log
#
# If you want, you can have your log file in standard ftpd xferlog format.
# Note that the default log file location is /var/log/xferlog in this case.
#xferlog_std_format=YES
#
# You may change the default value for timing out an idle session.
#idle_session_timeout=600
#
# You may change the default value for timing out a data connection.
#data_connection_timeout=120
#
# It is recommended that you define on your system a unique user which the
# ftp server can use as a totally isolated and unprivileged user.
#nopriv_user=ftpsecure
#
# Enable this and the server will recognise asynchronous ABOR requests. Not
# recommended for security (the code is non-trivial). Not enabling it,
# however, may confuse older FTP clients.
#async_abor_enable=YES
#
# By default the server will pretend to allow ASCII mode but in fact ignore
# the request. Turn on the below options to have the server actually do ASCII
# mangling on files when in ASCII mode.
# Beware that on some FTP servers, ASCII support allows a denial of service
# attack (DoS) via the command "SIZE /big/file" in ASCII mode. vsftpd
# predicted this attack and has always been safe, reporting the size of the
# raw file.
# ASCII mangling is a horrible feature of the protocol.
#ascii_upload_enable=YES
#ascii_download_enable=YES
#
# You may fully customise the login banner string:
#ftpd_banner=Welcome to blah FTP service.
#
# You may specify a file of disallowed anonymous e-mail addresses. Apparently
# useful for combatting certain DoS attacks.
#deny_email_enable=YES
# (default follows)
#banned_email_file=/etc/vsftpd.banned_emails
#
# You may restrict local users to their home directories.  See the FAQ for
# the possible risks in this before using chroot_local_user or
# chroot_list_enable below.
chroot_local_user=YES
#
# You may specify an explicit list of local users to chroot() to their home
# directory. If chroot_local_user is YES, then this list becomes a list of
# users to NOT chroot().
# (Warning! chroot'ing can be very dangerous. If using chroot, make sure that
# the user does not have write access to the top level directory within the
# chroot)
chroot_local_user=YES
chroot_list_enable=YES
user_config_dir=/etc/vsftpd/userconfig
# (default follows)
chroot_list_file=/etc/vsftpd.chroot_list
local_root=/home/yolov5/ftpuser
anon_root=/home/yolov5/ftpuser
# You may activate the "-R" option to the builtin ls. This is disabled by
# default to avoid remote users being able to cause excessive I/O on large
# sites. However, some broken FTP clients such as "ncftp" and "mirror" assume
# the presence of the "-R" option, so there is a strong case for enabling it.
#ls_recurse_enable=YES
#
# Customization
#
# Some of vsftpd's settings don't fit the filesystem layout by
# default.
#
# This option should be the name of a directory which is empty.  Also, the
# directory should not be writable by the ftp user. This directory is used
# as a secure chroot() jail at times vsftpd does not require filesystem
# access.
secure_chroot_dir=/var/run/vsftpd/empty
#
# This string is the name of the PAM service vsftpd will use.
pam_service_name=vsftpd
#
# This option specifies the location of the RSA certificate to use for SSL
# encrypted connections.
rsa_cert_file=/etc/ssl/certs/ssl-cert-snakeoil.pem
rsa_private_key_file=/etc/ssl/private/ssl-cert-snakeoil.key
ssl_enable=NO#
# Uncomment this to indicate that vsftpd use a utf8 filesystem.
#utf8_filesystem=YES

三、重启程序

service vsftpd start
service vsftpd restart
service vsftpd status#目录记得加权限

vsftpd配置不同用户不同目录相关推荐

  1. oracle虚拟用户和密码,vsftpd配置虚拟用户为登录用户

    1.安装vsftpd 安装依赖包: yum -y install pam pam-devel db4 de4-devel db4-uitls db4-tcl 新建vsftpd系统用户: #建立Vsft ...

  2. vsftpd配置虚拟用户(实战)

    1.建立虚拟用户口令库 vi /etc/vsftpd/logins.txt 在里面写用户名和口令,奇数行用户名,偶数行口令,例如: user01 666666 user02 666666 2.生成vs ...

  3. samba配置共享用户home目录

    1. 先要安装samba sudo apt-get update sudo apt-get install samba openssh-server 2. 编辑Samba配置文件 sudo cp /e ...

  4. Error !!ftp服务在禁锢本地用户在家目录后,提示远程主机关闭连接

    文章目录 报错!ftp服务在禁锢本地用户在家目录后,提示远程主机关闭连接 故障背景 故障原因 故障解决 报错!ftp服务在禁锢本地用户在家目录后,提示远程主机关闭连接 故障背景 为了系统安全,需要设置 ...

  5. VSFTPD的虚拟用户管理配置

    上一节我们通过系统用户完成了VSFTPD的部署,现在DB工具实现虚拟用户的管理.文章只是自己工作中的使用说明如有写作错误,欢迎大家指出错误.... 三.虚拟用户 需求:建立user1.user2两个用 ...

  6. rhel5.5安装vsftpd并配置虚拟用户及开放防火墙和selinux

    一,下载并安装 1, 至rpm.pbone.net或rpmfind.net搜索并下载: vsftpd-2.2.2-2.el5.i386.rpm 2, 安装 # rpm -ivh vsftpd-2.2. ...

  7. linux虚拟用户创建目录权限不足,centos7的FTP服务vsftpd里建立虚拟用户不同目录分配不同权限...

    1.virtual_use_local_privs参数 当virtual_use_local_privs=YES时,虚拟用户和本地用户有相同的权限: 当virtual_use_local_privs= ...

  8. linux配置sftp访问指定目录,Linux创建用户,SFTP只允许访问指定目录

    首先创建用户 useradd lus1 passwd lus1 我这里配置lus1这个用户目录,为sftp指向目录,即/home/lus1/ vim /etc/ssh/sshd_config //这个 ...

  9. linux 7 vsftpd 配置,CentOS7 安装并配置使用vsftpd

    1. 安装vsftpd服务: yum install vsftpd 2.修改vsftpd的一些配置项: vi /etc/vsftpd/vsftpd.conf #改为NO 就是禁止匿名用户登录 anon ...

  10. Ubuntu 用vsftpd 配置FTP服务器

    网上的文章好难懂啊..只想要简单粗暴,弄好能用就行啊,复杂的以后研究不行吗...折腾好久,其实弄出来能用不就这么点内容吗... 本文在Ubuntu Server 14.04 amd64系统测试. Ma ...

最新文章

  1. 刚刚,DeepMind被IJCAI授予杰出成就奖,因为他家把AlphaGo Zero做成了暖心的新垣结衣?
  2. PL/Sql循序渐进全面学习教程(下)(ZT)
  3. redis单线程架构
  4. 表变量与临时表的优缺点?(ZT)
  5. 利用django中间件CsrfViewMiddleware防止csrf攻击
  6. Tomcat9.0.46 下载地址
  7. Python实训day07pm【Selenium操作网页、爬取数据-下载歌曲】
  8. Android--UI之DatePicker、TimePicker...
  9. SQL Sever 性能调优
  10. 蓝桥杯日期填空问题:高斯日记/星系炸弹
  11. java vcard解析,Python的Vcard解析器
  12. php jmail实例,Jmail发邮件的例子
  13. python给pdf放置签名图片_利用python制作电子签名
  14. c语言语法口诀,一般过去时语法口诀
  15. Unity的UI界面管理器
  16. Android WebView 调用相机、相册,压缩图片后上传
  17. java printout_word中printout函数的相关参数介绍 | 学步园
  18. PostgreSQL变更表Owner
  19. 17 Flask mega-tutorial 第17章 在Linux上部署(腾讯云 Ubuntu)【极其详细的部署过程】
  20. 复旦EMBA:2021,相信未来,从不确定中找到属于自己的确定

热门文章

  1. 如何使用组策略映射网络驱动器
  2. 机顶盒改成无线打印服务器,【当贝市场】如何将网络机顶盒改装成无线路由器...
  3. linux USB摄像头 V4L2工具调试摄像头
  4. jmeter5.4.1插件管理器下载安装-Jmeter-plugins-manager
  5. 调试Python代码
  6. 全球与中国电子探针市场现状及未来发展趋势2022-2028
  7. python 人工智能项目代码_7个Python实战项目代码,让你分分钟晋级大神!
  8. 学了CPDA数据分析师认证课程对工作有什么好处?
  9. 社区分享|Arm 中国生态技术市场经理教你玩转 TFLite Micro 端云一体解决方案
  10. Linux中移动光标cw什么意思,Linux下的vi命令详解