Market-leading graph database. Stores and queries highly connected data using the Cypher query language. Ideal for knowledge graphs, fraud detection, social networks, and recommendations.
Version:
2026.01.4
back to Marketplace
With SSL enabled:
https://<IP-CON-GUIONES>.sslip.io/
Without SSL:
http://<IP_DE_LA_VM>:30474/
When you open your browser, connect with:
bolt://<IP_DE_LA_VM>:30687
# Python (neo4j driver)
from neo4j import GraphDatabase
driver = GraphDatabase.driver(
"bolt://<IP_DE_LA_VM>:30687",
auth=("neo4j", "<PASSWORD>")
)
// Node.js
const driver = neo4j.driver(
"bolt://<IP_DE_LA_VM>:30687",
neo4j.auth.basic("neo4j", "<PASSWORD>")
);
// Java
Driver driver = GraphDatabase.driver(
"bolt://<IP_DE_LA_VM>:30687",
AuthTokens.basic("neo4j", "<PASSWORD>")
);
# View the Neo4j pod
`kubectl get pods -A | grep neo4j`
# View the installation log
`tail -f /var/log/cuemby/bootstrap.log`
# Verify that the ports are listening
`ss -tlnp | grep -E '30474|30687'`
Expected output:
NAME READY STATUS RESTARTS
neo4j-xxxxxxxxx-xxxxx 1/1 Running 0 ← Running ✓
ℹ️ Neo4j may take ~3–5 minutes to become available after the pod is running, as it initializes the database on the first boot.
Getting Started with Cypher
// Create nodes
CREATE (:Person {name: "Martin", role: "admin"})
CREATE (:Person {name: "Christian", role: "engineer"})
// Create a relationship
MATCH (a:Person {name: "Martin"}), (b:Person {name: "Christian"})
CREATE (a)-[:WORKS_WITH]->(b)
// Query relationships
MATCH (a:Person)-[:WORKS_WITH]->(b:Person)
RETURN a.name, b.name
// Find all nodes of a type
MATCH (p:Person) RETURN p
// Create an index
CREATE INDEX FOR (p:Person) ON (p.name)
💡 Tip: The Neo4j Browser includes a built-in interactive guide. Type `:guide intro` in the query console to see a Cypher tour with executable examples.

IaaS
Cuemby Cloud is enterprise-grade cloud infrastructure managed from a single console, built for stronger security, predictable operations, and easy scaling across regions.
Datacenters regions available in Colombia, Ecuador, and Chile
Backed by Tier III / Tier IV data center locations
Zero Network Ingress and Egress Fees
24/7 local expert support