kevdoran commented on pull request #5213:
URL: https://github.com/apache/nifi/pull/5213#issuecomment-975626633


   I've been testing this, and I'm having trouble getting the dockermaven image 
working correctly (dockerhub seems to be working fine). NiFi fails right when 
initializing the core JettyServer instance:
   
   ```
   nifi_1      | 2021-11-22 14:55:59,786 INFO [main] 
org.apache.nifi.nar.NarClassLoaders Found NiFiServer implementation 
org.apache.nifi.web.server.JettyServer in 
org.apache.nifi:nifi-server-nar:1.16.0-SNAPSHOT
   nifi_1      | 2021-11-22 14:55:59,819 INFO [main] org.eclipse.jetty.util.log 
Logging initialized @35088ms to org.eclipse.jetty.util.log.Slf4jLog
   nifi_1      | 2021-11-22 14:55:59,914 INFO [main] 
org.apache.nifi.web.server.JettyServer Configuring Jetty for HTTPS on port: 8443
   nifi_1 exited with code 0
   ```
   
   I'm using the same config for both (a docker compose file):
   
   ```
   version: "3.5"
   
   services:
   
     registry:
       image: apache/nifi-registry:1.16.0-SNAPSHOT-dockermaven
       ports:
         - "18080:18080" # UI
       networks:
         - demo
   
     nifi:
       image: apache/nifi:1.16.0-SNAPSHOT-dockermaven
       ports:
         - "8443:8443" # UI
         - "10000"
       networks:
         - demo
       environment:
         SINGLE_USER_CREDENTIALS_USERNAME: admin
         SINGLE_USER_CREDENTIALS_PASSWORD: admin-password
         NIFI_SENSITIVE_PROPS_KEY: notAGoodPassword
   
   networks:
     demo: 
   ```
   
   I'm going to spend some time today looking into it. It could be something in 
my local dev environment causing the problem. Just wanted to provide an update, 
will share more later today.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to