Member since
09-27-2022
5
Posts
0
Kudos Received
1
Solution
My Accepted Solutions
Title | Views | Posted |
---|---|---|
2448 | 10-19-2022 06:52 AM |
10-19-2022
06:52 AM
I've solved it myself. I've updated to version 1.18, and updated the docker-compose.yml file with an additional environment variable: NIFI_WEB_PROXY_HOST which equals a comma separated list of hosts that can access the system. Then, using the following command I was able to upload a template: curl -XPOST -H "Authorization: Bearer {token}" https://{host}:{port}/nifi-api/process-groups/{process-group-ID}/templates/upload -k -v -F template=@{template-name}.xml
... View more
10-03-2022
01:05 AM
Thank you for the reply @MattWho, I agree, the 403 on the REST Api pages suggests: Client is not authorized to make this request. What I am trying to understand is why does this happen. The problem is I am new to Nifi and very much on a steep learning curve with limited time. The nifi-user.log you mentioned is below. nifi@228d7503eaae:/opt/nifi/nifi-current/logs$ more nifi-user.log 2022-10-03 07:56:07,890 INFO [main] o.a.n.a.single.user.SingleUserAuthorizer Initializing Authorizer 2022-10-03 07:56:07,986 INFO [main] o.a.n.a.FileUserGroupProvider Creating new users file at /opt/nifi/nifi-current/./conf/users.xml 2022-10-03 07:56:07,997 INFO [main] o.a.n.a.FileUserGroupProvider Users/Groups file loaded at Mon Oct 03 07:56:07 UTC 2022 2022-10-03 07:56:07,997 INFO [main] o.a.n.a.FileAccessPolicyProvider Creating new authorizations file at /opt/nifi/nifi-current/./conf/authorizations.xml 2022-10-03 07:56:08,011 INFO [main] o.a.n.a.FileAccessPolicyProvider Authorizations file loaded at Mon Oct 03 07:56:08 UTC 2022 2022-10-03 07:56:08,014 INFO [main] o.a.n.a.single.user.SingleUserAuthorizer Configuring Authorizer Thank you for taking the time to respond
... View more
09-29-2022
01:09 AM
I have a problem very similar to this one which has been marked as solved. I have followed the instructions which did not work. I am trying to upload a Nifi XML template that I have previously exported, but am getting a 403. I am running Nifi version 1.17.0 in a docker container. The docker image is the latest, which should be 1.14.0 It is run using docker compose. I am using Postman to send the REST requests. The steps I have taken are: Generate an access token using: POST https://localhost:8443/nifi-api/access/token with an x-www.form-urlencoded body containing the username and password set in the .env file. This token is then used as the bearer token Get the root process-group id using: GET https://localhost:8443/nifi-api/flow/process-group/root then taking the id from processGroupFlow:id Failing to import an XML template using: POST https://localhost:8443/nifi-api/process-groups/{id}/templates/import where the body is raw XML, containing the previously exported template. The error I receive is: HTTP ERROR 403 Forbidden URI:STATUS:MESSAGE:SERVLET: /nifi-api/process-groups/882f73b9-0183-1000-28e5-9508657cbe9f/templates/import 403 Forbidden jerseySpring My docker compose yaml file is: version: '2.2' services: nifi: image: apache/nifi:latest container_name: nifi ports: - ${HTTP_EXTERNAL_PORT}:${HTTP_INTERNAL_PORT} - ${HTTPS_EXTERNAL_PORT}:${HTTPS_INTERNAL_PORT} environment: - SINGLE_USER_CREDENTIALS_USERNAME=${NIFI_USERNAME} - SINGLE_USER_CREDENTIALS_PASSWORD=${NIFI_PASSWORD} My docker compose .env file is HTTPS_EXTERNAL_PORT=8443 HTTPS_INTERNAL_PORT=8443 HTTP_EXTERNAL_PORT=8080 HTTP_INTERNAL_PORT=8080 NIFI_USERNAME=myUsername NIFI_PASSWORD=myPassword Thank you for your help!
... View more
Labels:
- Labels:
-
Apache NiFi
09-28-2022
02:11 AM
Thank you for the really quick response @araujo! I'm using the latest docker container available. I'm new to Nifi so still working this through... So I would have to first create a process group with: POST /process-groups/{id}/process-groups and then follow your instructions above. Much appreciated!
... View more
09-27-2022
08:05 AM
I was facing the same response using postman and getting a 403 when calling the REST API endpoints at: https://nifi.apache.org/docs/nifi-docs/rest-api/index.html I received the token, and by default put a prefix of Bearer in front. This is not required. Now, hitting any of the GET endpoints results in a positive response. Unfortunately there is no way at the moment of uploading templates. If there is no REST endpoint for this, how can this be done via automated pipelines? Thank you
... View more