码迷,mamicode.com
首页 > 其他好文 > 详细

安装vsftp

时间:2019-05-28 12:39:03      阅读:90      评论:0      收藏:0      [点我收藏+]

标签:sftp   umask   com   emc   记录   ops   name   rest   rap   

这篇博客简单记录了vsftp的安装,不涉及具体参数的解释说明

安装环境

# cat /etc/redhat-release 
CentOS Linux release 7.5.1804 (Core) 
# getenforce 
Disabled
# systemctl is-active firewalld.service 
unknown

yum安装vsftp

# yum list |grep vsftp
vsftpd.x86_64                          3.0.2-25.el7                    @base    
vsftpd-sysvinit.x86_64                 3.0.2-25.el7                    base 

# yum -y install vsftpd

修改配置文件

# cd /etc/vsftpd/

# cat vsftpd.conf
anonymous_enable=NO
local_enable=YES
write_enable=YES
local_root=/data            #这个目录需要相应的用户具有rwx权限
local_umask=022
dirmessage_enable=YES
xferlog_enable=YES
connect_from_port_20=YES
xferlog_file=/var/log/xferlog
xferlog_std_format=YES
chroot_local_user=YES
chroot_list_enable=YES
chroot_list_file=/etc/vsftpd/chroot_list
listen=YES
pam_service_name=vsftpd
userlist_file=/etc/vsftpd/user_list
userlist_enable=YES
userlist_deny=NO
tcp_wrappers=YES
allow_writeable_chroot=YES     #没有这一行,有时会报错:500 OOPS: vsftpd: refusing to run with writable root inside chroot()

配置用户

# cd /data
# echo "welcome to my ftp\!">>.message
# cd /etc/vsftpd/
# vim user_list 
root
work

创建用户和缺少的文件

# useradd work
# echo 123456|passwd --stdin work
# touch /etc/vsftpd/chroot_list

启动并测试

# systemctl restart vsftpd.service

 

安装vsftp

标签:sftp   umask   com   emc   记录   ops   name   rest   rap   

原文地址:https://www.cnblogs.com/Go-Spurs-Go/p/10936390.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!