linux开启ftp服务

执行以下命令进行查看是否安装

vsftpd -v

如果没有安装的话就执行以下命令进行安装:

yum -y install vsftpd

修改vsftpd.conf文件

vi /etc/vsftpd/vsftpd.conf

把anonymous_enable=YES ,改为NO ,然后重启vsftpd

# 重启

systemctl vsftpd restart


# 查看vsftpd服务的状态

systemctl status vsftpd.service


# 设置开机启动
 

systemctl enable vsftpd.service

如果以上重启出现

Job for vsftpd.service failed. See 'systemctl status vsftpd.service' and 'journalctl -xn' for details.

那就手动杀死 进程。

ps auxf | grep vsftpd

 然后在重启,

systemctl start vsftpd

这样就可以使用了


觉得有用就加个关注吧

你可能感兴趣的:(事件)