mirror of https://github.com/CrimsonTome/tldr.git
cypher-shell: add Spanish translation (#13067)
parent
b375e0d9e8
commit
d406f692b5
|
@ -0,0 +1,33 @@
|
|||
# cypher-shell
|
||||
|
||||
> Abre una sesión interactiva y ejecuta consultas Cypher contra una instancia Neo4j.
|
||||
> Vea también: `neo4j-admin`, `mysql`.
|
||||
> Más información: <https://neo4j.com/docs/operations-manual/current/tools/cypher-shell/>.
|
||||
|
||||
- Conéctate a una instancia local en el puerto por defecto (`neo4j://localhost:7687`):
|
||||
|
||||
`cypher-shell`
|
||||
|
||||
- Conéctate a una instancia remota:
|
||||
|
||||
`cypher-shell --address neo4j://{{host}}:{{puerto}}`
|
||||
|
||||
- Conéctate y proporciona credenciales de seguridad:
|
||||
|
||||
`cypher-shell --username {{nombre_de_usuario}} --password {{contraseña}}`
|
||||
|
||||
- Conéctate a una base de datos específica:
|
||||
|
||||
`cypher-shell --database {{nombre_base_de_datos}}`
|
||||
|
||||
- Ejecuta sentencias Cypher en un archivo y lo cierra:
|
||||
|
||||
`cypher-shell --file {{ruta/al/archivo.cypher}}`
|
||||
|
||||
- Activa el registro en un archivo:
|
||||
|
||||
`cypher-shell --log {{ruta/al/archivo.log}}`
|
||||
|
||||
- Muestra ayuda:
|
||||
|
||||
`cypher-shell --help`
|
Loading…
Reference in New Issue