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 - 菜鸟教程

相关推荐
海阔天空_20133 分钟前
Python pyautogui库:自动化操作的强大工具
运维·开发语言·python·青少年编程·自动化
零意@12 分钟前
ubuntu切换不同版本的python
windows·python·ubuntu
思忖小下23 分钟前
Python基础学习_01
python
q567315231 小时前
在 Bash 中获取 Python 模块变量列
开发语言·python·bash
是萝卜干呀1 小时前
Backend - Python 爬取网页数据并保存在Excel文件中
python·excel·table·xlwt·爬取网页数据
代码欢乐豆1 小时前
数据采集之selenium模拟登录
python·selenium·测试工具
狂奔solar2 小时前
yelp数据集上识别潜在的热门商家
开发语言·python
Tassel_YUE2 小时前
网络自动化04:python实现ACL匹配信息(主机与主机信息)
网络·python·自动化
聪明的墨菲特i2 小时前
Python爬虫学习
爬虫·python·学习
hjjdebug2 小时前
linux 下 signal() 函数的用法,信号类型在哪里定义的?
linux·signal