<?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; Tengine</title>
	<atom:link href="http://www.osyunwei.com/archives/category/config/web/tengine/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下编译安装部署Tengine</title>
		<link>https://www.osyunwei.com/archives/15640.html</link>
		<comments>https://www.osyunwei.com/archives/15640.html#comments</comments>
		<pubDate>Thu, 24 Apr 2025 06:25:08 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[Tengine]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[nginx]]></category>

		<guid isPermaLink="false">https://www.osyunwei.com/?p=15640</guid>
		<description><![CDATA[官方网站： https://tengine.taobao.org/ 下载地址： 1、tengine https://tengine.taobao.org/download_cn.html https://tengine.taobao.org/download/tengine-3.1.0.tar.gz 2、pcre https://ftp.pcre.org/pub/pcre/pcre-8.45.tar.gz 3、zlib https://zlib.net/fossils/zlib-1.3.tar.gz 4、openssl https://www.openssl.org/source/openssl-1.1.1k.tar.gz 创建相应目录： mkdir -p /data/server/tengine/packages mkdir -p /data/server/tengine/install 上传安装包到/data/server/tengine/packages目录下面 操作系统：openEuler、‌AnolisOS‌、AlmaLinux、Rocky Linux等 安装部署： 安装路径 tengine安装包存放目录：/data/server/tengine/packages tengine安装目录：/data/server/tengine tengine扩展安装目录：/data/server/tengine/install 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 [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/15640.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/15640.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>淘宝开源Web服务器Tengine安装教程</title>
		<link>https://www.osyunwei.com/archives/1217.html</link>
		<comments>https://www.osyunwei.com/archives/1217.html#comments</comments>
		<pubDate>Sat, 03 Dec 2011 02:26:50 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[Tengine]]></category>
		<category><![CDATA[Tengine安装教程]]></category>
		<category><![CDATA[开源Web服务器]]></category>

		<guid isPermaLink="false">http://w66416.s75.chinaccnet.cn/?p=1217</guid>
		<description><![CDATA[简介 Tengine是由淘宝核心系统部基于Nginx开发的Web服务器，它在Nginx的基础上，针对大访问量网站的需求，添加了很多功能和特性。Tengine的性能和稳定性已经在大型的网站如淘宝网，淘宝商城等得到了很好的验证。它的最终目标是打造一个高效、稳定、安全、易用的 Web 平台。Tengine现已开源。 特性 继承Nginx-1.0.10的所有特性； 组合多个CSS、JavaScript文件的访问请求变成一个请求； 支持管道和syslog形式的日志和抽样； 自动根据CPU数目设置亲缘性； 监控系统的负载和资源占用从而对系统进行保护； 显示对运维人员更友好的出错信息，便于定位出错机器； 更强大的访问速度限制模块； backtrace模块，程序崩溃的时候可以显示出错的调用栈。 ... CentOS 6.0编译安装Tengine 系统运维  www.osyunwei.com  温馨提醒：qihang01原创内容©版权所有,转载请注明出处及原文链接 1、编译工具包以及其它软件安装请参考文章： CentOS 6.0最小化编译安装Nginx+MySQL+PHP+Zend 2、安装Tengine （一）、安装pcre   #支持Tengine伪静态 cd /usr/local/src tar zxvf pcre-8.13.tar.gz mkdir /usr/local/pcre #创建安装目录 cd pcre-8.13 ./configure --prefix=/usr/local/pcre #配置 make make install （二）安装 tengine cd /usr/local/src tar zxvf tengine-1.2.0.tar.gz cd tengine ./configure --prefix=/usr/local/nginx --with-http_stub_status_module --with-openssl=/usr/ --with-pcre=/usr/local/src/pcre-8.13 [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/1217.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/1217.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
