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
==================================================================================
1. 开启服务器
开启服务器
step1: cd /bin
step2: neo4j start
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.
- Single line editing for brief queries or commands
- Switch to multi-line editing with <shift-enter>
- Run a query with <ctrl-enter>
- 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.
- 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:
- 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.
- Database metadata and basic information
- Saved scripts organized into folders
- Information links for docs and reference
- Credits and licensing information