neo4j安装报错 is not a valid Neo4j installation.

问题:

D:\software\neo4j-chs-community-4.1.2-windows\bin>neo4j console

Invoke-Neo4j : D:\software\neo4j-chs-community-4.1.2-windows\bin is not a valid Neo4j installation.  Missing D:\softwar
e\neo4j-chs-community-4.1.2-windows\bin\lib
所在位置 D:\software\neo4j-chs-community-4.1.2-windows\bin\neo4j.ps1:29 字符: 7
+ Exit (Invoke-Neo4j -Verbose:$Arguments.Verbose -Command $Arguments.Ar ...
+       ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : NotSpecified: (:) [Write-Error], WriteErrorException
    + FullyQualifiedErrorId : Microsoft.PowerShell.Commands.WriteErrorException,Invoke-Neo4j

解决方法:

将lib 目录复制一份到bin目录


D:\software\neo4j-chs-community-4.1.2-windows\bin>neo4j console
2020-09-28 05:15:22.036+0000 WARN  Config file [D:\software\neo4j-chs-community-4.1.2-windows\bin\conf\neo4j.conf] does not exist.
2020-09-28 05:15:22.038+0000 INFO  Starting...
2020-09-28 05:15:23.771+0000 INFO  ======== Neo4j 4.1.2 ========
2020-09-28 05:15:24.963+0000 INFO  Initializing system graph model for component 'security-users' with version -1 and status UNINITIALIZED
2020-09-28 05:15:24.967+0000 INFO  Setting up initial user from defaults: neo4j
2020-09-28 05:15:24.968+0000 INFO  Creating new user 'neo4j' (passwordChangeRequired=true, suspended=false)
2020-09-28 05:15:24.976+0000 INFO  Setting version for 'security-users' to 2
2020-09-28 05:15:24.979+0000 INFO  After initialization of system graph model component 'security-users' have version 2 and status CURRENT
2020-09-28 05:15:24.984+0000 INFO  Performing postInitialization step for component 'security-users' with version 2 and status CURRENT
2020-09-28 05:15:25.317+0000 INFO  Bolt enabled on localhost:7687.
2020-09-28 05:15:26.071+0000 INFO  Remote interface available at http://localhost:7474/
2020-09-28 05:15:26.072+0000 INFO  Started.

其他问题参考:

https://blog.csdn.net/weixin_42565135/article/details/105959504
http://we-yun.com/index.php/blog/versions-56.html
https://blog.csdn.net/rentian1/article/details/88080135

你可能感兴趣的:(neo4j,数据库,neo4j)