<?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; Web服务器</title>
	<atom:link href="http://www.osyunwei.com/archives/category/config/web/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>Tue, 14 Apr 2026 10:59:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>配置Nginx 四层（TCP和UDP）流量转发与七层（HTTP和HTTPS）代理支持SSL证书</title>
		<link>https://www.osyunwei.com/archives/17079.html</link>
		<comments>https://www.osyunwei.com/archives/17079.html#comments</comments>
		<pubDate>Wed, 01 Apr 2026 08:11:52 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[Nginx]]></category>
		<category><![CDATA[nginx]]></category>

		<guid isPermaLink="false">https://www.osyunwei.com/?p=17079</guid>
		<description><![CDATA[需求分析： nginx默认不支持四层转发和七层代理使用SSL证书，必须要开启下面的模块才可以 --with-stream --with-stream_ssl_preread_module --with-stream_ssl_module 操作步骤： 1、在编译安装nginx的时候加上这3个参数 #创建nginx安装目录 mkdir -p /data/server/nginx mkdir -p /data/server/nginx/packages mkdir -p /data/server/nginx/install #安装nginx #解压pcre cd /data/server/nginx/packages tar zxvf pcre2-10.47.tar.gz #解压zlib cd /data/server/nginx/packages tar zxvf zlib-1.3.2.tar.gz #解压openssl cd /data/server/nginx/packages tar zxvf openssl-3.6.1.tar.gz #安装nginx #nginx默认运行账号和组是Linux系统的内置账号和组nobody #创建nginx运行账号和组 cd /data/server/nginx/packages tar zxvf nginx-1.28.3.tar.gz cd nginx-1.28.3 ./configure \ --prefix=/data/server/nginx \ --user=autoops \ --group=autoops \ --without-http_memcached_module [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/17079.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/17079.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux下编译安装Nginx</title>
		<link>https://www.osyunwei.com/archives/16822.html</link>
		<comments>https://www.osyunwei.com/archives/16822.html#comments</comments>
		<pubDate>Mon, 19 Jan 2026 09:40:25 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[Nginx]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[nginx]]></category>

		<guid isPermaLink="false">https://www.osyunwei.com/?p=16822</guid>
		<description><![CDATA[操作系统：Rocky Linux 10.x Rocky Linux 10.x系统安装配置图解教程 https://www.osyunwei.com/archives/15874.html 安装包下载： 1、nginx https://nginx.org/download/nginx-1.28.1.tar.gz 2、zlib https://www.zlib.net/zlib-1.3.1.tar.gz 3、pcre2 https://github.com/PCRE2Project/pcre2/releases/download/pcre2-10.47/pcre2-10.47.tar.gz 4、openssl https://github.com/openssl/openssl/releases/download/openssl-3.5.4/openssl-3.5.4.tar.gz 安装前准备： 1、防火墙配置 Rocky Linux默认使用的是firewall作为防火墙 firewall-cmd --list-all #显示所有规则（含服务、端口、区域） systemctl status firewalld #检查 firewalld 状态 #开放80 443 端口 firewall-cmd --permanent --add-port=80/tcp firewall-cmd --permanent --add-port=443/tcp firewall-cmd --reload #重新加载防火墙配置 2、关闭SELINUX vi /etc/selinux/config #SELINUX=enforcing #注释掉 #SELINUXTYPE=targeted #注释掉 SELINUX=disabled #增加 :wq! #保存退出 setenforce 0 #使配置立即生效 [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/16822.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/16822.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux下编译安装Apache并支持php</title>
		<link>https://www.osyunwei.com/archives/16731.html</link>
		<comments>https://www.osyunwei.com/archives/16731.html#comments</comments>
		<pubDate>Thu, 11 Sep 2025 08:52:51 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[LAMP]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">https://www.osyunwei.com/?p=16731</guid>
		<description><![CDATA[前置知识： Rocky Linux 10.x编译安装nginx-1.28.x+mysql-8.4.x+php-8.4.x https://www.osyunwei.com/archives/16714.html 安装包下载： 1、apache https://dlcdn.apache.org/httpd/httpd-2.4.65.tar.gz 2、apr（Apache库文件） https://dlcdn.apache.org//apr/apr-1.7.6.tar.gz 3、apr-util（Apache库文件） https://dlcdn.apache.org//apr/apr-util-1.6.3.tar.gz 4、apache支持php模块 https://dlcdn.apache.org/httpd/mod_fcgid/mod_fcgid-2.3.9.tar.gz 安装apache： 1、安装编译工具包 yum install gcc make apr-devel apr-util-devel pcre2-devel openssl-devel 2、安装apr cd /usr/local/src tar zxvf apr-1.7.6.tar.gz cd apr-1.7.6 ./configure --prefix=/usr/local/apr make -j$(nproc) make install 3、安装apr-util cd /usr/local/src tar zxvf apr-util-1.6.3.tar.gz cd apr-util-1.6.3 ./configure --prefix=/usr/local/apr-util --with-apr=/usr/local/apr make -j$(nproc) make install ls /usr/local/apr-util/lib/libaprutil-1.so [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/16731.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/16731.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rocky Linux 10.x编译安装nginx-1.28.x+mysql-8.4.x+php-8.4.x</title>
		<link>https://www.osyunwei.com/archives/16714.html</link>
		<comments>https://www.osyunwei.com/archives/16714.html#comments</comments>
		<pubDate>Fri, 05 Sep 2025 07:34:12 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[LNMP]]></category>
		<category><![CDATA[lnmp]]></category>

		<guid isPermaLink="false">https://www.osyunwei.com/?p=16714</guid>
		<description><![CDATA[前置知识： Rocky Linux 10.x系统安装配置图解教程 https://www.osyunwei.com/archives/15874.html 准备篇 1、防火墙配置 Rocky Linux默认使用的是firewall作为防火墙 firewall-cmd --list-all #显示所有规则（含服务、端口、区域） systemctl status firewalld #检查 firewalld 状态 #开放80 443 3306端口 firewall-cmd --permanent --add-port=80/tcp firewall-cmd --permanent --add-port=443/tcp firewall-cmd --permanent --add-port=3306/tcp firewall-cmd --reload #重新加载防火墙配置 2、关闭SELINUX vi /etc/selinux/config #SELINUX=enforcing #注释掉 #SELINUXTYPE=targeted #注释掉 SELINUX=disabled #增加 :wq! #保存退出 setenforce 0 #使配置立即生效 getenforce #查看 SELinux 当前运行模式 3、系统约定 软件源代码包存放位置：/usr/local/src 源码包编译安装位置：/usr/local/软件名字 4、软件包下载 [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/16714.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/16714.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<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>Linux下编译安装php扩展imagick</title>
		<link>https://www.osyunwei.com/archives/15629.html</link>
		<comments>https://www.osyunwei.com/archives/15629.html#comments</comments>
		<pubDate>Wed, 23 Apr 2025 07:35:28 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">https://www.osyunwei.com/?p=15629</guid>
		<description><![CDATA[环境说明： php安装目录：/usr/local/php73 1、下载安装ImageMagick #imagick扩展的依赖库 cd /usr/local/src wget https://github.com/ImageMagick/ImageMagick/archive/7.0.8-61.tar.gz tar -zxvf  7.0.8-61.tar.gz cd ImageMagick-7.0.8-61 ./configure --prefix=/usr/local/imagemagick make make install 2、下载安装imagick扩展 cd /usr/local/src wget http://pecl.php.net/get/imagick-3.4.4.tgz tar -zxvf  imagick-3.4.4.tgz cd imagick-3.4.4 /usr/local/php73/bin/phpize ./configure --with-php-config=/usr/local/php73/bin/php-config --with-imagick=/usr/local/imagemagick make make install 3、在php.ini里面加上扩展 vi /usr/local/php73/etc/php.ini extension="imagick.so" :wq! #保存退出 4、查看是否已经安装扩展 /usr/local/php73/bin/php -i &#124; grep Imagick 5、安装ghostscript扩展 cd /usr/local/src wget -c https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs923/ghostscript-9.23.tar.gz tar -zxvf ghostscript-9.23.tar.gz cd [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/15629.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/15629.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows 下添加Nginx 为系统服务</title>
		<link>https://www.osyunwei.com/archives/15414.html</link>
		<comments>https://www.osyunwei.com/archives/15414.html#comments</comments>
		<pubDate>Wed, 05 Mar 2025 10:44:22 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[Nginx]]></category>
		<category><![CDATA[nginx]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">https://www.osyunwei.com/?p=15414</guid>
		<description><![CDATA[需求：把Windows版本的nginx添加为系统服务，并且设置为开机自启动 操作步骤： 1、下载Windows Service Wrapper工具 Winsw (Windows Service Wrapper) 可以将任何可执行文件配置成为能够在Windows系统后台自动启动、停止、重启的服务。 Winsw的工作原理是读取一个XML配置文件（通常命名为winsw.xml），在这个配置文件中定义了服务的名称、可执行文件路径、启动参数、服务描述、日志配置等信息。 通过运行Winsw提供的exe文件（如winsw.exe），根据XML配置来管理对应的应用程序作为服务。 官方网站：https://github.com/winsw/winsw 下载地址：https://github.com/winsw/winsw/releases/download/v2.12.0/WinSW-x64.exe 2、编写XML配置文件 文件名nginx-service.xml，添加下面的内容，特别注意格式缩进 &#60;!-- nginx-service.xml --&#62; &#60;service&#62; &#60;id&#62;nginx&#60;/id&#62; &#60;name&#62;nginx&#60;/name&#62; &#60;description&#62;nginx&#60;/description&#62; &#60;logpath&#62;C:\nginx\server-logs\&#60;/logpath&#62; &#60;logmode&#62;roll&#60;/logmode&#62; &#60;depend&#62;&#60;/depend&#62; &#60;executable&#62;C:\nginx\nginx.exe&#60;/executable&#62; &#60;stopexecutable&#62;C:\nginx\nginx.exe -s stop&#60;/stopexecutable&#62; &#60;/service&#62; nginx安装目录：C:\nginx 上传WinSW-x64.exe和nginx-service.xml到nginx安装目录：C:\nginx下面 修改WinSW-x64.exe名称为nginx-service.exe nginx-service.xml和nginx-service.exe这2名称要一致 3、添加服务 以管理员身份运行命令提示符，切换到C:\nginx下面 .\nginx-service.exe install #注册系统服务，如果系统没有安装.net，根据提示先安装 4、查看系统服务 在Windows下查看系统服务 服务类型：自动 点启动 应用-确定 nginx相关操作命令： 注册系统服务命令 .\nginx-service.exe install 删除已注册的系统服务命令 .\nginx-service.exe uninstall 停止对应的系统服务命令 .\nginx-service.exe stop [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/15414.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/15414.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows-Server服务器无法安装.net freamwork 3.5解决办法</title>
		<link>https://www.osyunwei.com/archives/15408.html</link>
		<comments>https://www.osyunwei.com/archives/15408.html#comments</comments>
		<pubDate>Wed, 05 Mar 2025 09:40:18 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[IIS]]></category>
		<category><![CDATA[iis]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">https://www.osyunwei.com/?p=15408</guid>
		<description><![CDATA[遇到的问题：Windows-Server服务器安装.net报错，无法正常安装 解决办法：使用cab文件安装 下载地址： 网盘链接: https://pan.baidu.com/s/1OxfwMzeG0M1Effw6-xNXQw?pwd=qsv5 提取码: qsv5 操作步骤： 1. 复制microsoft-windows-netfx3-ondemand-package~31bf3856ad364e35~amd64~~.cab 文件到C盘根目录 2. 以管理员身份运行命令提示符 3. 输入dism /online /add-package /packagepath:C:\microsoft-windows-netfx3-ondemand-package~31bf3856ad364e35~amd64~~.cab 回车，直到操作成功完成，.net freamwork 3.5已经成功安装好了。 至此，Windows-Server服务器已经成功安装.net freamwork 3.5。 &#160;&#160;&#160;&#160;&#160;» 本文链接：https://www.osyunwei.com/archives/15408.html» 订阅本站：https://www.osyunwei.com/feed» 转载请注明来源：系统运维 » Windows-Server服务器无法安装.net freamwork 3.5解决办法<p><a rel="bookmark" href="https://www.osyunwei.com/archives/15408.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/15408.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nginx通过nginx-rtmp-module模块搭建流媒体服务器实现直播</title>
		<link>https://www.osyunwei.com/archives/14030.html</link>
		<comments>https://www.osyunwei.com/archives/14030.html#comments</comments>
		<pubDate>Wed, 27 Sep 2023 06:23:48 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[Nginx]]></category>
		<category><![CDATA[nginx]]></category>

		<guid isPermaLink="false">https://www.osyunwei.com/?p=14030</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防火墙 RTMP基于TCP， 默认使用端口1935，再开放81端口 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 [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/14030.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/14030.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux下Nginx版本平滑升级与回滚</title>
		<link>https://www.osyunwei.com/archives/12804.html</link>
		<comments>https://www.osyunwei.com/archives/12804.html#comments</comments>
		<pubDate>Wed, 03 Aug 2022 09:45:08 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[Nginx]]></category>
		<category><![CDATA[CentOS]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[nginx]]></category>

		<guid isPermaLink="false">https://www.osyunwei.com/?p=12804</guid>
		<description><![CDATA[操作系统：CentOS 7.x 准备篇 一、防火墙配置 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 [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/12804.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/12804.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux下编译安装OpenResty</title>
		<link>https://www.osyunwei.com/archives/12543.html</link>
		<comments>https://www.osyunwei.com/archives/12543.html#comments</comments>
		<pubDate>Wed, 08 Jun 2022 08:58:29 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[OpenResty]]></category>
		<category><![CDATA[nginx]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">https://www.osyunwei.com/?p=12543</guid>
		<description><![CDATA[OpenResty® 是一款基于 NGINX 和 LuaJIT 的 Web 平台。 官方网站：https://openresty.org/cn/ 准备篇 一、防火墙配置 CentOS 8.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 # [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/12543.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/12543.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows Server 2022 IIS10.0+PHP（FastCGI）+MySQL环境搭建教程</title>
		<link>https://www.osyunwei.com/archives/11702.html</link>
		<comments>https://www.osyunwei.com/archives/11702.html#comments</comments>
		<pubDate>Thu, 07 Oct 2021 08:53:40 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[IIS]]></category>
		<category><![CDATA[iis]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">https://www.osyunwei.com/?p=11702</guid>
		<description><![CDATA[准备篇 一、环境说明： 操作系统：Windows Server 2022 PHP版本：php 8.0.11 MySQL版本：MySQL 8.0.18.0 二、相关软件下载： 1、PHP下载地址： https://windows.php.net/downloads/releases/php-8.0.11-nts-Win32-vs16-x64.zip 2、MySQL下载地址： https://cdn.mysql.com//Downloads/MySQLInstaller/mysql-installer-community-8.0.26.0.msi 3、Visual C++ Redistributable for Visual Studio 2015-2022（安装PHP、MySQL需要此插件） https://aka.ms/vs/16/release/vc_redist.x86.exe https://aka.ms/vs/16/release/vc_redist.x64.exe 自 Visual Studio 2015 以来的 Visual Studio 版本共享相同的可再发行文件。 例如，使用 Visual Studio 2015、2017 或 2019 工具集构建的应用程序可以使用最新的 Microsoft Visual C++ Redistributable。 但是，计算机上安装的 Microsoft Visual C++ 可再发行组件的版本必须与用于创建应用程序的 Visual C++ 工具集的版本相同或更高。 4、Microsoft URL 重写模块 2.1下载地址（IIS伪静态需要此插件） https://www.iis.net/downloads/microsoft/url-rewrite [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/11702.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/11702.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Debian 10.9.x编译安装Nginx1.20.x+MySQL8.0.x+PHP8.0.x 7.4.x 7.3.x 7.2.x 7.1.x 7.0.x 5.6.x 5.5.x 5.4.x 5.3.x 5.2.x多版本全能环境</title>
		<link>https://www.osyunwei.com/archives/11344.html</link>
		<comments>https://www.osyunwei.com/archives/11344.html#comments</comments>
		<pubDate>Sun, 13 Jun 2021 07:50:05 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[LNMP]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[lnmp]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[nginx]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">https://www.osyunwei.com/?p=11344</guid>
		<description><![CDATA[基础教程： Debian 10.9.x安装配置图解教程 https://www.osyunwei.com/archives/11103.html 准备篇： 一、配置防火墙，开启80端口、3306端口 Debian默认没有安装任何防火墙的，我们这里推荐使用iptables防火墙。 1.1安装iptables防火墙 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 use system-config-firewall # please do not ask us to add additional ports/services to this default configuration *filter :INPUT [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/11344.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/11344.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu Server 20.04.x LTS编译安装Nginx1.20.x+MySQL8.0.x+PHP8.0.x 7.4.x 7.3.x 7.2.x 7.1.x 7.0.x 5.6.x 5.5.x 5.4.x 5.3.x 多版本全能环境</title>
		<link>https://www.osyunwei.com/archives/11183.html</link>
		<comments>https://www.osyunwei.com/archives/11183.html#comments</comments>
		<pubDate>Wed, 02 Jun 2021 06:16:28 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[LNMP]]></category>
		<category><![CDATA[lnmp]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[nginx]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">https://www.osyunwei.com/?p=11183</guid>
		<description><![CDATA[基础教程： Ubuntu Server 20.04.1 LTS安装配置图解教程 https://www.osyunwei.com/archives/10727.html 准备篇： 一、配置防火墙，开启80端口、3306端口 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 [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/11183.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/11183.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rocky Linux 8.x编译安装Nginx1.20.x+MySQL8.0.x+PHP8.0.x PHP7.4.x 7.3.x 7.2.x 7.1.x 7.0.x 5.6.x 5.5.x 5.3.x 多版本全能环境</title>
		<link>https://www.osyunwei.com/archives/10917.html</link>
		<comments>https://www.osyunwei.com/archives/10917.html#comments</comments>
		<pubDate>Tue, 23 Mar 2021 11:28:29 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[LNMP]]></category>
		<category><![CDATA[CentOS]]></category>
		<category><![CDATA[lnmp]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[nginx]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[Rocky]]></category>

		<guid isPermaLink="false">https://www.osyunwei.com/?p=10917</guid>
		<description><![CDATA[本文档最后更新于2021年5月28日 基础教程： Rocky Linux 8.x系统安装配置图解教程 https://www.osyunwei.com/archives/11453.html 准备篇 一、防火墙配置 Rocky Linux 8.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 [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/10917.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/10917.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
