RocketMQ 名称服务器启动错误 -- Could not find or load main class
RocketMQ nameserver start error -- Could not find or load main class
我在 the official guide 之后尝试从头开始安装 RocketMQ,我使用了 jdk 1.8.0_121 和 maven 3.5.0.
但是,在步骤 mvn -Prelease-all -DskipTests clean install -U
之后,没有生成目录 distribution
,因此 cd distribution/target/apache-rocketmq
不会成功。
然后我尝试通过键入 sh bin/mqnamesrv
直接启动名称服务器,它给了我以下错误。
Java HotSpot(TM) 64-Bit Server VM warning: ignoring option PermSize=128m; support was removed in 8.0
Java HotSpot(TM) 64-Bit Server VM warning: ignoring option MaxPermSize=320m; support was removed in 8.0
Java HotSpot(TM) 64-Bit Server VM warning: Using the DefNew young collector with the CMS collector is deprecated and will likely be removed in a future release
Java HotSpot(TM) 64-Bit Server VM warning: UseCMSCompactAtFullCollection is deprecated and will likely be removed in a future release.
Error: Could not find or load main class org.apache.rocketmq.namesrv.NamesrvStartup
本来以为是我的CLASSPATH环境变量的问题,结果设置了还是不行。下面是我的配置
export JAVA_HOME=$HOME/src/jdk1.8.0_121
export PATH=$PATH:$JAVA_HOME/bin
export MAVEN_HOME=$HOME/src/apache-maven-3.5.0
export PATH=$PATH:$MAVEN_HOME/bin
export CLASSPATH=.:$JAVA_HOME/lib/dt.jar:$JAVA_HOME/lib/tools.jar
有没有对源代码的更新,或者文档中没有出现的一些额外步骤,不知道我是否遗漏了什么?
抱歉给您带来麻烦,请git克隆develop
分支中的最新源代码,并且有一个独立的模块distribution
。
如果你在 master
分支,请 cd target/apache-rocketmq-all/
到 运行 rocketmq。
我在 the official guide 之后尝试从头开始安装 RocketMQ,我使用了 jdk 1.8.0_121 和 maven 3.5.0.
但是,在步骤 mvn -Prelease-all -DskipTests clean install -U
之后,没有生成目录 distribution
,因此 cd distribution/target/apache-rocketmq
不会成功。
然后我尝试通过键入 sh bin/mqnamesrv
直接启动名称服务器,它给了我以下错误。
Java HotSpot(TM) 64-Bit Server VM warning: ignoring option PermSize=128m; support was removed in 8.0
Java HotSpot(TM) 64-Bit Server VM warning: ignoring option MaxPermSize=320m; support was removed in 8.0
Java HotSpot(TM) 64-Bit Server VM warning: Using the DefNew young collector with the CMS collector is deprecated and will likely be removed in a future release
Java HotSpot(TM) 64-Bit Server VM warning: UseCMSCompactAtFullCollection is deprecated and will likely be removed in a future release.
Error: Could not find or load main class org.apache.rocketmq.namesrv.NamesrvStartup
本来以为是我的CLASSPATH环境变量的问题,结果设置了还是不行。下面是我的配置
export JAVA_HOME=$HOME/src/jdk1.8.0_121
export PATH=$PATH:$JAVA_HOME/bin
export MAVEN_HOME=$HOME/src/apache-maven-3.5.0
export PATH=$PATH:$MAVEN_HOME/bin
export CLASSPATH=.:$JAVA_HOME/lib/dt.jar:$JAVA_HOME/lib/tools.jar
有没有对源代码的更新,或者文档中没有出现的一些额外步骤,不知道我是否遗漏了什么?
抱歉给您带来麻烦,请git克隆develop
分支中的最新源代码,并且有一个独立的模块distribution
。
如果你在 master
分支,请 cd target/apache-rocketmq-all/
到 运行 rocketmq。