首先安装环境:

[root@local nginx-1.9.14]#  yum install gcc-c++  pcre pcre-devel  zlib zlib-devel openssl openssl--devel –y

安装之前,最好检查一下是否已经安装有nginx

$   find -name nginx

如果系统已经安装了nginx,那么就先卸载

$   yum remove nginx

$   cd /usr/local

从官网下载最新版的nginx

$   wget http://nginx.org/download/nginx-1.7.4.tar.gz

wget     http://nginx.org/download/nginx-1.8.1.tar.gz

解压nginx压缩包

$   tar -zxvf nginx-1.7.4.tar.gz

会产生一个nginx-1.7.4 目录,这时进入nginx-1.7.4目录

$   cd  nginx-1.7.4

接下来安装,使用--prefix参数指定nginx安装的目录,make、make install安装

$  ./configure --prefix=/usr/local/nginx                       $默认安装在/usr/local/nginx

$   make

$   make install

启动nginx# /usr/local/nginx/sbin/nginx

停止nginx# kill -QUIT `cat /usr/local/nginx/logs/nginx.pid`

重启nginxkill -HUP `cat /usr/local/nginx/logs/nginx.pid`

添加到自启动# echo "/usr/local/nginx/sbin/nginx">>/etc/rc.local

chmod a+x  /etc/rc.local    执行这个才能设置成功

如果没有报错,顺利完成后,最好看一下nginx的安装目录

 配置负载均衡

修改配置文件

[root@local html]# vi /usr/local/nginx/conf/nginx.conf

[root@local html]# cat /usr/local/nginx/conf/nginx.conf

#user  nobody;
worker_processes  2;

error_log 
logs/error.log;
#error_log 
logs/error.log  notice;
#error_log 
logs/error.log  info;

pid       
logs/nginx.pid;

events {
    worker_connections  10240;
}

http {
    include       mime.types;
    default_type  application/octet-stream;

#log_format  main  '$remote_addr
- $remote_user [$time_local] "$request" '
    #                  '$status
$body_bytes_sent "$http_referer" '
    #                  '"$http_user_agent"
"$http_x_forwarded_for"';

#access_log  logs/access.log  main;

sendfile        on;
    #tcp_nopush     on;

#keepalive_timeout  0;
    keepalive_timeout  65;

#gzip  on;

 upstream mysvr {

        #weigth参数表示权值,权值越高被分配到的几率越大


        server 16.158.51.206:80 weight=5;


        server 16.158.51.51:80 weight=5;


        #server 192.168.207.131:8080
weight=2;


    }

server {
        listen       80;
        server_name  16.158.51.2;
        index index.html;
        root
/data0/htdocs/www;
        #charset
koi8-r;

#access_log  logs/host.access.log  main;

# location
/ {
        #     root  
html;
        #     index 
index.html index.htm;
        # }

#对 "/" 启用负载均衡
        location / {

        proxy_pass http://mysvr;  #以这种格式来使用后端的web服务器


        proxy_redirect off;


        proxy_set_header Host $host;


        proxy_set_header X-Real-IP
$remote_addr;


        proxy_set_header X-Forwarded-For
$proxy_add_x_forwarded_for;


        client_max_body_size 10m;


        client_body_buffer_size 128k;


        proxy_connect_timeout 90;


        proxy_send_timeout 90;


        proxy_read_timeout 90;


        proxy_buffer_size 4k;


        proxy_buffers 4 32k;


        proxy_busy_buffers_size 64k;


        proxy_temp_file_write_size 64k;


        }

       
#error_page  404              /404.html;

# redirect
server error pages to the static page /50x.html
        #
        # error_page   500 502 503 504  /50x.html;
        # location
= /50x.html {
            #    root  
html;
            #}

# proxy the PHP scripts to Apache
listening on 127.0.0.1:80
        #
        #location ~ \.php$ {
            #    proxy_pass  
http://127.0.0.1;
            #}

# pass the PHP scripts to FastCGI
server listening on 127.0.0.1:9000
        #
        #location ~ \.php$ {
            #    root           html;
            #    fastcgi_pass   127.0.0.1:9000;
            #    fastcgi_index  index.php;
            #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
            #    include        fastcgi_params;
            #}

# deny access to .htaccess files, if Apache's
document root
        # concurs
with nginx's one
        #
        #location ~ /\.ht {
            #    deny 
all;
            #}
    }

# another virtual host using mix of
IP-, name-, and
port-based configuration
    #
    #server {
        #    listen      
8000;
        #    listen      
somename:8080;
        #    server_name 
somename  alias  another.alias;

#    location / {
        #        root  
html;
        #        index 
index.html index.htm;
        #    }
        #}

# HTTPS server
    #
    #server {
        #    listen      
443 ssl;
        #    server_name 
localhost;
        #    ssl_certificate      cert.pem;
        #    ssl_certificate_key  cert.key;
        #    ssl_session_cache    shared:SSL:1m;
        #    ssl_session_timeout  5m;
        #    ssl_ciphers 
HIGH:!aNULL:!MD5;
        #    ssl_prefer_server_ciphers  on;
        #    location / {
        #        root  
html;
        #        index 
index.html index.htm;
        #    }
        #}
}
[root@vincentdembp html]#

启动ngnix

[root@local html]# /usr/local/nginx/sbin/nginx

重启nginx

[root@local html]#
/usr/local/nginx/sbin/nginx -s reload

$  
whereis nginx

配置后台服务

upstream mysvr {

#weigth参数表示权值,权值越高被分配到的几率越大

server 16.158.51.206:8098 weight=5;

server 16.158.51.206:8097 weight=5;

#server 192.168.207.131:8080 weight=2;

}

访问测试:

@Test
public void  testqueryCompAndOrders(){
    String url="http://16.158.51.2/wos/comp/sendDetail";
    Map map=new HashMap<String, String>();
    map.put("reqId","\'C4012016042214145900001\'");
    postHttpRequestParams(url, map.toString());
}

关闭防火墙

systemctl stop firewalld
设置开启不启动:systemctl disable  firewalld

nginx_安装测试的更多相关文章

  1. Nginx_安装

    1. 安装步骤 上传nginx上传nginx安装包到linux 安装gcc 1 yum -y install gcc-c++ gcc 查看是否安装gcc: 1 gcc -v 安装依赖库 1 yum - ...

  2. mahout 安装测试

    1 下载 在http://archive.apache.org/dist/mahout下载相应版本的mahout 版本,获取官网查看http://mahout.apache.org 相关的信息

  3. Hbase的安装测试工作

    Hbase的安装测试工作: 安装:http://www.cnblogs.com/neverwinter/archive/2013/03/28/2985798.html 测试:http://www.cn ...

  4. ubuntu下opencv2.4.9安装测试

    ubuntu下opencv2.4.9安装测试 whowhoha@outlook.com 一.依赖包安装 1.  build-essential 软件包 sudo apt-get install bui ...

  5. 如何在本地安装测试ECSHOP 转载

    如何在本地安装测试ECSHOP 如何在本地(自己的电脑)上先安装ECShop 一.创建PHP环境 1.下载AppServ 因为ECShop在线网上商店系统是用PHP语言开发的,所以,在本地架设网店之前 ...

  6. 谷歌Cartographer学习(1)-快速安装测试(转载)

    转载自谷歌Cartographer学习(1)-快速安装测试 代码放到个人github上,https://github.com/hitcm/ 如下,需要安装3个软件包,ceres solver.cart ...

  7. ubuntu-10.04的测试环境 安装测试 Coreseek开源中文检索引擎-Sphinx中文版

    主要参考文档:http://www.coreseek.cn/products-install/install_on_bsd_linux/ 一. 32位版本: coreseek安装需要预装的软件: ap ...

  8. Centos 7.3 编译 & 安装 & 测试 facebook faiss

    许多 AI 系统训练完毕,正式上线时的基本操作往往可以抽象为:在高维向量空间中,给定一个向量,寻找与之最相近的 k 个向量.当向量数目异常巨大时,如何快速地执行这一基本操作,便成为 AI 系统在工程应 ...

  9. Python 3.6.3 官网 下载 安装 测试 入门教程 (windows)

    1. 官网下载 Python 3.6.3 访问 Python 官网 https://www.python.org/ 点击 Downloads => Python 3.6.3 下载 Python ...

随机推荐

  1. noip模拟赛 整除

    分析:最暴力的思想就是枚举一边啦,然后就会发现有很多n/i的结果都是相同的,可以每次跳过这一段,这样能过60分. 想不出其它解法了,打个表找了一下规律: ans   num 1     1 2    ...

  2. strtod-strtod, 字符串 转 数字 函数

    strtod()会扫描参数nptr字符串,跳过前面的空格字符,直到遇上数字或正负符号才开始做转换,到出现非数字或字符串结束时('\0')才结束转换,并将结果返回.若endptr不为 NULL,则会将遇 ...

  3. trigger dependencies

    有时候,会想知道某个表是不是会有一些trigger去更新它. 但是一般更新语句是写在trigger 内部,所以我不确定 dba_dependencies这个视图能不能存储这种依赖关系. 做个试验: 创 ...

  4. weblogic 10 无密码启动

    首先确定你的domain目录 [c21rms@c21wls10 RMS4]$ pwd/opt/psa/rel/weblogic/RMS4 其次找到下面这个文件夹 servers/AdminServer ...

  5. Android简单调用相机Camera功能,实现打开照相功能

    在最開始接触Android相机功能之前,先来体验一下Android调用系统照相功能吧 核心代码 Intent intent = new Intent(); //调用照相机 intent.setActi ...

  6. java常见的面试题

    1. super()与this()的差别? super和this的差别: 1)super(參数):调用基类中的某一个构造函数(应该为构造函数中的第一条语句) 2)this(參数):调用本类中还有一种形 ...

  7. http get请求获取server返回的应答数据

    libcurl库中的參数CURLOPT_WRITEFUNCTION所设置的回调函数应该是这种: size_t fun_cb( char *ptr, size_t size, size_t nmemb, ...

  8. http自己定义超时检測方法、主动抛出异常

    上次为了解决无网路由器超时的问题,将问题重心转移到了HttpClient. HttpUrLConnection上面,什么各种设置ReadTimeout. connectionTimeOut,还有所谓的 ...

  9. Linux系统编程——特殊进程之僵尸进程

    僵尸进程(Zombie Process) 进程已执行结束,但进程的占用的资源未被回收.这种进程称为僵尸进程. 在每一个进程退出的时候,内核释放该进程全部的资源.包含打开的文件.占用的内存等. 可是仍然 ...

  10. POJ - 3281 Dining(拆点+最大网络流)

    Dining Time Limit: 2000MS   Memory Limit: 65536K Total Submissions: 18230   Accepted: 8132 Descripti ...