- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
在开始之前,我已经查看了所有我能找到的类似问题,但没有找到解决我的问题的方法。
我正在运行 2 个 docker 容器,1 个用于 nginx,1 个用于 nodejs api。我正在使用 nginx 作为反向代理。
当我请求 localhost/api/x 时,我收到一个 502 错误的网关和 nginx 日志
nginx_1 | 2015/08/15 15:30:30 [error] 9#0: *1 connect() failed (111: Connection refused) while connecting to upstream, client: X.X.X.X, server: _, request: "GET /api/x HTTP/1.1", upstream: "http://127.0.0.1:8543/x", host: "localhost"
我可以使用 docker ps 在我的计算机上获取 8543 映射到的端口,并且可以在那里正常访问应用程序。这使我得出 Node 应用程序正在运行并监听正确端口 (8543) 的结论。我还可以从错误消息和重写日志中看出请求 uri 正在正确重写。
我已经为此苦苦思索了一段时间,不知道哪里出了问题,如有任何帮助,我们将不胜感激!
我的 nginx.conf:
user nginx nginx;
worker_processes auto;
worker_rlimit_nofile 8192;
events {
worker_connections 8000;
}
error_log /dev/stderr notice;
pid /var/run/nginx.pid;
http {
# Hide nginx version
server_tokens off;
rewrite_log on;
# mime types
include mime.types;
default_type application/octet-stream;
# Update charset_types due to updated mime.types
charset_types text/xml text/plain text/vnd.wap.wml application/x-javascript application/rss+xml text/css application/javascript application/json;
# Format to use in log files
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 /dev/stdout main;
keepalive_timeout 20;
sendfile on;
tcp_nopush on;
# Nodejs API
upstream api {
server 127.0.0.1:8543;
}
# Reverse-proxy for the Riot API, S3, and our API
server {
listen [::]:80;
listen 80;
server_name _;
charset utf-8;
# Resolver
resolver 8.8.8.8 valid=300s;
resolver_timeout 10s;
# API, reverse proxy our API
location /api/ {
limit_except GET {
deny all;
}
rewrite ^/api(/.*)$ $1 break;
proxy_pass http://api;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
}
}
}
我的 nginx Dockerfile
# Set the base image to centos
FROM centos:7
# File Author
MAINTAINER Andrew Shapro
# Install nginx
RUN yum update -y && \
yum -y install \
curl \
tar \
openssl-devel \
gcc \
gcc-c++ \
make \
zlib-devel \
pcre-devel \
gd-devel \
krb5-devel
# download and compile nginx
RUN curl -sLo nginx-1.9.2.tar.gz http://nginx.org/download/nginx-1.9.2.tar.gz \
&& mkdir /root/nginx_source \
&& tar -xzvf nginx-1.9.2.tar.gz -C /root/nginx_source --strip-components=1
COPY nginx_modules /root/nginx_modules
RUN cd /root/nginx_source \
&& ./configure \
--user=nginx \
--with-debug \
--group=nginx \
# --prefix=/user/share/nginx \
# --sbin-path=/user/sbin/nginx \
--conf-path=/etc/nginx/nginx.conf \
--pid-path=/run/nginx.pid \
--http-client-body-temp-path=/var/lib/nginx/body \
--http-proxy-temp-path=/var/lib/nginx/proxy \
--lock-path=/run/lock/subsys/nginx \
--error-log-path=/var/log/nginx/error.log \
--http-log-path=/var/log/nginx/access.log \
--with-http_ssl_module \
--with-http_stub_status_module \
--with-http_realip_module \
--with-http_auth_request_module \
--with-http_addition_module \
--with-http_gzip_static_module \
--with-http_image_filter_module \
--with-http_spdy_module \
--with-http_sub_module \
--with-ipv6 \
--add-module=/root/nginx_modules/ngx_devel_kit \
--add-module=/root/nginx_modules/ngx_aws_auth \
&& make \
&& make install \
&& rm -rf /root/nginx_modules /root/nginx_source \
&& mkdir --parents /var/lib/nginx
# Add nginx configs
RUN curl -sLo /usr/local/bin/ep https://github.com/kreuzwerker/envplate/releases/download/v0.0.8/ep-linux && chmod +x /usr/local/bin/ep
ADD nginx.conf /etc/nginx/nginx.conf
ADD mime.types /etc/nginx/mime.types
# Cleanup after build
RUN yum clean all \
&& yum autoremove -y
# Add nginx user
RUN adduser -c "Nginx user" nginx
EXPOSE 80
# Run nginx
# CMD ["stat", "/usr/local/nginx/sbin/nginx"]
CMD [ "/usr/local/bin/ep", "-v", "/etc/nginx/nginx.conf", "--", "/usr/local/nginx/sbin/nginx", "-c", "/etc/nginx/nginx.conf", "-g", "daemon off;" ]
我的 Node 应用
var express = require('express');
var app = express();
function allTheRoutes (req, res) {
res.send('Hello World!');
}
app.get('/', allTheRoutes);
app.get('/*', allTheRoutes);
var app = require('./src/app');
var server = app.listen(process.env.PORT || 8543, process.env.HOST || '127.0.0.1', function () {
var host = server.address().address;
var port = server.address().port;
console.log('Listening at http://%s:%s', host, port);
});
我的 Node Dockerfile
# Set the base image to centos
FROM centos:7
# File Author
MAINTAINER Andrew Shapro
# Install nginx
RUN yum update -y && \
yum -y install curl
# Add nvm to $PATH
ENV PATH $PATH:$HOME/.nvm/bin
# Install nvm
RUN curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.26.0/install.sh | bash
# Clean up
RUN yum clean all \
&& yum autoremove -y
# Add iojs to $PATH
ENV PATH $PATH:/root/.nvm/versions/io.js/v3.0.0/bin
# Intall iojs
RUN bash -lic 'nvm install iojs-v3.0'
# Install PM2
RUN npm install -g pm2
# NPM install
WORKDIR /app
ADD package.json /app/
RUN npm install
# Add app
ADD . /app
# Add run.sh
ADD run.sh run.sh
RUN chmod 755 run.sh
# Expose port
EXPOSE 8543
# run node
CMD ["./run.sh"]
./run.sh 运行命令 pm2 start -x app.js --no-daemon
docker-compose.yml
nginx:
build: nginx
ports:
- "80:80"
link: node
node:
build: node
ports:
- "8543"
environment:
- HOST=127.0.0.1
- PORT=8543
最佳答案
从您的 docker-compose.yml 中,您将端口 80 从 nginx 容器暴露到容器外的端口 80,但是您将端口 8543 暴露到 random port .当您告诉 nginx 查找 127.0.0.1:8543 时,它不会在主机中找到该端口。
您已经将两个容器链接在一起,您不需要将端口 8543 暴露给主机以便从 nginx 访问。您需要做的就是告诉它访问正确的主机:
# Nodejs API
upstream api {
server node:8543;
}
发生这种情况是因为当您链接容器时 docker 在/etc/hosts 中设置主机。你可以检查一下:
docker exec -ti nginx bash
cat /etc/hosts
当然,如果你暴露 8543 它应该可以工作:
nginx:
build: nginx
ports:
- "80:80"
link: node
node:
build: node
ports:
- "8543:8543"
environment:
- HOST=127.0.0.1
- PORT=8543
有关 docker 网络的更多信息:https://docs.docker.com/articles/networking/
关于node.js - nginx 和 Node : connect() failed (111: Connection refused) while connecting to upstream,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32026599/
使用 caret::train() 运行逻辑回归模型时出现问题。LR = caret::train(Satisfaction ~., data= log_train, method = "glm",
我正在尝试将nginx容器作为我所有网站和Web服务的主要入口点。我设法将portainer作为容器运行,并且可以从互联网上访问它。现在,我正在尝试访问由另一个Nginx容器托管的静态网站,但这样做失
我有一个在 Windows XP SP3 x86 上运行的 Visual Studio 2008 C# .NET 3.5 应用程序。在我的应用程序中,我有一个事件处理程序 OnSendTask 可以同
我在 Eclipse 中创建了作为独立程序执行的此类,它可以毫无问题地连接所有 http URL(例如:http://stackoverflow.com),但是当我尝试连接到 https(例如 htt
我在我的 nginx 错误日志中收到大量以下错误: connect() failed (111: Connection refused) while connecting to upstream 我的
我正在尝试将新的 log4j2 与 Socket Appender 一起使用,但我有点不走运。这是我的 XML 配置文件:
我目前正在尝试寻找 Android 应用程序后端的替代方案。目前,我使用 php servlet 来查询 Mysql 数据库。数据库(Mysql)托管在我大学的计算机上,因此我无法更改任何配置,因为我
类MapperExtension有一些方法,before_insert, before_update, ...都有一个参数connection. def before_insert(self, map
嗨,我正在尝试更改位于连接库 (v 5.5) 中的文档的文档所有者,我仍在等待 IBM 的回复,但对我来说可能需要太长时间,这就是我尝试的原因逆向工程。 我尝试使用标准编辑器 POST 请求将编辑器更
我在 nginx( http://52.xx.xx.xx/ )上访问我的 IP 时遇到 502 网关错误,日志只是这样说: 2015/09/18 13:03:37 [error] 32636#0: *
我要实现 Connected-Component Labeling但我不确定我应该以 4-connected 还是 8-connected 的方式来做。我已经阅读了大约 3 种 Material ,但
我在Resources ->JMS ->Connection Factories下有两个连接工厂。 1) 连接工厂 2)集成连接工厂 我想修改两个连接工厂下连接池的最大连接数。资源 ->JMS ->连
我在将 mongoengine 合并到我的 django 应用程序时遇到问题。以下是我收到的错误: Traceback (most recent call last): File "/home/d
上下文 我正在关注 tutorial on writing a TCP server last week in Real World Haskell .一切顺利,我的最终版本可以正常工作,并且能够在
我在访问我的域时遇到了这个问题:我看到了我的默认 http500 错误 django 模板正在显示。 我有 gunicorn 设置: command = '/usr/local/bin/gunicor
我更换了电脑,并重新安装了所有版本:tomcat 8 和 6、netbeans 8、jdk 1.7、hibernate 4.3.4,但是当我运行 Web 应用程序时,出现此错误。过去使用我的旧电脑时,
您好,我是这个项目的新手,我在 CentOS7 ec2 实例上托管它时遇到问题。当我访问我的域时出现此错误: 2017/02/17 05:53:35 [error] 27#27: *20 connec
在开始之前,我已经查看了所有我能找到的类似问题,但没有找到解决我的问题的方法。 我正在运行 2 个 docker 容器,1 个用于 nginx,1 个用于 nodejs api。我正在使用 nginx
使用 debian 包将 kaa -iot 平台配置为单节点时。我收到以下错误。 himanshu@himpc:~/kaa/deb$ sudo dpkg -i kaa-node-0.10.0.deb
我是我公司开发团队的成员,担任管理员角色。我可以通过 https://developer.apple.com/ 访问团队的成员(member)中心 但是,当我尝试在 https://itunescon
我是一名优秀的程序员,十分优秀!