网站免费维护建立网站,展厅设计搭建展位设计,开发公司成本管控,全中文网站开发目录
nginx的简介
是什么
nginx的特点以及功能
Nginx负载均衡
下载
安装
负载均衡 nginx的简介
是什么
Nginx是一个高性能的开源Web服务器和反向代理服务器。它的设计目标是为了解决C10k问题#xff0c;即在同一时间内支持上万个并发连接。
Nginx采用事件驱动的异…目录
nginx的简介
是什么
nginx的特点以及功能
Nginx负载均衡
下载
安装
负载均衡 nginx的简介
是什么
Nginx是一个高性能的开源Web服务器和反向代理服务器。它的设计目标是为了解决C10k问题即在同一时间内支持上万个并发连接。
Nginx采用事件驱动的异步架构能够高效地处理大量并发请求同时占用较少的系统资源。它具有良好的扩展性和高可靠性广泛应用于大型网站和高负载的Web应用中。
nginx的特点以及功能 高性能Nginx采用异步非阻塞的处理方式可以高效地处理大量并发请求具有较低的内存消耗和CPU利用率。 反向代理Nginx可以作为反向代理服务器将客户端的请求转发给后端的多个服务器实现负载均衡和高可用性。 静态文件服务Nginx可以快速地提供静态文件的访问减轻动态应用服务器的负载。 动态反向代理Nginx可以通过配置动态反向代理规则将请求转发给不同的后端服务器实现灵活的请求处理和应用切换。 SSL/TLS支持Nginx支持HTTPS协议并提供了强大的SSL/TLS功能可以保护网站的安全性。 URL重写和重定向Nginx支持强大的URL重写和重定向功能可以通过配置简化URL结构和实现请求的重定向。 缓存和压缩Nginx支持静态文件的缓存和内容的压缩提高网站的性能和传输速度。 总之Nginx是一个高性能、可靠性强、功能丰富的Web服务器和反向代理服务器适用于各种规模的网站和应用场景。它的简单配置和灵活性使得它成为许多开发者和系统管理员的首选。 Nginx负载均衡
下载 输入命令 : cd /root/xyh/software 进入到资源文件目录 安装 Nginx 的4个依赖 输入命令 : yum -y install gcc zlib zlib-devel pcre-devel openssl openssl-devel 安装完成后进行解压使用 输入命令 : tar -xvf nginx-1.13.7.tar.gz ( 解压 Nginx) 解压后进入其文件 命令 : cd nginx-1.13.7 编译执行配置: 考虑到后续安装ssl证书 添加两个模块 命令 : ./configure --with-http_stub_status_module --with-http_ssl_module 安装 进行安装 命令 : make make install 安装完后进入该目录 输入命令 : cd /usr/local/nginx 安装完后进入该目录 输入命令 : cd /usr/local/nginx 启动前安装 lsof 命令 输入命令 : yum install -y lsof 设置防火墙 开放 80 端口 输入命令 : firewall-cmd --zonepublic --add-port80/tcp --permanent 更新防火墙的端口并且查看已开放的端口 输入命令 : firewall-cmd --reload firewall-cmd --list-port # 启动 命令 : ./nginx #查看 命令 : lsof -i:80 在浏览器中输入虚拟机【Linux】-Centos的IP地址进行搜索 以上就是Nginx 的使用配置并且开启完成了
负载均衡 在资源文件夹中创建一个tomcat文件夹来存放Tomcat 输入命令 : mkdir tomcat 并且将tomcat服务解压到指定目录刚刚创建的tomcat文件夹中。 输入命令 : tar -xvf apache-tomcat-8.5.tar.gz -C tomcat 进入tomcat文件夹中 命令 : cd /root/xyh/software/tomcat 复制一个tomcat准备2个tomcat 命令 : cp -r apache-tomcat-8.5.20/ apache-tomcat-8.5.20_8081/ 查看命令 : ll 将其中的一个tomcat修改端口避免两个服务同时开启时端口被占用的情况。 命令 : cd apache-tomcat-8.5.20/conf 进入到tomcat的conf文件中 找到server.xml 文件进行修改端口 命令 : vim server.xml 编辑文件修改端口 修改之后的代码
?xml version1.0 encodingUTF-8?
!--Licensed to the Apache Software Foundation (ASF) under one or morecontributor license agreements. See the NOTICE file distributed withthis work for additional information regarding copyright ownership.The ASF licenses this file to You under the Apache License, Version 2.0(the License); you may not use this file except in compliance withthe License. You may obtain a copy of the License athttp://www.apache.org/licenses/LICENSE-2.0Unless required by applicable law or agreed to in writing, softwaredistributed under the License is distributed on an AS IS BASIS,WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.See the License for the specific language governing permissions andlimitations under the License.
--
!-- Note: A Server is not itself a Container, so you may notdefine subcomponents such as Valves at this level.Documentation at /docs/config/server.html--
Server port8006 shutdownSHUTDOWNListener classNameorg.apache.catalina.startup.VersionLoggerListener /!-- Security listener. Documentation at /docs/config/listeners.htmlListener classNameorg.apache.catalina.security.SecurityListener /--!--APR library loader. Documentation at /docs/apr.html --Listener classNameorg.apache.catalina.core.AprLifecycleListener SSLEngineon /!-- Prevent memory leaks due to use of particular java/javax APIs--Listener classNameorg.apache.catalina.core.JreMemoryLeakPreventionListener /Listener classNameorg.apache.catalina.mbeans.GlobalResourcesLifecycleListener /Listener classNameorg.apache.catalina.core.ThreadLocalLeakPreventionListener /!-- Global JNDI resourcesDocumentation at /docs/jndi-resources-howto.html--GlobalNamingResources!-- Editable user database that can also be used byUserDatabaseRealm to authenticate users--Resource nameUserDatabase authContainertypeorg.apache.catalina.UserDatabasedescriptionUser database that can be updated and savedfactoryorg.apache.catalina.users.MemoryUserDatabaseFactorypathnameconf/tomcat-users.xml //GlobalNamingResources!-- A Service is a collection of one or more Connectors that sharea single Container Note: A Service is not itself a Container,so you may not define subcomponents such as Valves at this level.Documentation at /docs/config/service.html--Service nameCatalina!--The connectors can use a shared executor, you can define one or more named thread pools--!--Executor nametomcatThreadPool namePrefixcatalina-exec-maxThreads150 minSpareThreads4/--!-- A Connector represents an endpoint by which requests are receivedand responses are returned. Documentation at :Java HTTP Connector: /docs/config/http.htmlJava AJP Connector: /docs/config/ajp.htmlAPR (HTTP/AJP) Connector: /docs/apr.htmlDefine a non-SSL/TLS HTTP/1.1 Connector on port 8080--Connector port8081 protocolHTTP/1.1connectionTimeout20000redirectPort8443 /!-- A Connector using the shared thread pool--!--Connector executortomcatThreadPoolport8080 protocolHTTP/1.1connectionTimeout20000redirectPort8443 /--!-- Define a SSL/TLS HTTP/1.1 Connector on port 8443This connector uses the NIO implementation. The defaultSSLImplementation will depend on the presence of the APR/nativelibrary and the useOpenSSL attribute of theAprLifecycleListener.Either JSSE or OpenSSL style configuration may be used regardless ofthe SSLImplementation selected. JSSE style configuration is used below.--!--Connector port8443 protocolorg.apache.coyote.http11.Http11NioProtocolmaxThreads150 SSLEnabledtrueSSLHostConfigCertificate certificateKeystoreFileconf/localhost-rsa.jkstypeRSA //SSLHostConfig/Connector--!-- Define a SSL/TLS HTTP/1.1 Connector on port 8443 with HTTP/2This connector uses the APR/native implementation which always usesOpenSSL for TLS.Either JSSE or OpenSSL style configuration may be used. OpenSSL styleconfiguration is used below.--!--Connector port8443 protocolorg.apache.coyote.http11.Http11AprProtocolmaxThreads150 SSLEnabledtrue UpgradeProtocol classNameorg.apache.coyote.http2.Http2Protocol /SSLHostConfigCertificate certificateKeyFileconf/localhost-rsa-key.pemcertificateFileconf/localhost-rsa-cert.pemcertificateChainFileconf/localhost-rsa-chain.pemtypeRSA //SSLHostConfig/Connector--!-- Define an AJP 1.3 Connector on port 8009 --Connector port8010 protocolAJP/1.3 redirectPort8443 /!-- An Engine represents the entry point (within Catalina) that processesevery request. The Engine implementation for Tomcat stand aloneanalyzes the HTTP headers included with the request, and passes themon to the appropriate Host (virtual host).Documentation at /docs/config/engine.html --!-- You should set jvmRoute to support load-balancing via AJP ie :Engine nameCatalina defaultHostlocalhost jvmRoutejvm1--Engine nameCatalina defaultHostlocalhost!--For clustering, please take a look at documentation at:/docs/cluster-howto.html (simple how to)/docs/config/cluster.html (reference documentation) --!--Cluster classNameorg.apache.catalina.ha.tcp.SimpleTcpCluster/--!-- Use the LockOutRealm to prevent attempts to guess user passwordsvia a brute-force attack --Realm classNameorg.apache.catalina.realm.LockOutRealm!-- This Realm uses the UserDatabase configured in the global JNDIresources under the key UserDatabase. Any editsthat are performed against this UserDatabase are immediatelyavailable for use by the Realm. --Realm classNameorg.apache.catalina.realm.UserDatabaseRealmresourceNameUserDatabase//RealmHost namelocalhost appBasewebappsunpackWARstrue autoDeploytrue!-- SingleSignOn valve, share authentication between web applicationsDocumentation at: /docs/config/valve.html --!--Valve classNameorg.apache.catalina.authenticator.SingleSignOn /--!-- Access log processes all example.Documentation at: /docs/config/valve.htmlNote: The pattern used is equivalent to using patterncommon --Valve classNameorg.apache.catalina.valves.AccessLogValve directorylogsprefixlocalhost_access_log suffix.txtpattern%h %l %u %t quot;%rquot; %s %b //Host/Engine/Service
/Server 并且将这个服务器的页面显示内容进行修改访问时容易分辨是哪个tomcat端口进入的 在tomcat根目录的webapps中的ROOT目录中找到index.jsp文件在MobaXterm工具的左边选中这个文件右键点击第二个进行打开文件并且修改编辑文件。 修改完之后的代码如下
%--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the License); you may not use this file except in compliance with
the License. You may obtain a copy of the License athttp://www.apache.org/licenses/LICENSE-2.0Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an AS IS BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
--%
% page sessionfalse pageEncodingUTF-8 contentTypetext/html; charsetUTF-8 %
%
java.text.SimpleDateFormat sdf new java.text.SimpleDateFormat(yyyy);
request.setAttribute(year, sdf.format(new java.util.Date()));
request.setAttribute(tomcatUrl, http://tomcat.apache.org/);
request.setAttribute(tomcatDocUrl, /docs/);
request.setAttribute(tomcatExamplesUrl, /examples/);
%
!DOCTYPE html
html langenheadmeta charsetUTF-8 /title%request.getServletContext().getServerInfo() %/titlelink hreffavicon.ico relicon typeimage/x-icon /link hreffavicon.ico relshortcut icon typeimage/x-icon /link hreftomcat.css relstylesheet typetext/css //headbodyh18081/h1/body/html 返回到tomcat目录并且开其两个服务(tomcat) 命令: cd apache-tomcat-8.5.20/bin 进入到tomcat的bin目录中 命令: ./startup.sh 开启服务 再到 nginx的目录中 命令: cd /usr/local/nginx 并且进入 : sbin目录 输入 : cd sbin 命令 : ./nginx -s reload 注 : 重新开启nginx 今天就到这里了下班下班