NFC配置,以及NFC主从同步

nfc配置

【LINUX应用部署实践1】:NFS服务器安装与配置及应用场景实战

nfc主从同步复制  sersync和rsc

【LINUX应用部署实践2】:部署NFS主从同步复制功能

sersync下载地址:https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/sersync/sersync2.5.4_64bit_binary_stable_final.tar.gz
 

nginx负载均衡

nginx负载均衡:
在/etc/nginx/nginx.conf中配置
http {
    upstream web {                       
        server 192.168.100.16:8081;
        server 192.168.100.16:8082;
    }                                               
    server {
        listen       80;
        server_name  localhost;
        location / {
            root   html;
            index  index.jsp index.htm;
            proxy_pass http://web;      
        }
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }
    }
}
 

你可能感兴趣的:(运维)