<?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; 其它环境</title>
	<atom:link href="http://www.osyunwei.com/archives/category/config/other-config/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>Wed, 01 Apr 2026 08:27:54 +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>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>Linux下SVN服务器同时支持Apache的http和svnserve独立服务器两种模式且使用相同的访问权限账号</title>
		<link>https://www.osyunwei.com/archives/9145.html</link>
		<comments>https://www.osyunwei.com/archives/9145.html#comments</comments>
		<pubDate>Sat, 27 Jun 2015 11:40:22 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[SVN]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[svn]]></category>
		<category><![CDATA[svnserve]]></category>

		<guid isPermaLink="false">http://www.osyunwei.com/?p=9145</guid>
		<description><![CDATA[说明： 服务器操作系统：CentOS 6.x 服务器IP：192.168.21.134 实现目的： 1、在服务器上安装配置SVN服务； 2、配置SVN服务同时支持Apache的http和svnserve独立服务器两种模式访问； 3、Apache的http和svnserve独立服务器两种模式使用相同的访问权限账号。 具体操作： 一、关闭SELINUX vi /etc/selinux/config #SELINUX=enforcing #注释掉 #SELINUXTYPE=targeted #注释掉 SELINUX=disabled #增加 :wq! #保存退出 setenforce 0 #使配置立即生效 二、开启防火墙端口 系统运维  www.osyunwei.com  温馨提醒：系统运维原创内容©版权所有,转载请注明出处及原文链接 基于Apache的http模式，默认端口为80 基于svnserve的独立服务器模式，默认端口为3690 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 [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/9145.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/9145.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux下SVN服务器自动更新文件到Web目录</title>
		<link>https://www.osyunwei.com/archives/9131.html</link>
		<comments>https://www.osyunwei.com/archives/9131.html#comments</comments>
		<pubDate>Fri, 26 Jun 2015 02:58:57 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[SVN]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[svn]]></category>

		<guid isPermaLink="false">http://www.osyunwei.com/?p=9131</guid>
		<description><![CDATA[说明： 服务器操作系统：CentOS 服务器IP：192.168.21.134 SVN安装路径：/usr/local/svn SVN项目路径：/home/svn SVN登录账号：osyunwei SVN登录密码：123456 Web站点根目录：/home/web 实现目的： 当svn项目中有任何修改更新时，系统会自动实时从svn中检出文件并同步到Web站点根目录 具体操作： 一、使用SVN中post-commit实现自动实时从svn中检出文件并同步到Web站点根目录 cd /home/svn/hooks vi post-commit #编辑，添加以下代码 #!/bin/sh REPOS="$1" REV="$2" SVN_PATH=/usr/local/svn/bin WEB_PATH=/home/web SVN_USER=osyunwei SVN_PASS=123456 WEB_USER=www LOG_PATH=/tmp/svn.log echo `date "+%Y-%m-%d %H:%M:%S"` &#62;&#62; $LOG_PATH echo `whoami`,$REPOS,$REV &#62;&#62; $LOG_PATH $SVN_PATH/svn update $WEB_PATH --username $SVN_USER --password $SVN_PASS --no-auth-cache &#62;&#62; $LOG_PATH chown $WEB_USER.$WEB_USER -R $WEB_PATH :wq! #保存退出 chown www:www /home/svn/hooks/post-commit [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/9131.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/9131.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux下源码编译安装配置SVN服务器</title>
		<link>https://www.osyunwei.com/archives/9104.html</link>
		<comments>https://www.osyunwei.com/archives/9104.html#comments</comments>
		<pubDate>Thu, 25 Jun 2015 01:59:59 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[SVN]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[svn]]></category>

		<guid isPermaLink="false">http://www.osyunwei.com/?p=9104</guid>
		<description><![CDATA[说明： SVN（subversion）的运行方式有两种： 一种是基于Apache的http、https网页访问形式； 还有一种是基于svnserve的独立服务器模式。 SVN的数据存储方式也有两种：一种是在Berkeley DB数据库中存储数据；另一种是使用普通的文件FSFS存储数据。 由于Berkeley DB方式在使用中有可能锁住数据，一般建议使用FSFS方式更安全。 实现目的： 以svnserve的独立服务器模式，使用FSFS数据存储方式源码编译安装配置SVN服务器。 具体操作： 操作系统：CentOS 6.x 服务器IP:192.168.21.134 一、关闭SELINUX vi /etc/selinux/config #SELINUX=enforcing #注释掉 #SELINUXTYPE=targeted #注释掉 SELINUX=disabled #增加 :wq! #保存退出 setenforce 0 #使配置立即生效 二、开启防火墙端口 基于svnserve的独立服务器模式，默认端口为3690 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] [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/9104.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/9104.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web服务器.svn隐藏文件夹漏洞利用、修复和杜绝</title>
		<link>https://www.osyunwei.com/archives/9084.html</link>
		<comments>https://www.osyunwei.com/archives/9084.html#comments</comments>
		<pubDate>Tue, 23 Jun 2015 02:24:55 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[SVN]]></category>
		<category><![CDATA[svn]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.osyunwei.com/?p=9084</guid>
		<description><![CDATA[说明： SVN（subversion）是源代码版本管理软件， 在SVN的使用中， 会自动生成一个名为.svn的隐藏文件夹， 其中包含重要的源代码信息。 如果在发布代码时，直接复制代码文件夹到Web服务器， 同时.svn隐藏文件夹也被上传到程序根目录， 可以利用.svn/entries文件，获取到服务器源码、svn服务器账号密码等信息。 一、此隐藏文件夹是怎么来的？ 从svn获取发布版本时，没有正确使用svn导出功能导致！ 具体细节，乌云上面有篇文章，可以参考。 二、黑客是如何利用svn隐藏文件漏洞的？ 1、漏洞利用工具：Seay SVN漏洞利用工具（请自己下载） 2、添加网站url 在被利用的网址后面加/.svn/entries 系统运维  www.osyunwei.com  温馨提醒：系统运维原创内容©版权所有,转载请注明出处及原文链接 就能列出来网站目录，甚至下载整站。 三、修复漏洞 1、在web服务器配置文件中增加一段代码，过滤到.svn文件，返回404 nginx服务器： location ~ ^(.*)\/\.svn\/ { return 404; } 重启nginx Apache服务器： &#60;Directory ~ "\.svn"&#62; Order allow,deny Deny from all &#60;/Directory&#62; 重启Apache 2、查找服务器上所有.svn隐藏文件夹，删除 以下命令删除当前目录下.svn文件夹 find . -type d -name ".svn"&#124;xargs rm -rf rm -rf `find [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/9084.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/9084.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>CentOS下安装配置PPTP VPN服务器</title>
		<link>https://www.osyunwei.com/archives/7407.html</link>
		<comments>https://www.osyunwei.com/archives/7407.html#comments</comments>
		<pubDate>Thu, 13 Feb 2014 06:11:59 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[PPTP]]></category>
		<category><![CDATA[CentOS]]></category>
		<category><![CDATA[vpn]]></category>

		<guid isPermaLink="false">http://www.osyunwei.com/?p=7407</guid>
		<description><![CDATA[说明： 服务器操作系统：CentOS 5.X 64位 服务器IP地址：192.168.21.128 实现目的：服务器安装配置pptp软件，对外提供vpn拨号服务 具体操作： 一、安装包下载 1、ppp  #安装pptpd需要此软件包 http://poptop.sourceforge.net/yum/stable/packages/ppp-2.4.4-14.1.rhel5.x86_64.rpm 2、pptpd  #目前最新版本 http://poptop.sourceforge.net/yum/stable/packages/pptpd-1.4.0-1.rhel5.x86_64.rpm 下载好之后上传到/usr/local/src目录 二、检查服务器系统环境是否支持安装pptp vpn 1、检查系统内核是否支持MPPE补丁 modprobe ppp-compress-18 &#38;&#38;echo success 显示success说明系统支持MPPE补丁，如果不支持，需要先安装kernel-devel yum install kernel-devel 2、检查系统是否开启TUN/TAP支持 cat /dev/net/tun 如果这条指令显示结果为下面的文本，则表明通过： cat: /dev/net/tun: File descriptor in bad state 3、检查系统是否开启ppp支持 cat /dev/ppp 如果这条指令显示结果为下面的文本，则表明通过： cat: /dev/ppp: No such device or address 上面三条必须同时满足，否则不能安装pptp vpn 三、安装pptp cd  /usr/local/src rpm -ivh [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/7407.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/7407.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Debian下Vsftpd服务器配置</title>
		<link>https://www.osyunwei.com/archives/4539.html</link>
		<comments>https://www.osyunwei.com/archives/4539.html#comments</comments>
		<pubDate>Sun, 24 Jun 2012 11:07:21 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[FTP]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[Debian Vsftpd服务器]]></category>
		<category><![CDATA[Vsftpd]]></category>
		<category><![CDATA[Vsftpd服务器配置]]></category>

		<guid isPermaLink="false">http://www.osyunwei.com/?p=4539</guid>
		<description><![CDATA[环境说明： /home/www.osyunwei.com目录下有三个子目录 bbs sns blog 实现目的： 建立三个FTP用户 用户名：bbs  密码：123456  访问目录（可读、可写、可修改、可删除）：/home/www.osyunwei.com/bbs 用户名：sns   密码：123456  访问目录（可读、可写、可修改、可删除）：/home/www.osyunwei.com/sns 用户名：blog 密码：123456  访问目录（可读、可写、可修改、可删除）：/home/www.osyunwei.com/blog 配置篇 一、配置防火墙，开启21端口、9000到9045端口 说明：debian默认安装是没有开启任何防火墙的，为了服务器的安全，建议大家安装启用防火墙设置， 这里推荐使用iptables防火墙。 whereis iptables   #查看系统是否安装防火墙 iptables: /sbin/iptables /usr/share/iptables /usr/share/man/man8/iptables.8.gz  #表示已经安装iptables apt-get install iptables   #如果默认没有安装，请运行此命令安装防火墙 iptables -L  #查看防火墙配置信息，显示如下： ##################################################### Chain INPUT (policy ACCEPT) target     prot opt source               destination Chain FORWARD (policy ACCEPT) target     prot opt source               destination Chain OUTPUT [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/4539.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/4539.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows Server 2003搭建PPPoE服务器</title>
		<link>https://www.osyunwei.com/archives/3979.html</link>
		<comments>https://www.osyunwei.com/archives/3979.html#comments</comments>
		<pubDate>Wed, 23 May 2012 07:46:27 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[PPPoE]]></category>
		<category><![CDATA[Windows Server 2003]]></category>

		<guid isPermaLink="false">http://www.osyunwei.com/?p=3979</guid>
		<description><![CDATA[说明： PPPoE服务器： 系统：Windows Server 2003 IP：192.168.21.128 子网掩码：255.255.255.0 网关：192.168.21.2 可以正常访问外网 系统运维 www.osyunwei.com 温馨提醒：qihang01原创内容©版权所有,转载请注明出处及原文链接 PPPoE客户端： 系统：Windows XP IP:192.168.21.130 子网掩码：255.255.255.0 网关：192.168.21.2 不能访问外网，只能访问局域网 实现目的：PPPoE客户端通过PPPoE服务器拨号能够访问外网 备注：局域网中能够访问外网的IP段如下 192.168.21.128 192.168.21.160-192.168.21.180 PPPoE客户端拨号账号密码如下 账户：osyunwei 密码：123456 PPPoE服务器搭建软件下载：RasPPPoE 0.98c 一、PPPoE服务器配置 下载解压RasPPPoE 0.98c软件，双击打开RasPPPoE 0.98c.exe 点是安装 系统运维 www.osyunwei.com 温馨提醒：qihang01原创内容©版权所有,转载请注明出处及原文链接 点仍然继续 安装完成，确定，会出现下面的拨号界面，点取消 桌面-网上邻居，右键，点属性，出现下面的界面 双击 新建连接向导 下一步 设置高级连接，下一步 接受传入的连接，下一步 默认，下一步 不允许虚拟专用连接，下一步 点 添加 用户名：osyunwei 全称：PPPoE拨号用户 密码：123456 确认密码：123456 确定 下一步 默认下一步 [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/3979.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/3979.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>
		<item>
		<title>CentOS 5.5配置DHCP服务器</title>
		<link>https://www.osyunwei.com/archives/1744.html</link>
		<comments>https://www.osyunwei.com/archives/1744.html#comments</comments>
		<pubDate>Tue, 03 Jan 2012 02:36:11 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[DHCP]]></category>
		<category><![CDATA[CentOS dhcp服务器]]></category>
		<category><![CDATA[dhcp配置]]></category>

		<guid isPermaLink="false">http://www.osyunwei.com/?p=1744</guid>
		<description><![CDATA[环境说明： DHCP服务器系统：CentOS 5.5 网卡接口：eth0 IP地址：192.168.21.136 网关：192.168.21.2 子网掩码：255.255.255.0 DNS：8.8.8.8  8.8.4.4 一、安装 检查DHCP服务是否安装 rpm -q dhcp package dhcp is not installed yum -y install dhcp 系统运维  www.osyunwei.com  温馨提醒：qihang01原创内容©版权所有,转载请注明出处及原文链接 二、配置 cp /usr/share/doc/dhcp-3.0.5/dhcpd.conf.sample  /etc/dhcpd.conf  #复制配置文件模板 vi /etc/dhcpd.conf  #编辑配置文件 ddns-update-style interim;     #设置DHCP服务器模式 ignore client-updates;       #禁止客户端更新 subnet 192.168.21.0 netmask 255.255.255.0 { option routers                  192.168.21.2;  #设置网关 option subnet-mask              255.255.255.0;  #设置子网掩码 option domain-name-servers      [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/1744.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/1744.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CentOS VPS下安装PPTP搭建VPN服务器</title>
		<link>https://www.osyunwei.com/archives/1269.html</link>
		<comments>https://www.osyunwei.com/archives/1269.html#comments</comments>
		<pubDate>Wed, 07 Dec 2011 14:59:50 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[PPTP]]></category>
		<category><![CDATA[vpn]]></category>
		<category><![CDATA[vpn服务器]]></category>
		<category><![CDATA[vpn配置]]></category>

		<guid isPermaLink="false">http://www.osyunwei.com/?p=1269</guid>
		<description><![CDATA[1、检查系统内核是否支持MPPE补丁 modprobe ppp-compress-18 &#38;&#38;echo success 显示success说明系统支持MPPE补丁，如果不支持，需要先安装kernel-devel yum install kernel-devel 2、检查系统是否开启TUN/TAP支持 cat /dev/net/tun 如果这条指令显示结果为下面的文本，则表明通过： cat: /dev/net/tun: File descriptor in bad state #系统为英文版本 cat: /dev/net/tun: 文件描述符处于错误状态 #系统为简体中文版本 如果没有，需要VPS服务商开通TUN/TAP功能，一般VPS默认都开启此功能 3、安装ppp和iptables #安装PPTP需要这两个软件包（默认状态下，CentOS自带这两个软件包） yum install -y ppp iptables 4、安装PPTP cd /usr/local/src wget http://poptop.sourceforge.net/yum/stable/packages/pptpd-1.3.4-2.rhel5.i386.rpm #下载 rpm -ivh pptpd-1.3.4-2.rhel5.i386.rpm #安装 系统运维  www.osyunwei.com  温馨提醒：qihang01原创内容©版权所有,转载请注明出处及原文链接 5、配置PPTP （一）、 cp /etc/ppp/options.pptpd /etc/ppp/options.pptpdbak #备份 vi /etc/ppp/options.pptpd #编辑，保存 [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/1269.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/1269.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
