1)查看Linux环境中是否已经存在安装的ftp
# 查看并显示安装的版本号,没有安装则不显示 rpm -qa|grep vsftpd2)如果存在已经安装的Vsftpd服务,则先卸载Vsftpd
# 卸载1)中查找到的Vsftpd rpm -e vsftpd***3)删除Vsftp的相关文件(默认/etc/vsftpd文件下)
rm -rf /etc/vsftpd/4)重新安装
yum install vsftpd1)增加一个新的ftp用户,指定该用户的目录(-s nologin会导致ftp也无法访问,不知道是什么问题)
useradd -d /opt/ftp_share ftp_hik2)–设置用户的密码
passwd ftp_hik3)修改目录权限
chmod -R 775 /opt/ftp_share/1)将创建的系统用户添加到配置文件的信任列表user_list中
# 打开文件,用户列表配置文件下方换行写上用户名即可 vim /etc/vsftpd/user_list2)修改配置文件vsftpd.conf
# 打开配置文件 vi /etc/vsftpd/vsftpd.conf # 配置文件中修改以下两个参数为以下值 listen=YES listen_ipv6=NO # 增加以下配置行 userlist_deny=NO userlist_file=/etc/vsftpd/user_list1)启动服务
service vsftpd start # 配置文件中添加的新配置项末尾有空格则无法启动报错如下:Job for vsftpd.service failed because the control process exited with error code. See "systemctl status vsftpd.service" and "journalctl -xe" for details.2)停止服务
service vsftpd stop3)重启服务
service vsftpd restart