Nginx 의 TCP / UDP 스케줄 러

4257 단어
설치 nginx
[root@proxy ~]# yum –y install gcc pcre-devel openssl-devel        //     
[root@proxy ~]# tar  -xf   nginx-1.12.2.tar.gz
[root@proxy ~]# cd  nginx-1.12.2
[root@proxy nginx-1.12.2]# ./configure   \
> --with-http_ssl_module                                //  SSL    
> --with-stream                                       //  4       
[root@proxy nginx-1.12.2]# make && make install           //     

배치 하 다.
[root@proxy ~]# vim /usr/local/nginx/conf/nginx.conf
stream {
            upstream backend {
               server 192.168.2.100:22;            //  SSH    IP   
               server 192.168.2.200:22;
}
            server {
                listen 12345;                    //Nginx     
                proxy_connect_timeout 1s;
                proxy_timeout 3s;
                 proxy_pass backend;
             }
}

검증 하 다.
[root@client ~]# ssh -p 12345 192.168.4.5
root@192.168.4.5's password: 
Last login: Thu Dec 20 10:11:51 2018 from 192.168.2.254
[root@web1 ~]# exit
  
Connection to 192.168.4.5 closed.
[root@client ~]# ssh -p 12345 192.168.4.5
root@192.168.4.5's password: 
Last login: Thu Dec 20 10:12:13 2018 from 192.168.2.254
[root@web2 ~]# 

 
다음으로 전송:https://www.cnblogs.com/ray-mmss/p/10149241.html

좋은 웹페이지 즐겨찾기