<?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; RHEL 6.1</title>
	<atom:link href="http://www.osyunwei.com/archives/tag/rhel-6-1/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>RHEL 6.1最小化编译安装Nginx1.0.9+MySQL5.5.17+PHP5.3.8+Zend Guard</title>
		<link>https://www.osyunwei.com/archives/1098.html</link>
		<comments>https://www.osyunwei.com/archives/1098.html#comments</comments>
		<pubDate>Fri, 11 Nov 2011 14:29:51 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[LNMP]]></category>
		<category><![CDATA[lnmp]]></category>
		<category><![CDATA[RHEL 6.1]]></category>
		<category><![CDATA[Zend Guard]]></category>
		<category><![CDATA[编译安装Nginx]]></category>

		<guid isPermaLink="false">http://w66416.s75.chinaccnet.cn/?p=1098</guid>
		<description><![CDATA[引言： 操作系统：RHEL 6.1 32位 下载地址：请自行下载，这里提供一个下载地址，仅供参考 ed2k://&#124;file&#124;[红帽企业Linux.6.1].rhel-server-6.1-i386-dvd.iso&#124;3066486784&#124;492a4ccae7c2c52cca87196c72a4e24f&#124;h=hzsovcxap52sc2y2wfapxrratgnbpn72&#124;/ 安装方式：采用最小化安装，在安装系统的时候选择最小安装模式，不含有任何可选安装包，最小化安装完成之后，系统占用800M左右磁盘空间。 备注：操作系统的安装，这里就不演示了，如果有疑问可以参考相关教程 安装前准备： 1、配置好IP、DNS、网关，确保使用远程连接工具能够连接服务器 系统运维  www.osyunwei.com  温馨提醒：qihang01原创内容©版权所有,转载请注明出处及原文链接 vi  /etc/sysconfig/network-scripts/ifcfg-eth0 #添加以下配置信息(具体IP等信息改为你自己的) ONBOOT=yes IPADDR=192.168.1.2 #配置ip地址 NETMASK=255.255.255.0 #子网掩码 GATEWAY=192.168.1.1 #设置网关 DNS1=8.8.8.8 DNS2=8.8.4.4 service network restart #重启网络服务 2、关闭selinux vi /etc/selinux/config 把SELINUX=enforcing SELINUXTYPE=targetede 注释掉，然后新加一行为：SELINUX=disabled 3、开启防火墙相应端口，apache需要开启80端口 MySQL需要开启3306端口 vi /etc/sysconfig/iptables 添加下面的内容 -A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT #（允许80端口通过防火墙） [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/1098.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/1098.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>RHEL 6.1最小化编译安装Apache2.2.21+MySQL5.5.17+PHP5.3.8+Zend Guard</title>
		<link>https://www.osyunwei.com/archives/1079.html</link>
		<comments>https://www.osyunwei.com/archives/1079.html#comments</comments>
		<pubDate>Thu, 10 Nov 2011 08:48:26 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[LAMP]]></category>
		<category><![CDATA[RHEL]]></category>
		<category><![CDATA[RHEL 6.1]]></category>
		<category><![CDATA[编译安装]]></category>

		<guid isPermaLink="false">http://w66416.s75.chinaccnet.cn/?p=1079</guid>
		<description><![CDATA[引言：    操作系统：RHEL 6.1 32位 下载地址：请自行下载，这里提供一个下载地址，仅供参考 ed2k://&#124;file&#124;[红帽企业Linux.6.1].rhel-server-6.1-i386-dvd.iso&#124;3066486784&#124;492a4ccae7c2c52cca87196c72a4e24f&#124;h=hzsovcxap52sc2y2wfapxrratgnbpn72&#124;/ 安装方式：采用最小化安装，在安装系统的时候选择最小安装模式，不含有任何可选安装包，最小化安装完成之后，系统占用800M左右磁盘空间。  备注：操作系统的安装，这里就不演示了，如果有疑问可以参考相关教程          安装前准备： 1、配置好IP、DNS、网关，确保使用远程连接工具能够连接服务器 系统运维  www.osyunwei.com  温馨提醒：qihang01原创内容©版权所有,转载请注明出处及原文链接 vi /etc/sysconfig/network-scripts/ifcfg-eth0  #添加以下配置信息(具体IP等信息改为你自己的) ONBOOT=yes IPADDR=192.168.1.2  #配置ip地址 NETMASK=255.255.255.0 #子网掩码 GATEWAY=192.168.1.1  #设置网关 DNS1=8.8.8.8 DNS2=8.8.4.4 service network restart  #重启网络服务 2、关闭selinux vi /etc/selinux/config 把SELINUX=enforcing SELINUXTYPE=targetede 注释掉，然后新加一行为：SELINUX=disabled 3、开启防火墙相应端口，apache需要开启80端口  MySQL需要开启3306端口    vi /etc/sysconfig/iptables    添加下面的内容    -A INPUT -m state --state NEW -m tcp -p tcp [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/1079.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/1079.html/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>RHEL 6.1安装图解教程（视频）</title>
		<link>https://www.osyunwei.com/archives/1024.html</link>
		<comments>https://www.osyunwei.com/archives/1024.html#comments</comments>
		<pubDate>Tue, 08 Nov 2011 01:58:37 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[RHEL]]></category>
		<category><![CDATA[RHEL 6.1]]></category>
		<category><![CDATA[RHEL 安装]]></category>
		<category><![CDATA[安装图解教程]]></category>

		<guid isPermaLink="false">http://w66416.s75.chinaccnet.cn/?p=1024</guid>
		<description><![CDATA[用光盘或者U盘成功引导后，出现如下界面： 界面说明： Install or upgrade an existing system 安装或升级现有的系统 install system with basic video driver 安装过程中采用 基本的显卡驱动 Rescue installed system 进入系统修复模式 Boot from local drive 退出安装从硬盘启动 这里选择第一项，安装或升级现有的系统，回车。 出现是否对CD媒体进行测试的提问，这里选择“Skip”跳过测试。       系统运维  www.osyunwei.com  温馨提醒：qihang01原创内容©版权所有,转载请注明出处及原文链接 出现下面的界面 默认Next 选择语言为：中文（简体）Next 键盘选择为：美国英语式 选择第一项，基本存储设备 选择第一项：是的，丢弃和数据（格式化硬盘） 设置计算机名 时区选择，默认即可。 设置root密码 注意：如果你使用的密码过于简单，系统会自动提示，这里选择“无论如何都使用”       系统运维  www.osyunwei.com  温馨提醒：qihang01原创内容©版权所有,转载请注明出处及原文链接 选择 创建自定义布局 可以看到硬盘的容量，我这里显示的是5G，现在自定义分区。 点创建，选择标准分区，点Create（生成） 注意：分区之前，自己先要规划好，怎么分区 我这里的分区如下： 硬盘总共5G /4G Swap1G(内存小于2G时，设置为内存的2倍；内存大于或等于2G时，设置为2G) [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/1024.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/1024.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
