<?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; Zend Guard</title>
	<atom:link href="http://www.osyunwei.com/archives/tag/zend-guard/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>CentOS安装php加速软件Zend Guard</title>
		<link>https://www.osyunwei.com/archives/577.html</link>
		<comments>https://www.osyunwei.com/archives/577.html#comments</comments>
		<pubDate>Wed, 02 Nov 2011 02:26:12 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[php安装zend]]></category>
		<category><![CDATA[Zend Guard]]></category>

		<guid isPermaLink="false">http://w66416.s75.chinaccnet.cn/?p=577</guid>
		<description><![CDATA[    说明：PHP5.3以上的版本不再支持Zend Optimizer，已经被全新的 Zend Guard Loader 取代，下面是安装Zend Guard具体步骤，以下操作均在终端命令行执行     1、下载Zend Guardcd /home        wget http://downloads.zend.com/guard/5.5.0/ZendGuardLoader-php-5.3-linux-glibc23-i386.tar.gz    #32位        wget http://downloads.zend.com/guard/5.5.0/ZendGuardLoader-php-5.3-linux-glibc23-x86_64.tar.gz  #64位    2、安装Zend Guard        mkdir /usr/zend       #建立Zend Guard安装目录        tar xvfz ZendGuardLoader-php-5.3-linux-glibc23-i386.tar.gz    #解压安装文件        cp ZendGuardLoader-php-5.3-linux-glibc23-i386/php-5.3.x/ZendGuardLoader.so     /usr/zend/   #拷贝文件到安装目录        rm -rf /home/ZendGuardLoader-php-5.3-linux-glibc23-i386*   #删除安装包    系统运维  www.osyunwei.com  温馨提醒：qihang01原创内容©版权所有,转载请注明出处及原文链接 3、配置Zend Guard        cp  /etc/php.ini    /etc/php.inibak   #修改之前先备份        vi /etc/php.ini    [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/577.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/577.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
