Neo4j

0.官网教程

https://neo4j.com/docs/operations-manual/3.1/

==================================================================================

查看我的Neo4j版本

Run the following to return the version and edition of Neo4j that has been installed:

rpm -qa | grep neo

返回 neo4j-3.4.10-1.noarch

Version of Neo4j

==================================================================================

1. 开启服务器

开启服务器
step1: cd /bin
step2: neo4j start

Start Server

2. 进入网页,http网址

http://106.75.57.23:7474/browser/
Connect to Neo4j
bolt://106.75.57.23:7687
username: neo4j
psd:neo4j (改啦!)

3. 编辑器 Editor (Command editing and execution)

The editor is the primary interface for entering and running commands. Enter Cypher queries to work with graph data. Use client-side commands like:help for other operations.


Editor.png
  • Single line editing for brief queries or commands
  • Switch to multi-line editing with
  • Run a query with
  • History is kept for easily retrieving previous commands

4. Stream (Scrolling series of result frames)

A result frame is created for each command execution, added to the top of the stream to create a scrollable collection in reverse chronological order.


image
  • Special frames like data visualization
  • Expand a frame to full screen
  • Remove a specific frame from the stream
  • Clear the stream with the :clear command

5. Frame code view (Viewing requests and responses)

The code tab displays everything sent to and received from the Neo4j server, including:


image
  • Request URI, HTTP method and headers
  • Response HTTP response code and headers
  • Raw request and response content in JSON format

6. Sidebar (Convenient clickable access)

The sidebar expands to reveal different functional panels for common queries and information.

image
  • Database metadata and basic information
  • Saved scripts organized into folders
  • Information links for docs and reference
  • Credits and licensing information

你可能感兴趣的:(Neo4j)