Neo4j 无法启动,因为数据库文件需要升级并且配置中禁用了升级

tal*_*a06 5 neo4j

当我尝试通过其 Java 驱动程序连接 Neo4j 时,出现错误“ Neo4j 无法启动,因为数据库文件需要升级,并且配置中禁用了升级。请在配置文件中将' dbms.allow_upgrade' 设置为 ' '”。true

尽管我已在文件中将属性设置dbms.allow_upgrade为,但没有任何更改。trueneo4j.conf

小智 0

这对我有用,升级到 3.3.1 neo4j Docker 镜像!我尝试了以下方法,但这对 3.0 不起作用:

 docker run \
  --publish=7474:7474 --publish=7687:7687 \
  --volume=$HOME/neo4j/data:/data \
  --volume=$HOME/neo4j/logs:/logs \
  --env=NEO4J_dbms_allow_upgrade=true \
  --env=NEO4J_dbms_allow_format_migration=true \
  neo4j:3.0

===============================================================

fflintstone@OPTIPLEX790 MINGW64 /c/Users/fflintstone
$ docker run \
>     --publish=7474:7474 --publish=7687:7687 \
>     --volume=$HOME/neo4j/data:/data \
>     --volume=$HOME/neo4j/logs:/logs \
>     --env=NEO4J_dbms_allow_upgrade=true \
>     --env=NEO4J_dbms_allow_format_migration=true \
>     neo4j:3.0
Starting Neo4j.
2017-12-26 06:47:03.172+0000 INFO  ======== Neo4j 3.0.12 ========
2017-12-26 06:47:03.228+0000 INFO  No SSL certificate found, generating a self-signed certificate..
2017-12-26 06:47:04.204+0000 INFO  Starting...
2017-12-26 06:47:05.140+0000 INFO  Bolt enabled on 0.0.0.0:7687.
2017-12-26 06:47:05.560+0000 ERROR Neo4j cannot be started, because the database files require upgrading and upgrades ar
e disabled in configuration. Please set 'dbms.allow_format_migration' to 'true' in your configuration file and try again
.

fflintstone@OPTIPLEX790 MINGW64 /c/Users/fflintstone
$ docker images
REPOSITORY          TAG                 IMAGE ID            CREATED             SIZE
neo4j               3.0                 39739226e15b        13 days ago         606MB

fflintstone@OPTIPLEX790 MINGW64 /c/Users/fflintstone
$ docker run     --publish=7474:7474 --publish=7687:7687     --volume=$HOME/neo4j/data:/data     --volume=$HOME/neo4j/l
ogs:/logs     neo4j:3.3.1
Unable to find image 'neo4j:3.3.1' locally
3.3.1: Pulling from library/neo4j
2fdfe1cd78c2: Pull complete
82630fd6e5ba: Pull complete
119d364c885d: Pull complete
46f8fad107ee: Pull complete
fe7f5c604f04: Pull complete
6fd4ca7c99ff: Pull complete
d242a75fec77: Pull complete
Digest: sha256:baeb76f0d4785817c2a3608796ff0104a8f87ed89fe3391ef467eb6f0a1fc40e
Status: Downloaded newer image for neo4j:3.3.1
Active database: graph.db
Directories in use:
  home:         /var/lib/neo4j
  config:       /var/lib/neo4j/conf
  logs:         /logs
  plugins:      /var/lib/neo4j/plugins
  import:       /var/lib/neo4j/import
  data:         /var/lib/neo4j/data
  certificates: /var/lib/neo4j/certificates
  run:          /var/lib/neo4j/run
Starting Neo4j.
2017-12-26 06:51:42.867+0000 WARN  Unknown config option: causal_clustering.discovery_listen_address
2017-12-26 06:51:42.872+0000 WARN  Unknown config option: causal_clustering.raft_advertised_address
2017-12-26 06:51:42.872+0000 WARN  Unknown config option: causal_clustering.raft_listen_address
2017-12-26 06:51:42.872+0000 WARN  Unknown config option: ha.host.coordination
2017-12-26 06:51:42.872+0000 WARN  Unknown config option: causal_clustering.transaction_advertised_address
2017-12-26 06:51:42.873+0000 WARN  Unknown config option: causal_clustering.discovery_advertised_address
2017-12-26 06:51:42.873+0000 WARN  Unknown config option: ha.host.data
2017-12-26 06:51:42.874+0000 WARN  Unknown config option: causal_clustering.transaction_listen_address
2017-12-26 06:51:42.917+0000 INFO  ======== Neo4j 3.3.1 ========
2017-12-26 06:51:42.995+0000 INFO  Starting...
2017-12-26 06:51:45.790+0000 INFO  Bolt enabled on 0.0.0.0:7687.
2017-12-26 06:51:52.936+0000 INFO  Started.
2017-12-26 06:51:55.374+0000 INFO  Remote interface available at http://localhost:7474/
Run Code Online (Sandbox Code Playgroud)

  • 就我而言,我必须将“_”替换为“.”,将“__”替换为“_”,如下所示: --env=NEO4J_dbms_allow__upgrade=true --env=NEO4J_dbms_allow__format__migration=true (2认同)