大数据问题集锦之storm

来源:互联网 发布:Linux 使用gzip压缩 编辑:程序博客网 时间:2024/05/18 03:45

1.org.apache.zookeeper.server.NIOServerCnxn - Thread Thread[main,5,main] died java.lang.NoSuchFieldError: AuthFailed

解决方案

指定版的slf4j-api和zookeeper,如下:

<dependency>        <groupId>org.apache.zookeeper</groupId>        <artifactId>zookeeper</artifactId>        <version>3.3.2</version>        <exclusions>            <exclusion>                <groupId>com.sun.jmx</groupId>                <artifactId>jmxri</artifactId>            </exclusion>            <exclusion>                <groupId>com.sun.jdmk</groupId>                <artifactId>jmxtools</artifactId>            </exclusion>            <exclusion>                <groupId>javax.jms</groupId>                <artifactId>jms</artifactId>            </exclusion>        </exclusions>    </dependency><dependency><groupId>org.slf4j</groupId><artifactId>slf4j-api</artifactId><version>1.6.4</version></dependency>


0 0