user1417971
user1417971

Reputation: 23

Cannot Connect to Nifi using localhost:8080/nifi

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

Answers (2)

Alex Titov
Alex Titov

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

mhhnull
mhhnull

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

Related Questions