zoukankan      html  css  js  c++  java
  • How to setup vsftpd FTP file Server on Redhat 7 Linux

    Forward from: https://linuxconfig.org/how-to-setup-vsftpd-ftp-file-server-on-redhat-7-linux

     

    How to setup vsftpd FTP file Server on Redhat 7 Linux

     

    In this short config we will install FTP file Server on RHEL7 Linux using vsftpd. We will stick to the default vsftpd configuration which enables user accounts on our existing RHEL7 Linux system to login via FTP from a remote location, list and transfer files. Let's begin by the installation: 

    To install FTP server on Redhat 7 Linux we can use either tftp-server or vsftpd daemon. In this guide we use vsftpd:

    [root@rhel7 ~]# yum install vsftpd
    

    Next, we can start the vsftpd service by using a service command:

    [root@rhel7 ~]# service vsftpd start
    Redirecting to /bin/systemctl start  vsftpd.service
    

    To make the FTP service startup persistent after system reboot use:

    [root@rhel7 ~]# systemctl enable vsftpd
    ln -s '/usr/lib/systemd/system/vsftpd.service' '/etc/systemd/system/multi-user.target.wants/vsftpd.service'
    

    Check and see whether port 21 is open. Do not worry if you do not see IPv4 of this port open as its IPv6 bind.

    [root@rhel7 ~]# netstat -tanp | grep LISTEN
    
    check ftp open ports rhel7

    We also need to open firewall port otherwise we will see a following error message when we try to connect:

    ftp: connect: No route to host
    ftp>
    

    To open a port 21 on Redhat 7 linux use the following commands. The port we remain open to public even after system restart:

    [root@rhel7 ~]# firewall-cmd --zone=public --add-port=21/tcp --permanent
    success
    [root@rhel7 ~]# firewall-cmd --reload
    success
    

    At this point we should be able to connect from a remote host where the IP address of our FTP service is 10.1.1.110:

    $ ftp 10.1.1.110
    Connected to 10.1.1.110 (10.1.1.110).
    220 (vsFTPd 3.0.2)
    Name (10.1.1.110:lrendek): rhel7
    331 Please specify the password.
    Password:
    230 Login successful.
    Remote system type is UNIX.
    Using binary mode to transfer files.
    ftp> 
    

    The next configuration we need to perform is to enable iptables module ip_conntrack_ftp otherwise we will see a following error message query our FTP server after successful login:

    ftp> ls
    227 Entering Passive Mode (10,1,1,110,166,190).
    ftp: connect: No route to host
    ftp> 
    

    As a temporary solution we use modprobe to load the ip_conntrack_ftp module:

    [root@rhel7 ~]# modprobe ip_conntrack_ftp
    

    See this page for a more permanent solution on how to load ip_conntrack_ftp module after reboot.

    The last configuration we need to perform is to enable selinux FTP context for user directories currently on the system otherwise we will not be able to read/write or transfer any files between FTP server and FTP client:

    230 Login successful.
    Remote system type is UNIX.
    Using binary mode to transfer files.
    ftp> put ftp-test.txt
    local: ftp-test.txt remote: ftp-test.txt
    227 Entering Passive Mode (10,1,1,110,125,139).
    553 Could not create file.
    

    To enable selinux FTP home directory context to allow read and write commands. For this we use setsebool command:

    [root@rhel7 ~]# setsebool -P ftp_home_dir=1
    

    The above will set selinux FTP home directory context permanently -P after reboot.

    ftp> put ftp-test.txt
    local: ftp-test.txt remote: ftp-test.txt
    227 Entering Passive Mode (10,1,1,110,174,219).
    150 Ok to send data.
    226 Transfer complete.
    

    Now you have your FTP server setup. For more configuration options see the main vsftpd FTP server configuration file/etc/vsftpd/vsftpd.conf. When making a changes to the configuration file make sure to apply them by restarting FTP service:

    [root@rhel7 ~]# service vsftpd restart
    Redirecting to /bin/systemctl restart  vsftpd.service
  • 相关阅读:
    gradle windows上面安装配置
    MYSQL远程登录权限设置(转)
    int(11)最大长度是多少,MySQL中varchar最大长度是多少(转)
    MySql 创建只读账号
    mysqli 操作数据库(转)
    php + mysql 分布式事务(转)
    linux tail命令的使用方法详解(转)
    nginx 服务器重启命令,关闭 (转)
    Linux里如何查找文件内容 (转)
    Percona XtraDB Cluster(转)
  • 原文地址:https://www.cnblogs.com/zwingblog/p/6043624.html
Copyright © 2011-2022 走看看