ubuntu安装vsftpd服务

安装 vsftpd

sudo apt install vsftpd

新建 ftp 目录和用户

sudo mkdir ~/ftp
udo useradd -d ~/ftp -s /bin/bash uftp
sudo passwd uftp

修改配置文件

sudo vi /etc/vsftpd.conf

write_enable=YES 取消注释
末尾增加:
userlist_deny=NO
userlist_enable=YES
userlist_file=/etc/allowed_users
seccomp_sandbox=NO

新增文件 /etc/allowed_users
输入 uftp,保存

修改文件夹权限

sudo chmod 777 ~/ftp

重启 vsftpd 服务

sudo service vsftpd restart

参考链接:

Ubuntu 16.04 安装ftp服务器

原文地址:https://www.cnblogs.com/geb515/p/8918971.html

时间: 2024-10-13 07:56:50

ubuntu安装vsftpd服务的相关文章

脚本应用之十二: 安装vsftpd服务

作用:安装vsftpd服务 实现:yum在线安装,要求访问互联网, 创建默认账户vsftp(vsftp),访问目录默认为家目录(/home/vsftp) 演示: 代码专区: #/bin/bash   #  LY #  ------------------ #  Copyright 2016.04.16 LingYi ([email protected]) QQ:1519952564 #  "install vsftpd service" if rpm -q vsftpd &&g

键给多台服务器自动化安装vsftpd服务

#1.添加用户gongliuseradd test01echo 123456|passwd --stdin test01#2.配置sudoers:echo "test01 ALL= NOPASSWD:ALL" >> /etc/sudoersvisudo -cid test01su - test01 自动生成密钥.分发公钥.多台服务器一键安装vsftpd服务:[[email protected] ~]$ vim auto_deploy.sh #!/bin/sh. /etc/i

3.linux安装vsftpd服务

1.首先查看本地是否安装了vsftpd rpm -qa |grep vsftpd 2.安装vsftpd: yum install vsftpd 3.查询当前ftp状态 chkconfig --list |grep vsftpd 4.开启ftp服务 chkconfig vsftpd on 5.再次查询ftp状态 chkconfig --list |grep vsftpd 6.第一次安装最好重启一下ftp服务 service vsftpd restart ----Over--By:橙子---

Ubuntu安装SSH服务

1 SSH服务 Ubuntu默认并没有安装ssh服务,如果通过ssh远程连接到Ubuntu,需要自己手动安装ssh-server. 1.1 检测是否安装SSH服务 出现上图所示,表示SSH服务安装成功,服务正在运行 1.2 windows远程连接Ubuntu 使用支持SSH协议的远程连接工具,如xshell 1.2.1 获取Ubuntu的IP地址 SSH协议的默认端口为22 1.2.2 首次连接失败 原因:应该是sshd的设置不允许root用户用密码远程登录 1.2.2.1 打开ssh配置文件,

为Ubuntu安装FTP服务

打开"终端窗口",输入"sudo apt-get update"-->回车-->"输入当前登录用户的管理员密码"-->回车,就可以了.如果不运行该命令,直接安装vsftpd,会出现"有 几个软件包无法下载,您可以运行apt-get update------"的错误提示,导致无法安装. 打开"终端窗口",输入"sudo apt-get install vsftpd"--&

为Ubuntu安装SSH服务

只有当Ubuntu安装了SSH服务后,我们才能够通过ssh工具登陆Ubuntu.我自己喜欢使用x-shell作为终端工具 1.安装Ubuntu缺省安装了openssh-client,所以在这里就不安装了,如果你的系统没有安装的话,再用apt-get安装上即可.安装ssh-serversudo apt-get install openssh-server安装ssh-clientsudo apt-get install openssh-client 2.确认sshserver是否安装好ps -e |

ubuntu16.04.01解决安装vsftpd服务,ftp连接后无法展示目录,连接失败的问题

ubuntu版本:[email protected]:/home/itgo# uname -aLinux ubuntunanjing 4.15.0-58-generic #64~16.04.1-Ubuntu SMP Wed Aug 7 14:10:35 UTC 2019 x86_64 x86_64 x86_64 GNU/Linuxvsftpd版本:Version: 3.0.3-3ubuntu2现象:1 使用ftp图形客户端界面,可以连接到服务器,但是总是报目录浏览失败,导致无法连接2 在linu

9.17 ubuntu安装LAMP服务

更新ubuntu源 /etc/apt/sources.list Cp /etc/apt/sources.list /etc/apt/sources.list.bak备份 修改vim /etc/apt/sources.list 将其中的数据修改为最新的源镜像地址 deb http://mirrors.aliyun.com/ubuntu/ bionic main restricted universe multiverse deb-src http://mirrors.aliyun.com/ubun

ubuntu 安装 ftp服务

1. 更新源列表    ---> sudo apt-get update 2. 安装vsftpd ---> sudo apt-get install vsftpd    (安装) ---->  sudo service vsftpd start    (启动) 3 . 新建"/home/uftp"目录作为用户主目录  (用户 uftp) ---> sudo mkdir /home/uftp ---> sudo ls /home    (查看目录有没有生成)