<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>系统运维 &#187; FTP</title>
	<atom:link href="http://www.osyunwei.com/archives/tag/ftp/feed" rel="self" type="application/rss+xml" />
	<link>https://www.osyunwei.com</link>
	<description>国产化OS/AnolisOS/openEuler/RHEL/CentOS/Rocky Linux/Debian/Ubuntu Linux FreeBSD 服务器教程 &#124; Windows Server 2003/2008/2012/2016/2019/2022/2025服务器教程</description>
	<lastBuildDate>Tue, 14 Apr 2026 10:59:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Ubuntu 20.04.x/Debian 10.x译安装配置Pure-FTPd服务器</title>
		<link>https://www.osyunwei.com/archives/11573.html</link>
		<comments>https://www.osyunwei.com/archives/11573.html#comments</comments>
		<pubDate>Wed, 30 Jun 2021 10:50:59 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[FTP]]></category>
		<category><![CDATA[Pure-FTPd]]></category>

		<guid isPermaLink="false">https://www.osyunwei.com/?p=11573</guid>
		<description><![CDATA[说明： Pure-FTPd是一款开源的FTP服务器软件，配置简单，安全高效，下面我们在CentOS 8.x/Rocky Linux 8.x系统下部署Pure-FTPd 一、配置防火墙，开启Pure-FTPd需要的端口 1.1安装iptables防火墙 Ubuntu Server默认没有开启任何防火墙的，但是默认安装了ufw防火墙，我们这里推荐使用iptables防火墙。 ufw status #查看系统自带的ufw防火墙状态 Status: inactive #表示关闭 ufw disable #关闭ufw防火墙，参数enable是开启，我们这里关闭 apt-get remove ufw #卸载ufw apt-get purge ufw #清除ufw依赖包 whereis iptables #查看系统是否安装防火墙 apt-get install iptables #运行此命令安装防火墙 mkdir /etc/sysconfig #创建防火墙配置文件存放目录 touch /etc/sysconfig/iptables #创建防火墙配置文件 nano /etc/sysconfig/iptables #编辑添加防火墙规则 # sample configuration for iptables service # you can edit this manually or [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/11573.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/11573.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CentOS 8.x/Rocky Linux 8.x编译安装配置Pure-FTPd服务器</title>
		<link>https://www.osyunwei.com/archives/11527.html</link>
		<comments>https://www.osyunwei.com/archives/11527.html#comments</comments>
		<pubDate>Mon, 28 Jun 2021 11:32:45 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[FTP]]></category>
		<category><![CDATA[CentOS]]></category>
		<category><![CDATA[Rocky]]></category>

		<guid isPermaLink="false">https://www.osyunwei.com/?p=11527</guid>
		<description><![CDATA[说明： Pure-FTPd是一款开源的FTP服务器软件，配置简单，安全高效，下面我们在CentOS 8.x/Rocky Linux 8.x系统下部署Pure-FTPd 一、配置防火墙，开启FTP服务器需要的端口 CentOS 8.x/Rocky Linux 8.x默认使用的是firewall作为防火墙，这里改为iptables防火墙。 1、关闭firewall： systemctl stop firewalld.service #停止firewall systemctl disable firewalld.service #禁止firewall开机启动 2、安装iptables防火墙 yum install iptables-services #安装 vi /etc/sysconfig/iptables #编辑防火墙配置文件 # Firewall configuration written by system-config-firewall # Manual customization of this file is not recommended. *filter :INPUT ACCEPT [0:0] :FORWARD ACCEPT [0:0] :OUTPUT ACCEPT [0:0] -A INPUT -m [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/11527.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/11527.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CentOS 7.x 8.x安装配置Vsftp服务器</title>
		<link>https://www.osyunwei.com/archives/9006.html</link>
		<comments>https://www.osyunwei.com/archives/9006.html#comments</comments>
		<pubDate>Tue, 31 Mar 2015 02:03:01 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[FTP]]></category>
		<category><![CDATA[CentOS]]></category>
		<category><![CDATA[Vsftpd]]></category>

		<guid isPermaLink="false">http://www.osyunwei.com/?p=9006</guid>
		<description><![CDATA[本文档最后更新于2020年3月18日 一、配置防火墙，开启FTP服务器需要的端口 CentOS 7.x 8.x 默认使用的是firewall作为防火墙，这里改为iptables防火墙。 1、关闭firewall： systemctl stop firewalld.service #停止firewall systemctl disable firewalld.service #禁止firewall开机启动 2、安装iptables防火墙 yum install iptables-services #安装 vi /etc/sysconfig/iptables #编辑防火墙配置文件 # Firewall configuration written by system-config-firewall # Manual customization of this file is not recommended. *filter :INPUT ACCEPT [0:0] :FORWARD ACCEPT [0:0] :OUTPUT ACCEPT [0:0] -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/9006.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/9006.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows下通过FTP自动备份数据到服务器并删除指定天数前的备份</title>
		<link>https://www.osyunwei.com/archives/1442.html</link>
		<comments>https://www.osyunwei.com/archives/1442.html#comments</comments>
		<pubDate>Fri, 16 Dec 2011 05:34:43 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[Bat]]></category>
		<category><![CDATA[FTP]]></category>
		<category><![CDATA[备份]]></category>
		<category><![CDATA[自动备份]]></category>

		<guid isPermaLink="false">http://www.osyunwei.com/?p=1442</guid>
		<description><![CDATA[说明： 1、要备份的文件在D盘根目录下面，以时间命名，例如 D:\data_db_201112130001.BAK D:\data_db_201112140002.BAK D:\data_db_201112150003.BAK 每天会自动生成一个新的文件，例如2011年12月16号，会自动生成data_db_201112160004.BAK 系统运维  www.osyunwei.com  温馨提醒：qihang01原创内容©版权所有,转载请注明出处及原文链接 2、要把D:\下面当天生成的那个数据定时备份到FTP服务器上，例如，今天是2011年12月16号，要把data_db_201112160004.BAK这个文件上传到FTP服务器上，并且删除7天前的数据（只保留最近7天的备份） ftp服务器：192.168.1.1 端口：21 用户名：admin 密码：123456 备份文件目录databak 系统运维  www.osyunwei.com  温馨提醒：qihang01原创内容©版权所有,转载请注明出处及原文链接 把下面的代码保存问data.bat，添加到windows的计划任务中，每天自动执行即可。 &#160;&#160;&#160;&#160;&#160;» 本文链接：https://www.osyunwei.com/archives/1442.html» 订阅本站：https://www.osyunwei.com/feed» 转载请注明来源：系统运维 » Windows下通过FTP自动备份数据到服务器并删除指定天数前的备份<p><a rel="bookmark" href="https://www.osyunwei.com/archives/1442.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/1442.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>CentOS Linux Vsftp服务器配置</title>
		<link>https://www.osyunwei.com/archives/651.html</link>
		<comments>https://www.osyunwei.com/archives/651.html#comments</comments>
		<pubDate>Wed, 02 Nov 2011 13:01:01 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[FTP]]></category>
		<category><![CDATA[ftp服务器配置]]></category>
		<category><![CDATA[linux ftp]]></category>
		<category><![CDATA[Vsftp]]></category>

		<guid isPermaLink="false">http://w66416.s75.chinaccnet.cn/?p=651</guid>
		<description><![CDATA[1、开启防火墙ftp端口 vi /etc/sysconfig/iptables     #编辑防火墙配置文件 注意：如果ftp端口修改为其它的端口（比如2222），这时防火墙就要开启2222端口，这里防火墙是以CentOS 6.0为例 /etc/init.d/iptables restart    #重启防火墙使配置生效 2、检查系统是否已安装vsftp     系统运维  www.osyunwei.com  温馨提醒：qihang01原创内容©版权所有,转载请注明出处及原文链接 rpm -q vsftpd package vsftpd is not installed        #说明系统没有安装vsftpd 3、安装vsftpd yum install vsftpd 按Y回车，系统自动安装 /etc/init.d/vsftpd start     #启动vsftpd service vsftpd restart    #重启 service vsftpd stop   #停止 chkconfig vsftpd on   #设置开机时自动运行 4、配置vsftp服务器 配置文件说明：    /etc/vsftpd/vsftpd.conf  vsftpd的核心配置文件    /etc/vsftpd/ftpusers  用于指定哪些用户不能访问FTP服务器    /etc/vsftpd/user_list 指定允许使用vsftpd的用户列表文件    [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/651.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/651.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
