shewei
-
ansible
运维工具介绍 Ansible Ansible优点: Agentless (去中心化) Stupied Simple (上手简单,学习曲线平滑) SSH by default (安全,无需安装客户端) YAML no code,定制剧本 (语法简单,维护方便) 自动工具衍…
-
varnish
Web Page Cache: squid –> varnish程序的运行具有局部性特征:时间局部性:一个数据被访问过之后,可能很快会被再次访问空间局部性:一个数据被访问时,其周边的数据也有可能被访问到 cache:命中 热区:局部性;时效性:缓存空间耗尽:LRU过期:缓存清理 缓存命中率:hit/(hit+miss)(0,1)页面命中率:…
-
tomcat
编程语言:硬件级:微码编程,汇编语言系统级:C,C++,…应用级:Java, PHP, Python, Ruby, Perl, C#, …Python: PVMStandard LibraryWeb Framework:Django, Flask, …Java:JVM,JDKbash:bash ex…
-
keepalive
HA Cluster: 集群类型:LB(lvs/nginx(http/upstream, stream/upstream))、HA、HP SPoF: Single Point of Failure 系统可用性的公式:A=MTBF/(MTBF+MTTR)(0,1), 95%几个9(指标): 99%, …, 99.999%,99.9999%;99%:…
-
haproxy代理服务
HAProxy: LB Cluster: 四层: lvs, nginx(stream),haproxy(mode tcp) 七层: http: nginx(http, ngx_http_upstrea…
-
lvs-keepalived
keepalived: vrrp协议:Virtual Redundant Routing Protocol 术语: 虚拟路由器:Virtual Router &n…
-
lvs集群搭建
Linux Cluster: Cluster:计算机集合,为解决某个特定问题组合起来形成的单个系统; Linux Cluster类型:LB:Load Balancing,负载均衡;HA:High Availiablity,高可用;A=MTBF/(MTBF+MTTR)(0,1):90%, 95%, 99%, 99.5%, 99.9%, 99.99%…
-
nginx配置(三)
ngx_http_upstream_module模块 #分流The ngx_http_upstream_module module is used to define groups of servers that can be referenced by the proxy_pass, fastcgi_pass, uwsgi_pa…
-
nginx配置(二)
ngx_http_gzip_module: The ngx_http_gzip_module module is a filter that compresses responses using the “gzip” method. This often helps to reduce the size of transmitted data by half…
-
nginx配置(一)
Nginx:http协议:web服务器(类似于httpd)、http reverse proxy(类似于httpd)、imap/pop3 reverse proxy NGINX is a free, open-source, high-performance HTTP server and reverse proxy, as well as an IMAP/…
-
iptables介绍和使用
iptables/netfilter: Packets Filter Firewall: 包过滤型防火墙: Firewall:隔离工具,工作于主机或网络的边缘处,对经由的报文根据预先定义的规则(识别标准)进行检测,对于能够被规则匹配到的报文实行…
-
nfs和samba服务
nfs: nfs: Network File System #网络文件系统 nis:Network Information Se…
-
vsftpd虚拟用户搭建
首选的FTP服务器搭建方式 安装vsftpd yum install -y vsftpd systemctl enable vsftpd #设置开机启动 systemctl is-enabled vsf…
-
web服务介绍(三)
状态码分类:1xx:100-101 额外信息提示2xx:200-206 表示成功类响应3xx:300-305 重定向4xx:400-415 错误类响应码,由于客户端发送错误,如客户端请求一个根本不存在的资源5xx:500-505 错误类信息,服务器端错误,服务器本身一些问题导致请求无法成功 常用状态…
-
web服务介绍二)
apache指令说明:http://httpd.apache.org/docs/2.2/mod/directives.html Listen 172.18.100.67:8081 监听某个指定地址和端口启动前检查一下语法: httpd -t 如果要监听多个端口,要多行写 Listen 80&nb…