macosx M1启动nacos2.2.0出现下面的错误:
org.springframework.beans.factory.UnsatisfiedDependencyException: Error creatingbean with name
'instanceOperatorClientImpl' defined in URL [jar:file:/Users/dove/opt/nacos/target/nacos-
server.jar!/BOOT-INF/lib/nacos-naming-
2.2.0.jar!/com/alibaba/nacos/naming/core/InstanceOperatorClientImpl.class]: Unsatisfied
dependency
expressed through constructor parameter 1; nested exception is
org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating
bean with name
'clientOperationServiceProxy' defined in URL [jar:file:/Users/dove/opt/nacos/target/nacos-
server.jar!/BOOT-INF/lib/nacos-naming-
2.2.0.jar!/com/alibaba/nacos/naming/core/v2/service/ClientOperationServiceProxy.class]:
Unsatisfied dependency expressed through constructor parameter 1; nested exception is
org.springframework.beans.factory.BeanCreationException: Error creating bean with name
'persistentClientOperationServiceImpl' defined in URL
[jar:file:/Users/dove/opt/nacos/target/nacos-server.jar!/BOOT-INF/lib/nacos-naming-
2.2.0.jar!/com/alibaba/nacos/naming/core/v2/service/impl
/PersistentClientOperationServiceImpl.clas
s]: Bean instantiation via constructor failed; nested exception is
org.springframework.beans.BeanInstantiationException: Failed to instantiate
[com.alibaba.nacos.naming.core.v2.service.impl.PersistentClientOperationServiceImpl]:
Constructor
threw exception; nested exception is java.lang.UnsatisfiedLinkError:
/private/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T
/librocksdbjni637404165806561628.jnilib:
dlopen(/private/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T
/librocksdbjni637404165806561628.jn
ilib, 0x0001): tried:
'/private/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T
/librocksdbjni637404165806561628.jnilib'
(mach-o file, but is an incompatible architecture (have 'x86_64', need 'arm64e' or 'arm64')),
'/System/Volumes/Preboot/Cryptexes/OS/private/var/folders/zz
/zyxvpxvq6csfxvn_n0000000000000/T/libr
ocksdbjni637404165806561628.jnilib' (no such file),
'/private/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T
/librocksdbjni637404165806561628.jnilib'
(mach-o file, but is an incompatible architecture (have 'x86_64', need 'arm64e' or 'arm64'))
解决方式:
下载JDK8-macos-x86-64版本,配置nacos启动脚本startup.sh
#!/bin/bash
# 添加JAVA_HOME配置,使用自定义的JAVA版本
JAVA_HOME=/Users/dove/opt/zulu8-x64
cygwin=false
darwin=false
os400=false
case "`uname`" in
CYGWIN*) cygwin=true;;
Darwin*) darwin=true;;
OS400*) os400=true;;
esac
error_exit ()
{echo "ERROR: $1 !!"exit 1
}
[ ! -e "$JAVA_HOME/bin/java" ] && JAVA_HOME=$HOME/jdk/java
[ ! -e "$JAVA_HOME/bin/java" ] && JAVA_HOME=/usr/java
[ ! -e "$JAVA_HOME/bin/java" ] && JAVA_HOME=/opt/taobao/java
[ ! -e "$JAVA_HOME/bin/java" ] && unset JAVA_HOME
添加JAVA_HOME配置为JDK-8-x86-64版本目录。