<?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; nfs</title>
	<atom:link href="http://www.osyunwei.com/archives/tag/nfs-2/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>Sun, 10 May 2026 14:53:20 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Linux系统下安装配置NFS服务器</title>
		<link>https://www.osyunwei.com/archives/15625.html</link>
		<comments>https://www.osyunwei.com/archives/15625.html#comments</comments>
		<pubDate>Fri, 11 Apr 2025 07:24:58 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[NFS]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[nfs]]></category>

		<guid isPermaLink="false">https://www.osyunwei.com/?p=15625</guid>
		<description><![CDATA[操作系统：CentOS-7-8、openEuler、Anolis OS等 准备工作 1、关闭selinux sestatus #查看状态，显示disabled表示已经禁用 sed -i 's/^SELINUX=.*/SELINUX=disabled/' /etc/selinux/config #禁用selinux setenforce 0 #临时禁用 /usr/sbin/sestatus -v #查看selinux状态，disabled表示关闭 2、防火墙配置 2.1、关闭firewall： systemctl stop firewalld.service #停止firewall systemctl disable firewalld.service #禁止firewall开机启动 systemctl mask firewalld systemctl stop firewalld yum remove firewalld 2.2、安装iptables防火墙 yum install iptables-services #安装 vi /etc/sysconfig/iptables #编辑防火墙配置文件，开放TCP 2049端口 # sample configuration for iptables service # you can edit [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/15625.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/15625.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Docker Swarm集群使用NFS共享存储</title>
		<link>https://www.osyunwei.com/archives/11992.html</link>
		<comments>https://www.osyunwei.com/archives/11992.html#comments</comments>
		<pubDate>Wed, 03 Nov 2021 06:18:23 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[Docker]]></category>
		<category><![CDATA[docker]]></category>
		<category><![CDATA[nfs]]></category>

		<guid isPermaLink="false">https://www.osyunwei.com/?p=11992</guid>
		<description><![CDATA[CentOS 7.x 安装Docker-ce社区版本 https://www.osyunwei.com/archives/11592.html 搭建docker本地私有镜像仓库 https://www.osyunwei.com/archives/11928.html CentOS 7.x安装部署NFS文件共享服务器 https://www.osyunwei.com/archives/11942.html 使用Docker-Compose实现Docker容器编排 https://www.osyunwei.com/archives/11903.html 一、通过在Docker Swarm集群内每台服务器挂载nfs目录实现共享存储 1、在nfs服务器配置好挂载目录 /nfs 192.168.21.0/24(insecure,rw,sync,no_subtree_check,no_root_squash) 2、在每台服务器上挂载nfs服务器目录，并设置开机自动挂载 mount -t nfs -o nolock,nfsvers=3,vers=3,soft,intr,bg,rw,rsize=32768,wsize=32768 192.168.21.8:/nfs /nfs 3、集群内所有服务器登录到私有仓库，下载好所需要的容器镜像 docker login hub.osyunwei.com [root@node02 /]# docker images REPOSITORY TAG IMAGE ID CREATED SIZE hub.osyunwei.com/nginx 1.20.1 01dbf760f0dc 2 weeks ago 1.22GB hub.osyunwei.com/php-fpm 8.0.11 597d18ebb61d 2 weeks ago 2.66GB hub.osyunwei.com/mysql v8.0.26 b4d1dc08fa3f [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/11992.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/11992.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CentOS 7.x安装部署NFS文件共享服务器</title>
		<link>https://www.osyunwei.com/archives/11942.html</link>
		<comments>https://www.osyunwei.com/archives/11942.html#comments</comments>
		<pubDate>Thu, 28 Oct 2021 07:04:21 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[NFS]]></category>
		<category><![CDATA[CentOS]]></category>
		<category><![CDATA[nfs]]></category>

		<guid isPermaLink="false">https://www.osyunwei.com/?p=11942</guid>
		<description><![CDATA[一、防火墙配置 CentOS 7.x默认使用的是firewall作为防火墙，这里改为iptables防火墙。 1、关闭firewall： systemctl stop firewalld.service #停止firewall systemctl disable firewalld.service #禁止firewall开机启动 systemctl mask firewalld systemctl stop firewalld yum remove firewalld 2、安装iptables防火墙 yum install iptables-services #安装 vi /etc/sysconfig/iptables #编辑防火墙配置文件 # sample configuration for iptables service # you can edit this manually or use system-config-firewall # please do not ask us to add additional ports/services to [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/11942.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/11942.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
