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…