不多说,直接上干货!

  同时,声明,我这里安装的vsftp,仅仅只为我的大数据着想,关于网上的复杂安装,那是服务和运维那块。我不多牵扯,也不多赘述。

一、CentOS系统里安装vsftp

第一步:使用yum命令安装vsftp

[root@bigdatamaster hadoop]# yum -y install vsftpd

第二步:配置vsftpd文件

vi /etc/vsftpd/vsftpd.conf 

第三步:配置

write_enable = YES
ascii_upload_enable = YES
ascii_download_enable = YES
anonymous_enable=YES
chroot_local_user=YES

这里我使用的是匿名登录(保存默认)。

第四步:启动vsftpd服务

Starting vsftpd for vsftpd: [FAILED]问题的解决

[root@bigdatamaster etc]# service vsftpd start
Starting vsftpd for vsftpd: [ OK ]
[root@bigdatamaster etc]#

二、Ubuntu系统里安装vsftp

第一步:使用apt-get命令安装vsftp

sudo apt-get install vsftpd

第二步:配置vsftpd文件

sudo vim /etc/vsftpd/vsftpd.conf

第三步:配置

write_enable = YES
ascii_upload_enable = YES
ascii_download_enable = YES
anonymous_enable=YES
chroot_local_user=YES

第三步:

sudo service vsftpd restart

Starting vsftpd for vsftpd: [FAILED]问题的解决

第四步:

[root@bigdatamaster etc]# service vsftpd start
Starting vsftpd for vsftpd: [ OK ]
[root@bigdatamaster etc]#

  设置CentOS vsftpd开机时自启动

chkconfig --level  vsftpd on

   在大数据领域里,为什么要这么做呢,安装vsftp?

  请移步

大数据搭建各个子项目时配置文件技巧(适合CentOS和Ubuntu系统)(博主推荐)

最新文章

  1. 《JavaScript高级程序设计》读书笔记 2
  2. 数据结构:优先队列 基于list实现(python版)
  3. POJ 1066 Treasure Hunt (线段相交)
  4. QUOTED_IDENTIFIER 选项对 index 的影响
  5. undefined symbol libiconv_open 完全解决方案
  6. 用css伪类实现提示框效果
  7. openstack排错
  8. 前端自动化神器LiveReload配合浏览器和less/sass使用方法
  9. GetActiveView 返回 NULL 为 MDI 框架窗口
  10. sizeof 和 strlen
  11. Apache ab 使用说明
  12. Delphi中解析Xml的控件-SimDesign NativeXml
  13. xmlplus 组件设计系列之零 - xmlplus 简介
  14. android studio gradle 打jar 包 (混淆+第三方库包)
  15. C# 读取xml——XmlReader和XElement
  16. MyBatis-resultType 几种返回类型
  17. php curl post josn + header
  18. 各操作系统安装redis
  19. mybatis基础系列(一)——mybatis入门
  20. springmvc接口ios网络请求

热门文章

  1. open inventor 学习笔记
  2. 解决:Eclipse安装Pydev插件报错: An error occurred while collecting items to be installed session context was:(profile=...
  3. poj1463 树形dp
  4. xss攻击的分类
  5. New Concept English three (46)
  6. nodejs--vue
  7. Buffer 和Cache 的区别
  8. html 常用代码块
  9. python究竟要不要使用多线程
  10. 使用swing构建一个界面(包含flow ,Border,Grid,card ,scroll布局)