I tried to donwload kafka_2.13-4.0.0.tgz from . When I run "bin\windows\kafka-storage.bat random-uuid", I receive the following message:
main ERROR Reconfiguration failed: No configuration found for '2c7b84de' at 'null' in 'null'
What could be the issue?
main ERROR Reconfiguration failed: No configuration found for '2c7b84de' at 'null' in 'null'
I tried to donwload kafka_2.13-4.0.0.tgz from https://kafka.apache./downloads. When I run "bin\windows\kafka-storage.bat random-uuid", I receive the following message:
main ERROR Reconfiguration failed: No configuration found for '2c7b84de' at 'null' in 'null'
What could be the issue?
main ERROR Reconfiguration failed: No configuration found for '2c7b84de' at 'null' in 'null'
Share Improve this question edited Mar 26 at 13:48 K__ asked Mar 25 at 18:04 K__K__ 11 bronze badge1 Answer
Reset to default 0I ran into this issue. In my case, the error was getting thrown because the java code is looking for a log file in a valid URI format. I resolved this by setting my tools-log4j2.yaml
path in KAFKA_LOG4J_OPTS
system variable with a file:/
prefix.
export KAFKA_LOG4J_OPTS="-Dlog4j.configurationFile=file:/[ABSOLUTE_PATH_TO_YOUR_KAFKA_LOCATION]/kafka_2.13-4.0.0/config/tools-log4j2.yaml"