<?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; CentOS 5.10</title>
	<atom:link href="http://www.osyunwei.com/archives/tag/centos-5-10/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>CentOS 5.10编译安装Nginx1.4.4+MySQL5.5.35+PHP5.3.28</title>
		<link>https://www.osyunwei.com/archives/7195.html</link>
		<comments>https://www.osyunwei.com/archives/7195.html#comments</comments>
		<pubDate>Fri, 10 Jan 2014 08:50:59 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[LNMP]]></category>
		<category><![CDATA[CentOS 5.10]]></category>
		<category><![CDATA[lnmp]]></category>

		<guid isPermaLink="false">http://www.osyunwei.com/?p=7195</guid>
		<description><![CDATA[说明： 操作系统：CentOS 5.10 64位 准备篇： 一、配置好IP、DNS 、网关，确保使用远程连接工具能够连接服务器，服务器时间设置正确 CentOS 5.10系统安装配置图解教程：http://www.osyunwei.com/archives/7002.html 二、配置防火墙，开启80端口、3306端口 vi /etc/sysconfig/iptables  #编辑 -A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT  #允许80端口通过防火墙 -A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 3306 -j ACCEPT  #允许3306端口通过防火墙 特别提示：如果这两条规则添加到防火墙配置的最后一行，导致防火墙启动失败，正确的应该是添加到默认的22端口                       [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/7195.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/7195.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>CentOS 5.10系统安装配置图解教程</title>
		<link>https://www.osyunwei.com/archives/7002.html</link>
		<comments>https://www.osyunwei.com/archives/7002.html#comments</comments>
		<pubDate>Thu, 14 Nov 2013 05:35:47 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[CentOS]]></category>
		<category><![CDATA[CentOS 5.10]]></category>
		<category><![CDATA[CentOS安装]]></category>

		<guid isPermaLink="false">http://www.osyunwei.com/?p=7002</guid>
		<description><![CDATA[说明： 在实际生产环境中，CentOS 5.x系列仍然是很多服务器装机者的首选系统 截止目前CentOS 5.x最新版本为CentOS 5.10，下面介绍CentOS 5.10的具体安装配置过程 服务器相关设置如下： 操作系统：CentOS 5.10 主机名称：www IP地址：192.168.236.128 网关：192.168.236.2 DNS：8.8.8.8   8.8.4.4 附CentOS 5.10系统镜像下载地址： 32位下载地址： http://mirrors.163.com/centos/5.10/isos/i386/CentOS-5.10-i386-bin-DVD-1of2.iso 64位下载地址： http://mirrors.163.com/centos/5.10/isos/x86_64/CentOS-5.10-x86_64-bin-DVD-1of2.iso 备注： 1、系统镜像有两个文件，安装系统只用到第一个，即CentOS-5.10-i386-bin-DVD-1of2.iso      第二个镜像是系统自带的软件包。 2、生产服务器如果是大内存（4G以上内存），建议安装64位版本 一、安装CentOS 5.10 用光盘成功引导系统，会出现下面的界面 直接回车，进入图形化安装界面 按键盘上的Tab键，把光标定位到skip，然后回车（跳过光盘镜像检测） 点击Next 语言选择界面：English（English），点Next 备注：生产服务器建议安装英文版本 键盘模式：U.S.English 点Next 如果磁盘之前没有分区过，会出现上面的界面，点Yes （初始化磁盘并清除所有数据），出现下面的界面 磁盘分区模式，选择Create custom layout （建立自定义的分区结构） Next，出现下面的界面 系统运维  www.osyunwei.com  温馨提醒：qihang01原创内容 版权所有,转载请注明出处及原文链接 说明：在对磁盘进行分区之前，要先规划好如何分区，每个分区设置多大 我这里的分区如下 /boot 200MB  #一般设置为200MB Swap1G(1024MB)  #swap一般建议为物理内存的2倍大小 /  #剩余所有磁盘空间 [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/7002.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/7002.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
