博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ubunt1204安装配置vsftp
阅读量:5779 次
发布时间:2019-06-18

本文共 1013 字,大约阅读时间需要 3 分钟。

  本文将搭建一个最简单的ftp服务,即通过root用户可进行登录、上传、下载,具体步骤如下:

  1、安装vsftpd服务

sudo apt-get install vsftpd

  2、编辑vsftp配置文件

vi /etc/vsftpd.conf local_enable=YES   #打开这一行,允许本地用户登录write_enable=YES   #打开这一行,配置ftp可写pam_service_name=ftp   #因为ubuntu启用了PAM,这一行要更改为ftp

  3、重启服务

service vsftpd restart

  4、测试

D:\>ftp 106.0.*.*连接到 106.0.*.*。220 (vsFTPd 2.3.5)用户(106.0.*.*:(none)): root331 Please specify the password.密码:230 Login successful.ftp> dir200 PORT command successful. Consider using PASV.150 Here comes the directory listing.-rw-r--r--    1 0        0              10 Oct 26 10:37 1.txt-rw-------    1 0        0              10 Oct 26 10:39 2.txt226 Directory send OK.ftp: 收到 126 字节,用时 0.00秒 126.00千字节/秒。ftp> get 1.txt200 PORT command successful. Consider using PASV.150 Opening BINARY mode data connection for 1.txt (10 bytes).226 Transfer complete.ftp: 收到 10 字节,用时 0.00秒 10000.00千字节/秒。ftp> put 2.txt200 PORT command successful. Consider using PASV.150 Ok to send data.226 Transfer complete.ftp: 发送 10 字节,用时 0.01秒 1.11千字节/秒。ftp>

 

转载地址:http://uakyx.baihongyu.com/

你可能感兴趣的文章
springboot系列十 Spring-Data-Redis
查看>>
excel进行矩阵计算
查看>>
iOS: Block的循环引用
查看>>
变量声明提升1
查看>>
Magento XML cheatsheet
查看>>
haproxy mysql实例配置
查看>>
MySQL 8.0 压缩包版安装方法
查看>>
JS prototype 属性
查看>>
iphone-common-codes-ccteam源代码 CCEncoding.m
查看>>
006_mac osx 应用跨屏幕
查看>>
nginx中配置文件的讲解
查看>>
HTTP库Axios
查看>>
CentOS7下安装python-pip
查看>>
陀螺仪主要性能指标
查看>>
gen already exists but is not a source folder. Convert to a source folder or rename it 的解决办法...
查看>>
20个Linux服务器性能调优技巧
查看>>
填坑记:Uncaught RangeError: Maximum call stack size exceeded
查看>>
SpringCloud之消息总线(Spring Cloud Bus)(八)
查看>>
实时编辑
查看>>
KVO原理分析及使用进阶
查看>>