1、关闭防火墙 systemctl stop firewalld,systemctl disable firewalld
将SELINUX=enforcing替换为SELINUX=permissive
sed -i.bak s'/SELINUX=enforcing/SELINUX=permissive/' /etc/selinux/config
setenforce 0
getenforce
2、使用cd光盘模拟yum仓库,开启自动挂载:
systemctl restart autofs
systemctl enable autofs。
3、在cd /etc/yum.repos.d/路径下配置:vim base.repo 文件后缀必须是repo
配置客户端访问路径:使用yum安装管理软件_第1张图片
4、使用 yum repolist 查看仓库名称是否挂载
使用yum安装管理软件_第2张图片
5、在cd /var/ftp/pub/路径下创建挂载路径:
mkdir centos/6/os/x86_64/ -pv
6、将系统安装盘挂载在mkdir centos/6/os/x86_64/ -pv
使用yum安装管理软件_第3张图片
7、测试ftp服务:
使用yum安装管理软件_第4张图片

8、安装vsftpd软件并开启此服务 yum install vsftpd
开启ftp服务 :
使用yum安装管理软件