<?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/category/config/other-config/nfs/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>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>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>
		<item>
		<title>CentOS下NFS服务器配置教程</title>
		<link>https://www.osyunwei.com/archives/3757.html</link>
		<comments>https://www.osyunwei.com/archives/3757.html#comments</comments>
		<pubDate>Thu, 03 May 2012 15:36:22 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[NFS]]></category>
		<category><![CDATA[CentOS]]></category>

		<guid isPermaLink="false">http://www.osyunwei.com/?p=3757</guid>
		<description><![CDATA[说明： NFS服务器: 操作系统：CentOS 5.5 IP：192.168.21.160 nfs网络文件服务器共享目录：/data/osyunwei 目录所有者：www(说明：www为nginx运行账号) chown www.www -R /data/osyunwei 目录权限：700 chmod 700 -R /data/osyunwei NFS客户端： 操作系统：CentOS 5.5 IP：192.168.21.169 把NFS服务器上的目录/data/osyunwei挂载到本地目录/data/osyunwei中 本地目录/data/osyunwei所有者：www(说明：www为nginx运行账号) 系统运维 www.osyunwei.com 温馨提醒：qihang01原创内容©版权所有,转载请注明出处及原文链接 chown www.www -R /data/osyunwei 目录权限：700 chmod 700 -R /data/osyunwei 一、关闭SELINUX vi /etc/selinux/config #SELINUX=enforcing #注释掉 #SELINUXTYPE=targeted #注释掉 SELINUX=disabled #增加 :wq 保存，关闭 shutdown -r now #重启系统 二、防火墙设置，开启相应端口 vi /etc/sysconfig/iptables -A RH-Firewall-1-INPUT -m [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/3757.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/3757.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
