我安装了Flume
并尝试运行此命令
flume-ng agent -n $agent_name -c conf -f /home/gautham/Downloads/apache-flume-1.5.0.1-bin/conf/flume-conf.properties.template
我得到了这个例外
ERROR node.Application: A fatal error occurred while running. Exception follows.
org.apache.commons.cli.MissingArgumentException: Missing argument for option: n
at org.apache.commons.cli.Parser.processArgs(Parser.java:343)
at org.apache.commons.cli.Parser.processOption(Parser.java:393)
at org.apache.commons.cli.Parser.parse(Parser.java:199)
at org.apache.commons.cli.Parser.parse(Parser.java:85)
at org.apache.flume.node.Application.main(Application.java:252)
答案 0 :(得分:0)
而不是$ agent_name使用conf文件中代理的实际名称。
我怀疑你没有$ agent_name环境变量,所以它被替换为空字符串。
答案 1 :(得分:0)
检查您是否使用.conf
扩展名命名为您的水槽文件。
并尝试使用以下命令:
$ flume-ng agent \
--conf-file PathOfYourFlumeFile\
--name agentameInFlumeFile\
--conf $FLUME_HOME/conf \
使用您在水槽文件中使用的代理名称更改$agent_name
。
您必须提及带有.conf
扩展名的水道文件的路径,而不是/home/gautham/Downloads/apache-flume-1.5.0.1-bin/conf/flume-conf.properties.template
答案 2 :(得分:0)
我有这个类似的问题。后来发现,通过再次用连字符替换所有连字符(-),它开始起作用。也许当我复制此命令时,连字符被减号(-)代替。