tip8:CentOS8安装ftp服务器

  之前习惯使用OpenSuse,其图形化的安装。现在刚开始使用CentOS,老老实实使用命令吧!

  1、本地cmd命令ftp链接虚拟机无法链接。查出虚拟机ftp服务是否开启:没有

    ps -ef|grep ftp

    netstat -anp|grep 21 / netstat -anp|grep ftp

  2、查看是否安装了vsftp:没有

    rpm -qa|grep vsftpd

  3、安装vsftp:注意使用root用户

    yum install -y vsftpd

  4、修改配置/etc/vsftpd/vsftpd.conf允许匿名登录及上传

    tip8:CentOS8安装ftp服务器

  5、t调整防火墙设置,添加ftp相关内容:

    ##启用ftp服务器

    firewall-cmd --add-service=ftp --permanent     ######增加ftp访问     firewall-cmd --add-port=10000-11000/tcp --permanent     ######上述命令,开放10000-11000号的tcp端口     ######如果有需要可以增加相应的udp端口     ##重新加载防火墙     firewall-cmd --reload   6、重启ftp服务

    service vsftpd restart

  7、测试:

    tip8:CentOS8安装ftp服务器

 

 

 

、 

    

上一篇:centos8 用户权限相关


下一篇:Centos8安装RabbitMQ