Ubuntu 20.04 上安装和配置 neo4j

  1. 进入要安装neo4j的ubuntu环境。

  2. 添加Debian资源库。

java 1.8.xx版本对应neo4j 3.xx版本(jdk 11版本对应neo4j 4.xx版本):

(1)wget -O - https://debian.neo4j.com/neotechnology.gpg.key | sudo apt-key add -

(2)echo 'deb https://debian.neo4j.com stable 3.5' | sudo tee /etc/apt/sources.list.d/neo4j.list(或者:echo 'deb https://debian.neo4j.com stable 4.4' | sudo tee /etc/apt/sources.list.d/neo4j.list)

(3)sudo apt-get update

  1. 安装社区版neo4j:

sudo apt-get install neo4j

  1. 此时可查看其运行状态:

sudo systemctl status neo4j.service

  1. 设置为在系统重新启动时启动:

(1)sudo systemctl enable neo4j.service

(2)sudo systemctl start neo4j.service

*(3)sudo systemctl status neo4j.service

  1. 连接和配置neo4j。

(1)测试连接到数据库:

cypher-shell。

默认neo4j 用户名和 neo4j 密码。

:exit。

  1. 修改密码。

~$ cypher-shell
username: neo4j
password: neo4j

neo4j> CALL dbms.changePassword('yournewpassword');
0 rows available after 24 ms, consumed after another 0 ms
neo4j>

  1. 使用neo4j。

cypher-shell

登录到 neo4j后,就可以通过命令行进行查询以及将实体和关系添加到数据库中了。

neo4j>

References:

https://blog.csdn.net/BigData_Mining/article/details/122308250

如何在Ubuntu20.04上安装和配置Neo4j - 菜鸟教程

相关推荐
yyywxk5 分钟前
Linux / Windows 下 Mamba / Vim / Vmamba 安装教程及安装包索引
linux·windows·vim
小杨4048 分钟前
python入门系列十五(asyncio)
人工智能·python·pycharm
爱学习的capoo11 分钟前
对应列表数据的分割和分组
python·pandas
点燃大海19 分钟前
MySQL表结构导出(Excel)
java·数据库·python·mysql·spring
jay丿23 分钟前
Linux动态监控进程利器:top命令详解
linux·运维·服务器
Hole_up26 分钟前
蓝桥杯真题-分糖果-题解
python·算法·职场和发展·蓝桥杯
databook28 分钟前
『Plotly实战指南』--散点图绘制进阶篇
python·数据分析·数据可视化
Tttian6221 小时前
Python办公自动化(4)对PPT&邮箱的操作
开发语言·python
JhonKI1 小时前
【Linux】日志模块实现详解
linux·运维·服务器
pk_xz1234561 小时前
python加载训练好的模型并进行叶片实例分割预测
开发语言·python