Neo4j: Невозможно найти транзакцию 1 в любом из моих логических журналов - PullRequest
0 голосов
/ 05 декабря 2018

Я настраиваю кластер Neo4j с двумя основными узлами и несколькими репликами чтения.На данный момент я не добавил никаких реплик чтения.Использование Neo4j Enterprise edition 3.5.0 и ОС на всех узлах - это Ubuntu 18.x.В базу данных еще не загружено никаких данных.

Core 1 : 10.161.240.82
Core 2 : 10.161.218.172

Я настроил файл neo4j.conf, как описано по этой ссылке: https://neo4j.com/docs/operations-manual/current/clustering/setup-new-cluster/#causal-clustering-new-multi-machine-cluster

Файл конфигурации:

dbms.connectors.default_listen_address=0.0.0.0
dbms.connectors.default_advertised_address=10.161.240.82
dbms.mode=CORE

causal_clustering.minimum_core_cluster_size_at_formation=2
causal_clustering.minimum_core_cluster_size_at_runtime=2
causal_clustering.discovery_type=LIST
causal_clustering.initial_discovery_members=10.161.240.82:5000,10.161.218.172:5000
causal_clustering.discovery_listen_address=10.161.240.82:5000
causal_clustering.transaction_listen_address=10.161.240.82:6000
causal_clustering.raft_listen_address=10.161.240.82:7000

Ошибка:

2018-12-04 20:37:02.994+0000 INFO  Discovering other core members in initial members set: [10.161.218.172:5000, 10.161.240.82:5000]
2018-12-04 20:38:52.196+0000 INFO  Bound to cluster with id 860f1833-fc16-4af9-b078-958450249d97
2018-12-04 20:38:52.231+0000 INFO  Discovered core member at 10.161.218.172:5000
2018-12-04 20:38:56.377+0000 ERROR Failed to start Neo4j: Starting Neo4j failed: Component 'org.neo4j.server.database.LifecycleManagingDatabase@6abef7bd' was successfully initialized, but failed to start. Please see the attached cause exception "Unable to find transaction 1 in any of my logical logs: Couldn't find any log containing 1". Starting Neo4j failed: Component 'org.neo4j.server.database.LifecycleManagingDatabase@4beaf6bd' was successfully initialized, but failed to start. Please see the attached cause exception "Unable to find transaction 1 in any of my logical logs: Couldn't find any log containing 1".

Что означает эта ошибка и как ее устранить?

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...