码迷,mamicode.com
首页 >  
搜索关键字:nginx keepalived 高可用    ( 32898个结果
RabbitMQ概念及控制台介绍
RabbitMQ作为当前流行的消息队列之一,是基于Erlang语言开发的,对AMQP【Advanced Message Queue,高级消息队列协议】的开源实现。用于在分布式系统中存储转发消息,在易用性、扩展性、高可用性等方面表现不俗。本文主要简述RabbitMQ的相关概念和简单控制台介绍,仅供学习... ...
分类:其他好文   时间:2021-04-30 12:34:01    阅读次数:0
Nginx处理请求的11个阶段
Nginx 处理请求的过程一共划分为 11 个阶段,按照执行顺序依次是 post-read、server-rewrite、find-config、rewrite、post-rewrite、preaccess、access、post-access、try-files、content 以及 log。 1 ...
分类:其他好文   时间:2021-04-29 11:38:38    阅读次数:0
图解高性能网络架构:Reactor 和 Proactor
小林,来了。 这次就来图解 Reactor 和 Proactor 这两个高性能网络模式。 别小看这两个东西,特别是 Reactor 模式,市面上常见的开源软件很多都采用了这个方案,比如 Redis、Nginx、Netty 等等,所以学好这个模式设计的思想,不仅有助于我们理解很多开源软件,而且也能在面 ...
分类:其他好文   时间:2021-04-27 15:04:45    阅读次数:0
keepalived+lvs
配置lvs-dr环境 master配置文件 global_defs { notification_email { root@localhost } notification_email_from keeplived@localhost smtp_server 127.0.0.1 smtp_conne ...
分类:其他好文   时间:2021-04-27 14:56:45    阅读次数:0
【转】Java+Nginx获取用户的真实IP
原文:https://www.cnblogs.com/powerwu/articles/12978664.html 偶然看到一条命令可以获取访问者的真实 IP,就想自己实现一下。 命令如下: curl icanhazip.com 我是用的 Java 程序 + Nginx 实现的,没什么难度,但是 N ...
分类:编程语言   时间:2021-04-27 14:56:07    阅读次数:0
Centos 7建立本地内网源
原文地址: https://blog.csdn.net/oToyix/article/details/106170701 repo的路径不要放到root下,放到/usr/share/nginx/下,要不没权限 Centos 7建立本地内网源一、环境二、先配置163base源及阿里epel源三、建立本 ...
分类:其他好文   时间:2021-04-27 14:52:02    阅读次数:0
keepalived-master-slave
Master配置 global_defs { notification_email { root@localhost } notification_email_from keeplived@localhost smtp_server 127.0.0.1 smtp_connect_timeout 30 ...
分类:其他好文   时间:2021-04-27 14:42:00    阅读次数:0
k8s安装常用软件的yaml文件
参考网址:https://www.bejson.com (网站文件部分有坑,需要擦亮眼睛) nginx k8s版本:v1.20 apiVersion: apps/v1 kind: Deployment metadata: name: my-nginx namespace: test spec: re ...
分类:其他好文   时间:2021-04-26 14:08:07    阅读次数:0
多级缓存介绍
整体分成三部分缓存:应用Nginx本地缓存、分布式缓存、Tomcat堆缓存。 每层都用来解决相关问题,第一层解决热点缓存的问题,第二层减少访问回源率,第三层防止相关缓存失效/崩溃之后的冲击 11.2 如何缓存数据 11.2.1 过期与不过期 过不过期应该根据业务和数据量等因素决定 不过期缓存的场景 ...
分类:其他好文   时间:2021-04-26 13:59:54    阅读次数:0
nginx创建本地服务器和配置代理(解决跨域)
1,下载nginx 2,解压后打开conf/nginx.conf 修改配置 server { listen 8841;#监听端口 server_name localhost;#代理服务地址 location / { #默认访问 root html; index index.html index.ph ...
分类:其他好文   时间:2021-04-26 13:57:20    阅读次数:0
32898条   上一页 1 ... 16 17 18 19 20 ... 3290 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!