kubernetes中分布式OrientDB相互连接的问题

kubernetes中分布式OrientDB相互连接的问题,kubernetes,orientdb,hazelcast,distributed,Kubernetes,Orientdb,Hazelcast,Distributed,我们在Kubernetes的2个不同区域部署了一个分布式orientdb, 我们计划更改orientdb中的根密码 更改密码后,其中一个集群工作正常,但另一个集群开始提供以下日志 DB name=“OurDB” at com.orientechnologies.orient.core.storage.impl.local.OAbstractPaginatedStorage.open(OAbstractPaginatedStorage.java:323) at com.orientechnolog

我们在Kubernetes的2个不同区域部署了一个分布式orientdb, 我们计划更改orientdb中的根密码 更改密码后,其中一个集群工作正常,但另一个集群开始提供以下日志

DB name=“OurDB”
at com.orientechnologies.orient.core.storage.impl.local.OAbstractPaginatedStorage.open(OAbstractPaginatedStorage.java:323)
at com.orientechnologies.orient.core.db.document.ODatabaseDocumentTx.open(ODatabaseDocumentTx.java:259)
at com.orientechnologies.orient.server.OServer.openDatabase(OServer.java:988)
at com.orientechnologies.orient.server.OServer.openDatabase(OServer.java:958)
at com.orientechnologies.orient.server.OServer.openDatabase(OServer.java:949)
at com.orientechnologies.orient.server.network.protocol.binary.ONetworkProtocolBinary.openDatabase(ONetworkProtocolBinary.java:915)
at com.orientechnologies.orient.server.network.protocol.binary.ONetworkProtocolBinary.handshakeRequest(ONetworkProtocolBinary.java:249)
at com.orientechnologies.orient.server.network.protocol.binary.ONetworkProtocolBinary.execute(ONetworkProtocolBinary.java:214)
at com.orientechnologies.common.thread.OSoftThread.run(OSoftThread.java:82)
Caused by: com.orientechnologies.orient.core.exception.OStorageException: Cannot open storage it is acquired by other process
and this–
DB name=“OSystem”
at com.orientechnologies.orient.core.storage.impl.local.paginated.OPaginatedStorageDirtyFlag.lockFile(OPaginatedStorageDirtyFlag.java:109)
at com.orientechnologies.orient.core.storage.impl.local.paginated.OPaginatedStorageDirtyFlag.open(OPaginatedStorageDirtyFlag.java:142)
at com.orientechnologies.orient.core.storage.impl.local.paginated.OLocalPaginatedStorage.preOpenSteps(OLocalPaginatedStorage.java:438)
at com.orientechnologies.orient.core.storage.impl.local.OAbstractPaginatedStorage.open(OAbstractPaginatedStorage.java:271)
… 18 more
$ANSI{green {db=videoDB}} authenticate()
com.orientechnologies.orient.core.exception.OStorageException: Cannot open local storage ‘/orientdb/databases/OSystem’ with mode=rw
“”

当我们试图更改管理员密码时,它会给出 com.orientechnologies.orient.server.distributed.ODistributedException:无法在服务器“server2 name”上访问仲裁(2),因为它比可用节点(1)大

为什么orientdb要在mode=rw模式下打开OSSystem db?它不是由我们创建的,并且操作系统数据库是空的。 为什么来自一个集群的db允许我更改密码,而另一个集群给了我Ouorum问题

提前谢谢