Files
tldr/pages.zh/common/cypher-shell.md

33 lines
780 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# cypher-shell
> 打开一个交互式会话并针对Neo4j实例运行Cypher查询。
> 另见:`neo4j-admin``mysql`。
> 更多信息:<https://neo4j.com/docs/operations-manual/current/tools/cypher-shell/>.
- 连接到本地实例,使用默认端口(`neo4j://localhost:7687`
`cypher-shell`
- 连接到远程实例:
`cypher-shell --address neo4j://{{host}}:{{port}}`
- 连接并提供安全凭证:
`cypher-shell --username {{username}} --password {{password}}`
- 连接到特定数据库:
`cypher-shell --database {{database_name}}`
- 在文件中执行Cypher语句并关闭
`cypher-shell --file {{path/to/file.cypher}}`
- 启用日志记录到文件:
`cypher-shell --log {{path/to/file.log}}`
- 显示帮助信息:
`cypher-shell --help`