Centos6.5搭建FTP

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Centos6.5搭建FTP相关的知识,希望对你有一定的参考价值。

1. 查看是否安装vsftpd 

[[email protected] ~]# rpm -q vsftpd

package vsftpd is not installed   表示没有安装

vsftpd-2.2.2-24.el6.x86_64        已安装


2.安装vsftp

[[email protected] ~]# yum -y install vsftpd


3.安装ftp

[[email protected] ~]# yum -y install ftp


4.重启vsftpd    连续重启两次

[[email protected] ~]# service vsftpd restart



设置vsftpd为开机启动

[[email protected] ~]# chkconfig vsftpd on


5.修改防火墙-必须重启系统

[[email protected] ~]# vi /etc/selinux/config 

SELINUX=disabled


6.临时关闭防火墙-不用重启立即生效

[[email protected] ~]# setenforce 0


7.配置防火墙

[[email protected] ~]# vi /etc/sysconfig/iptables

-A INPUT -m state --state NEW -m tcp -p tcp --dport 21 -j ACCEPT

-A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 21 -j ACCEPT


8.重启防火墙

[[email protected] ~]# service iptables restart


9.修改vsftpd的主配置文件

[[email protected] ~]# vi /etc/vsftpd/vsftpd.conf

anonymous_enable=NO

chroot_local_user=YES


10.修改后必须重启服务

[[email protected] ~]#  service vsftpd restart


11.创建ddd的用户   目录为/var/gpj

[[email protected] htm]# useradd -s /sbin/nologin -d /var/gpj ddd


12.设置ddd的密码

[[email protected] ~]# passwd ddd

Changing password for user ddd.

New password: 

BAD PASSWORD: it is based on your username

Retype new password: 

passwd: all authentication tokens updated successfully.


13.查看端口

[[email protected] ~]# netstat -tunlp | grep vsftpd

tcp        0      0 0.0.0.0:21                  0.0.0.0:*                   LISTEN      1841/vsftpd   

      

14.修改ftp的根目录只要修改/etc/vsftpd/vsftpd.conf文件即可:

加入如下几行:

local_root=/var/www/html

chroot_local_user=YES

anon_root=/var/www/html



修改用户登录的文件夹   vi /etc/passwd


在Linux中添加ftp用户,并设置相应的权限,操作步骤如下:

1、环境:ftp为vsftp。被限制用户名为test。被限制路径为/home/test

2、建用户:在root用户下:

useradd -d /home/test test //增加用户test,并制定test用户的主目录为/home/test

passwd test //为test设置密码

3、更改用户相应的权限设置:

usermod -s /sbin/nologin test //限定用户test不能telnet,只能ftp

usermod -s /sbin/bash test //用户test恢复正常

usermod -d /test test //更改用户test的主目录为/test

4、限制用户只能访问/home/test,不能访问其他路径

修改/etc/vsftpd/vsftpd.conf如下:

将配置文件中”anonymous_enable=YES “改为 “anonymous_enable=NO”

取消如下配置前的注释符号:

local_enable=YES

write_enable=YES

chroot_local_user=YES

chroot_list_enable=YES //限制访问自身目录

# (default follows)

chroot_list_file=/etc/vsftpd/vsftpd.chroot_list

编辑 vsftpd.chroot_list文件,将受限制的用户添加进去,每个用户名一行

改完配置文件,不要忘记重启vsFTPd服务器

[[email protected] root]# /etc/init.d/vsftpd restart


参考:

http://help.aliyun.com/knowledge_detail.htm?knowledgeId=5974492&categoryId=8314853

http://help.aliyun.com/knowledge_detail.htm?knowledgeId=5973912&categoryId=8314853


建用户,命令行状态下,在root用户下:

运行命令:“useradd -d /home/test test”  //增加用户test,并制定test用户的主目录为/home/test


运行命令:“passwd test”  //为test设置密码,运行后输入两次相同密码

更改用户相应的权限设置:

运行命令:“usermod -s /sbin/nologin test”  //限定用户test不能telnet,只能ftp

运行命令:“usermod -s /sbin/bash test”  //用户test恢复正常

运行命令:“usermod -d /test test”  //更改用户test的主目录为/test


本文出自 “高家大少的技术博客” 博客,请务必保留此出处http://gpj1997.blog.51cto.com/12830710/1940640

以上是关于Centos6.5搭建FTP的主要内容,如果未能解决你的问题,请参考以下文章

[整理]Centos6.5 + hadoop2.6.4环境搭建

centos6.5搭建nginx

centos6.5上NFS服务器搭建!!!

centos6.5上搭建git2.3.0服务器

CentOS6.5 基础环境搭建 [个人整理-亲测可用]

CentOS6.5搭建LNMP