#tomcat #nginx #load-balancing
#tomcat #nginx #балансировка нагрузки
Вопрос:
Я пытался настроить балансировщик нагрузки для двух серверов tomcat, используя nginx. Для начала я запустил свой проект на двух разных серверах tomcat с разными портами интернета (8080 и 8081), и это сработало. Затем я загрузил nginx в Windows 10, запустил его и получил «добро пожаловать на страницу nginx» на localhost: 80.
Затем я добавил некоторые модификации в файл nginx conf, чтобы настроить балансировщик нагрузки
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», я остановил nginx и перезапустил его, но, похоже, ничего не работает, я всегда получал
ошибка http 400
вот весь файл 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:
Изменение порта 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"';
И перейдите к файлу доступа, чтобы увидеть, на какой сервер мы перенаправлены »
для «