Docker和Nginx中的Apache NiFi

06odsfpq  于 2023-02-21  发布在  Nginx
关注(0)|答案(1)|浏览(298)

我正在尝试在EC2示例上的Docker容器中部署Apache NiFi。目前只有2个端口(80和443)处于打开状态,我没有更改它的权限。
我已经成功启动了NiFi:

sudo docker run --name nifi   -p 8080:8080   -d   apache/nifi:latest

下面是我的nginx配置:

user nginx;
worker_processes auto;
error_log /var/log/nginx/error.log;
pid /run/nginx.pid;
# Load dynamic modules. See /usr/share/doc/nginx/README.dynamic.
include /usr/share/nginx/modules/*.conf;
events {
    worker_connections 1024;
}
http {
    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  /var/log/nginx/access.log  main;
    sendfile            on;
    tcp_nopush          on;
    tcp_nodelay         on;
    keepalive_timeout   65;
    types_hash_max_size 2048;
    include             /etc/nginx/mime.types;
    default_type        application/octet-stream;

    include /etc/nginx/conf.d/*.conf;
    upstream nifi {
        server 0.0.0.0:8080;
        }
    server {
        listen       80 default_server;
        listen       [::]:80 default_server;
        server_name  _;
        root         /usr/share/nginx/html;

        location / {
                proxy_pass http://nifi;
                proxy_set_header Origin http://nifi;
        }
        error_page 404 /404.html;
            location = /40x.html {
        }
        error_page 500 502 503 504 /50x.html;
            location = /50x.html {
        }
    }
}

目前NiFi工作正常,我可以通过示例的IP访问它。proxy_set_header Origin http://nifi;设置修复了将模板上传到服务的问题。
问题是我根本无法配置任何处理器。每次当我点击“配置”时,我都会得到这个错误:

Unable to communicate with NiFi
Please ensure the application is running and check the logs for any errors.

你能帮我解决这个问题吗?
我在日志中看不到任何有用的东西。曾经出现过一个关于不使用HTTPS的错误,但我认为这是无关的。

vddsk6oq

vddsk6oq1#

在摆弄了Docker、Nginx和NiFi几天之后,我发现了这个问题。当我在浏览器中打开网络日志时,我注意到Nifi正在向0.0.0.0或nifi(上游的名称)发送请求。

我不得不在我的Nginx配置文件中设置proxy_set_header X-ProxyHost,它工作起来很有魅力。我使用了我的服务器的公共IP,也许我以后会切换到域名。
此问题的主要问题在于缺少日志:我已经检查了nifi和nginx的所有日志,没有什么有趣的。我仍然怀疑这是一个bug还是没有。

相关问题