curl -o
配置埠:
baidu hd伺服器端口配8000以上的
$ vim ./conf/neo4j.conf
# http/https訪問
dbms.connector.bolt.listen_address=:8687
開啟/關閉:
$ ./bin/neo4j start
$ ./bin/neo4j restart
$ ./bin/neo4j stop
web server:
username: neo4j
password: 1234
neo4j與elasticsearch同步:
使用import進行csv檔案匯入
./bin/neo4j-admin import \
--nodes=" " \
--relationships=" " \
--delimiter="\t" \
--quote="@" \
--ignore-missing-nodes \
--ignore-duplicate-nodes
# csv分隔符為\t
# 實體分割為@
傳入檔名的時候務必使用絕對路徑
使用neo4j-admin import指令匯入之前先將原資料庫從neo4j_home/data/databases/graph.db/中移除,即指令要求目錄下不含資料庫,否則指令無法執行
在執行指令之前務必保證neo4j處於關閉狀態
寫csv檔案的時候務必確保所有的節點的csv檔案的id fileds的值都唯
一、不重複
algorithm
recommendation
others
match (s:person )-->(c:person) with c.name as y unwind y as x return x
Neo4j學習筆記
neo4j學習筆記 一.基本知識 1.1 node syntax 節點語法 matrix movie matrix movie matrix movie matrix movie 1 代表乙個節點uncharacterized node 2 matrix 新增了乙個變數為matrix的節點。3 mo...
Neo4j學習筆記
1.install neo4j ubuntu 16.04伺服器上安裝neo4j neo4j 初步認識和使用 linux 系統無瀏覽器 初始化 neo4j 密碼 create 建立節點或關係 建立節點n,label為person,有兩個屬性name和born,通過return語句返回 create n...
Neo4j簡單使用
節點 乙個圖形的乙個基本單元 屬性 描述節點及關係的鍵值對 關係 連線兩個節點的部分,具有方向 標籤 由節點或關係組成,乙個節點可以包含多個標籤 neo4j中使用的資料庫查詢語言是cypher,是一種類sql的宣告式語言,簡稱cql。現簡單示例增刪改查操作。操作一 增 不同於sql中的insert插...