我正在关注this教程,在Windows 7上配置和运行Apache Kafka。我已经设法在某些时候运行它,一切都很顺利。我曾经使用命令zkserver
在运行Kafka之前运行zookeeper。但是,在某些时候,在我再次尝试重新运行它后,我收到以下错误:
The syntax of the command is incorrect.
Error: A JNI error has occurred, please check your installation and try again
Exception in thread "main" java.lang.NoClassDefFoundError: scala/Function0
at java.lang.Class.getDeclaredMethods0(Native Method)
at java.lang.Class.privateGetDeclaredMethods(Class.java:2701)
at java.lang.Class.privateGetMethodRecursive(Class.java:3048)
at java.lang.Class.getMethod0(Class.java:3018)
at java.lang.Class.getMethod(Class.java:1784)
at sun.launcher.LauncherHelper.validateMainClass(LauncherHelper.java:544)
at sun.launcher.LauncherHelper.checkAndLoadMain(LauncherHelper.java:526)
Caused by: java.lang.ClassNotFoundException: scala.Function0
at java.net.URLClassLoader.findClass(URLClassLoader.java:381)
at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
我正在使用此命令在命令提示符下运行Kafka:
Path\to\Kafka>.\bin\windows\kafka-server-start.bat .\config\server.properties
我正在使用此版本的Kafka:kafka_2.12-0.10.2.0,以及此版本的Zookeeper:zookeeper-3.4.9
关于这有什么问题的任何想法?任何帮助表示赞赏!