Reputation: 23
Sorry there are some questions about this issue but the answers did not help me. I have:
This is all on an Ubuntu vm. What am I missing? Thanks.
Upvotes: 0
Views: 1308
Reputation: 101
Something wrong with mapping port, by default port is 8443 in latest version.I used 1.22 and upper. Ttry this link, when you'r nifi's configuration default. Nifi used context /nifi. https://localhost:8443/nifi/
Upvotes: 0
Reputation: 26
recently default port of apache nifi changed from 8080 to 8443. you can change this by using docker -e flag like this:
docker run --name nifi -p 8080:8080 -e NIFI_WEB_HTTPS_PORT='8080' -d apache/nifi:latest
Upvotes: 1