linux操作之vsftp服务器搭建

修改yum源为本地

linux操作之vsftp服务器搭建_第1张图片

mkdir /opt/centos	#创建挂载位置
mount /dev/cdrom /opt/centos/	#进行挂载操作
ls /opt/centos/	检测挂载结果

在这里插入图片描述

mv /etc/yum.repos.d/* /media/ #将/etc/yum.repos.d下所有文件移走
vi /etc/yum.repos.d/local.repo #编辑本地yum文件
内容如下:
	[centos7]
	name=centos7
	baseurl=file:///opt/centos
	gpgcheck=0
	enabled=1

在这里插入图片描述

安装ftp服务

linux操作之vsftp服务器搭建_第2张图片
修改ftp配置文件

vi /etc/vsftpd/vsftpd.conf 

添加一行内容:
linux操作之vsftp服务器搭建_第3张图片

使用ftp服务

开启ftp服务并关闭防火墙

systemctl start vsftpd
systemctl stop firewalld

linux操作之vsftp服务器搭建_第4张图片
访问ip进行检测


新建测试文件(/opt/aaa.txt)# touch /opt/aaa.txt


linux操作之vsftp服务器搭建_第5张图片

你可能感兴趣的:(笔记,linux,centos,yum,ftp,运维)