Nginx не работает после настройки балансировщика нагрузки - PullRequest
0 голосов
/ 26 марта 2019

Я пытался настроить балансировщик нагрузки для двух серверов Tomcat, используя nginx. Для начала я запустил свой проект на двух разных серверах tomcat через разные порты (8080 и 8081), и он работал. Затем я скачал nginx на Windows 10, запустил его и получил «Добро пожаловать на страницу nginx» на localhost: 80.

Затем я добавил некоторые модификации в файл conf nginx, чтобы настроить балансировщик нагрузки

 upstream new_servers {
            least_conn;
            server 127.0.0.1:8081;
            server 127.0.0.1:8080;
    }

и в местоположении

location / {
            root   html;
            index  index.html index.htm;
            proxy_pass http://new_servers;
        }

Я попытался выполнить nginx -s reload. Я остановил nginx и перезапустил его, но, похоже, ничего не получилось. Я всегда получал

400 http error

вот весь файл conf

#user  nobody;
worker_processes  1;

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

#pid        logs/nginx.pid;


events {
    worker_connections  1024;
    debug_connection 127.0.0.1;
}


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 new_servers {
            least_conn;
            server 127.0.0.1:8081;
            server 127.0.0.1:8080;
    }

    server {
        listen       80;
        server_name  localhost;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {
            root   html;
            index  index.html index.htm;
            proxy_pass http://new_servers;
        }

        #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;
    #    }
    #}

}

и ничего не появляется в журналах.

Мои вопросы: Что возможно создало эту ошибку?

А когда nginx будет работать? это перенаправило бы меня на один из серверов?

Я работаю над этим вопросом два дня, поэтому я очень ценю вашу помощь.

Заранее спасибо

1 Ответ

0 голосов
/ 02 апреля 2019

Изменение порта по умолчанию для nginx решило проблему.

И чтобы ответить на вопросы, да nginx перенаправит меня на один из серверов.

Если вы хотите увидеть, на какой сервер мытолько перенаправлены добавить

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

и перейти к файлу доступа, чтобы увидеть, на какой сервер мы перенаправлены "на"

...