Re: is there a trick to running Nifi on AWS

2024-04-03 Thread Jim Steinebrey
I found another 9 page potentially useful article on Medium. "https://sandundayananda.medium.com/deploy-apache-nifi-on-docker-with-aws-ec2-instance-and-connect-to-web-interface-3e516e06fe04"; https://sandundayananda.medium.com/deploy-apache-nifi-on-docker-with-aws-ec2-instance-and-connect-to-web-

Re: is there a trick to running Nifi on AWS

2024-04-03 Thread Matthew Hawkins
Hi Mark, NiFi supports many different forms of authentication. The "simple" way is "http basic" and you can roll your own /etc/passwd style authenticator with it. I actually recommend NOT doing this unless it's a test system as http basic is trash and can be a right pest if you need to "unauth".

Re: is there a trick to running Nifi on AWS

2024-04-03 Thread Mark Woodcock
What does the documentation mean by this paragraph: >For Single sign-on authentication, NiFi will redirect users to the Identity Provider before returning to NiFi. NiFi will then process responses and convert attributes to application token information. I've gotten local instances of Nifi to work

Re: is there a trick to running Nifi on AWS

2024-03-30 Thread Matthew Hawkins
It's more than that, You also need to setup TLS keys for the hostname, user accounts, etc. Also, I would never expose a service directly on a public IP that way either. Use a priv subnet and access via a VPN. Route 53 can manage DNS for a private domain so you can have eg nifi-1.mycloud as the hos

Re: is there a trick to running Nifi on AWS

2024-03-28 Thread Mark Bean
Try adding your EC2 instance's private IP address mapping to public DNS name in /etc/hosts. And, in that case, you can use nifi.web.https.host= -Mark On Thu, Mar 28, 2024 at 4:40 PM Joe Witt wrote: > Mark > > I believe you will need to tell NiFi you want it to listen on more than the > localho

Re: is there a trick to running Nifi on AWS

2024-03-28 Thread Joe Witt
Mark I believe you will need to tell NiFi you want it to listen on more than the localhost/loopback address. nifi.web.https.host=localhost Is a default in nifi.properties for instance. Def take a look through the admin/install guide as well. Thanks On Thu, Mar 28, 2024 at 1:32 PM Mark Woodcoc

is there a trick to running Nifi on AWS

2024-03-28 Thread Mark Woodcock
Howdy, Cranked up an EC2 instance. Installed Java 11. set up JAVA_HOME Downloaded Nifi 1.25.0 unzipped Nifi set a nifi.sensitive.properties.key (https.port is default 8443) bin/nifi.sh start But, I can't even seem to access the most basic bit of the UI: curl -vvvk https://54.91.56.55:8443 * T