Reputation: 892
My NiFi begins to start-up and after some time (before GUI comes on-line) it shuts down. In log appeares message like this one:
org.apache.nifi.web.server.JettyServer Failed to start web server... The property cannot reference Parameter because Sensitive Parameters may only be referenced by Sensitive Properties.
Please, what I should do to be able to start NiFi and solve this?
Upvotes: 1
Views: 1511
Reputation: 892
To start NiFi with such mis-setup it is necessary to remove conflicting setting from flow. To do so:
<nifi-home>/conf/flow.xml.gz
flow.xml
from this archive <entry>
<key>Password</key>
<value>#{ftp_password}</value>
</entry>
becomes this:
<entry>
<key>Password</key>
</entry>
Upvotes: 2