1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.es/common/cypher-shell.md
Igor Támara e6ccd9a04e
pages.es: username Spanish unification (#14809)
Co-authored-by: Darío Hereñú <magallania@gmail.com>
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
2024-11-16 17:00:20 +01:00

882 B

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 {{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