您的位置:首页 > 其它

widnows:The signal HUP is in use by the JVM and will not work correctly on this platform

2016-09-28 11:26 1106 查看
The signal HUP is in use by the JVM and will not work correctly on this platform

bin\logstash -e 'input { stdin { type => stdin } } output { stdout { codec => rubydebug } }'

如果window下运行logstash,就会报上面红色的错误。

改为如下写法:

bin\logstash -e "input { stdin { type => stdin } } output { stdout { codec => rubydebug } }" 

就OK了。但是window有些机器即使不改也正常运行


备注:stdout ,codec  要小写。网上一些教程是大写的是不对的,否则也会报上面红色的错误
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐