目录
neo4j安装为服务 windows services
参照JDK,将neo4j加入到环境变量
neo4j安装为服务 windows services
我的上一篇文章详细写明了如何安装启动neo4j《neo4j安装启动教程+对应的jdk配置》,文末的启动neo4j是通过cmd命令行访问bin目录,这种方式的局限性在命令行窗口必须保持开启状态,只要一关闭就无法访问localhost:7474了。
所以这一步将neo4j安装为服务,可以解决必须保持命令行窗口开启服务才能开启的情况。
(1)找到bin目录所在位置
我的是:V:\neo4j\neo4j-community-5.23.0-windows\neo4j-community-5.23.0\bin
(2)安装服务
安装服务命令
bin> neo4j.bat install-service
卸载服务命令
bin> neo4j.bat uninstall-service
Did you mean: neo4j windows-service install or neo4j windows-service uninstall or neo4j windows-service?
设置完后还不能通过localhost:7474访问,因为还没有启动服务
(3)服务相关命令
neo4j.bat start 启动服务
neo4j.bat stop 停止服务
neo4j.bat restart 重启服务
neo4j.bat status 查询服务状态