{"id":53841,"date":"2025-09-15T10:54:24","date_gmt":"2025-09-15T00:54:24","guid":{"rendered":"https:\/\/www.cloudproinc.com.au\/?p=53841"},"modified":"2025-09-15T10:54:27","modified_gmt":"2025-09-15T00:54:27","slug":"create-a-blank-neo4j-instance","status":"publish","type":"post","link":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/2025\/09\/15\/create-a-blank-neo4j-instance\/","title":{"rendered":"Create a Blank Neo4j Instance"},"content":{"rendered":"\n<p>In this blog post Create a Blank Neo4j Instance Safely on Docker, VM, or Kubernetes we will walk through how to spin up a clean, secure Neo4j deployment on Docker, a Linux VM, or Kubernetes, and why each step matters.<\/p>\n\n\n\n<!--more-->\n\n\n\n<p>Create a Blank <a href=\"https:\/\/www.cloudproinc.com.au\/index.php\/category\/neo4j\/\">Neo4j<\/a> Instance Safely on Docker, VM, or Kubernetes starts with a simple goal: a fresh Neo4j you can rely on. Teams sometimes say \u201cblack Neo4j instance\u201d when they really mean a pristine or blank graph with no sample data, safe defaults, and repeatable setup. That\u2019s what we\u2019ll build.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-what-is-neo4j-and-why-it-fits-this-job\">What is Neo4j and why it fits this job<\/h2>\n\n\n\n<p>Neo4j is a native graph database built on the labeled property graph model. Data lives as nodes and relationships, both carrying key-value properties, which makes connected queries fast and expressive. Cypher is Neo4j\u2019s query language, designed to describe patterns, not just rows, so reading relationships like KNOWS or PURCHASED feels natural. Under the hood Neo4j uses a transactional storage engine with a write-ahead log and a page cache for hot data. Clients talk to Neo4j via the Bolt protocol (port 7687) and a lightweight HTTP\/HTTPS API (port 7474) used by Neo4j Browser and tools.<\/p>\n\n\n\n<p>When we say \u201cblank instance,\u201d we mean a new server with authentication enabled, persistent storage, and zero user data or sample datasets. In Community edition you get one database (named <code>neo4j<\/code>); Enterprise adds multiple databases and clustering. We\u2019ll keep everything portable and secure-by-default so you can promote from laptop to cloud with minimal churn.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-what-you-will-build\">What you will build<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>A clean, empty Neo4j instance<\/li>\n\n\n\n<li>Authentication enabled and an admin password set<\/li>\n\n\n\n<li>Persistent volumes so data survives restarts<\/li>\n\n\n\n<li>Network exposure limited to what you actually need<\/li>\n\n\n\n<li>Optional TLS and a quick backup routine<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-prerequisites\">Prerequisites<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Neo4j 5.x (Docker image or native packages)<\/li>\n\n\n\n<li>Docker Desktop (for the container path) or Ubuntu 22.04+ (for the VM path) or a Kubernetes cluster (for the K8s path)<\/li>\n\n\n\n<li>Ports: 7474 (HTTP\/Browser) and 7687 (Bolt)<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-option-1-docker-quick-start\">Option 1 \u2014 Docker quick start<\/h2>\n\n\n\n<p>This is the fastest path for local development or a POC.<\/p>\n\n\n\n<pre class=\"wp-block-code has-white-color has-black-background-color has-text-color has-background has-link-color wp-elements-8f6b494ee324abf0e6a957a3dc442c74\"><code># Create persistent volumes\ndocker volume create neo4j_data\ndocker volume create neo4j_logs\n\n# Run Neo4j Community 5.x\ndocker run \\\n  --name neo4j \\\n  --detach \\\n  --publish 127.0.0.1:7474:7474 \\\n  --publish 127.0.0.1:7687:7687 \\\n  --volume neo4j_data:\/data \\\n  --volume neo4j_logs:\/logs \\\n  --env NEO4J_AUTH=neo4j\/ChangeMeNow! \\\n  --env NEO4J_dbms_memory_pagecache_size=1G \\\n  --env NEO4J_server_memory_heap_initial__size=512m \\\n  --env NEO4J_server_memory_heap_max__size=2G \\\n  --env NEO4JLABS_PLUGINS='&#91;\"apoc\"]' \\\n  neo4j:5-community\n<\/code><\/pre>\n\n\n\n<p>Notes:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>We bind ports to <code>127.0.0.1<\/code> to keep the database local-only. Use a reverse proxy or VPN to expose it later.<\/li>\n\n\n\n<li><code>NEO4J_AUTH<\/code> sets an initial password; change it after your first login.<\/li>\n\n\n\n<li>Volumes mount <code>\/data<\/code> and <code>\/logs<\/code> so the graph persists.<\/li>\n<\/ul>\n\n\n\n<p>Test it:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Open http:\/\/localhost:7474 (Neo4j Browser)<\/li>\n\n\n\n<li>Login with <code>neo4j<\/code> \/ <code>ChangeMeNow!<\/code><\/li>\n\n\n\n<li>Run: <code>SHOW DATABASES;<\/code> \u2014 you should see the default <code>neo4j<\/code> database.<\/li>\n<\/ol>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-keeping-it-blank\">Keeping it blank<\/h3>\n\n\n\n<p>The Community edition starts with an empty <code>neo4j<\/code> database. If you ever loaded sample data and want to clear it:<\/p>\n\n\n\n<pre class=\"wp-block-code has-white-color has-black-background-color has-text-color has-background has-link-color wp-elements-88326dfde09a059adefe2308b0595ea4\"><code>\/\/ Remove all nodes and relationships\nMATCH (n) DETACH DELETE n;\n\n\/\/ Optionally drop indexes and constraints (v5 syntax)\nSHOW INDEXES YIELD name;        \/\/ Inspect first\n\/\/ DROP INDEX index_name;\nSHOW CONSTRAINTS YIELD name;    \/\/ Inspect first\n\/\/ DROP CONSTRAINT constraint_name;\n<\/code><\/pre>\n\n\n\n<p>Enterprise users can create a brand-new database:<\/p>\n\n\n\n<pre class=\"wp-block-code has-white-color has-black-background-color has-text-color has-background has-link-color wp-elements-16917eb8f92b94c3edfeedef09c1bffb\"><code>\/\/ Enterprise only\nCREATE DATABASE clean;\nWAIT FOR DATABASE clean ONLINE;\n<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-optional-tls-on-docker\">Optional TLS on Docker<\/h3>\n\n\n\n<p>For encrypted Bolt, generate a certificate and mount it under <code>\/var\/lib\/neo4j\/certificates<\/code>, then configure TLS:<\/p>\n\n\n\n<pre class=\"wp-block-code has-white-color has-black-background-color has-text-color has-background has-link-color wp-elements-3f6213c975f40a2bbdb9c2b2cbfb44ff\"><code># Example: generate self-signed certs (adjust CN\/SANs to your hostnames)\nopenssl req -x509 -newkey rsa:4096 -sha256 -days 365 -nodes \\\n  -keyout private.key -out public.crt -subj \"\/CN=localhost\"\n\n# Create expected directory structure and mount to the container\n# \/var\/lib\/neo4j\/certificates\/bolt\/...\n\n# Then set environment variables like:\nNEO4J_server_bolt_tls__level=REQUIRED\n<\/code><\/pre>\n\n\n\n<p>In production, use certificates issued by your organization instead of self-signed.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-option-2-linux-vm-install-ubuntu\">Option 2 \u2014 Linux VM install (Ubuntu)<\/h2>\n\n\n\n<p>This suits small servers or when you want systemd-managed services.<\/p>\n\n\n\n<pre class=\"wp-block-code has-white-color has-black-background-color has-text-color has-background has-link-color wp-elements-21652b0ff22bce82d9643636255f3952\"><code># Add Neo4j repository (5.x)\nwget -O - https:\/\/debian.neo4j.com\/neotechnology.gpg.key | sudo gpg --dearmor -o \/usr\/share\/keyrings\/neo4j.gpg\n\necho \"deb &#91;signed-by=\/usr\/share\/keyrings\/neo4j.gpg] https:\/\/debian.neo4j.com stable 5\" | \\\n  sudo tee \/etc\/apt\/sources.list.d\/neo4j.list\n\nsudo apt update\nsudo apt install neo4j\n\n# Enable and start\nsudo systemctl enable neo4j\nsudo systemctl start neo4j\n<\/code><\/pre>\n\n\n\n<p>Configure security and memory:<\/p>\n\n\n\n<pre class=\"wp-block-code has-white-color has-black-background-color has-text-color has-background has-link-color wp-elements-fef04f6abd5dbc754d73d8e23a810e20\"><code># \/etc\/neo4j\/neo4j.conf (key lines)\nserver.default_listen_address=0.0.0.0       # Or a specific NIC\/IP\nserver.bolt.listen_address=:7687\nserver.http.listen_address=:7474\n# Enable auth (default true)\nserver.auth.enabled=true\n# Heap and page cache sizing\nserver.memory.heap.initial_size=512m\nserver.memory.heap.max_size=2g\ndbms.memory.pagecache.size=1g\n<\/code><\/pre>\n\n\n\n<p>Restrict network access with a firewall:<\/p>\n\n\n\n<pre class=\"wp-block-code has-white-color has-black-background-color has-text-color has-background has-link-color wp-elements-145283a990d18ad9232b3c16a218e0b2\"><code>sudo ufw allow from 203.0.113.10 to any port 7687 proto tcp\nsudo ufw allow from 203.0.113.10 to any port 7474 proto tcp\nsudo ufw enable\n<\/code><\/pre>\n\n\n\n<p>Set the initial password (first login) using Neo4j Browser or the command line:<\/p>\n\n\n\n<pre class=\"wp-block-code has-white-color has-black-background-color has-text-color has-background has-link-color wp-elements-87ed2e4652c52200579a4d58a1c26047\"><code>cypher-shell -u neo4j -p neo4j 'ALTER CURRENT USER SET PASSWORD FROM \"neo4j\" TO \"ChangeMeNow!\";'\n<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-option-3-kubernetes-quick-start\">Option 3 \u2014 Kubernetes quick start<\/h2>\n\n\n\n<p>Kubernetes gives you repeatability and easy upgrades. Here\u2019s a minimal StatefulSet with a persistent volume. Access via port-forward to keep it private.<\/p>\n\n\n\n<pre class=\"wp-block-code has-white-color has-black-background-color has-text-color has-background has-link-color wp-elements-d2bd55208263bcc075136245f3eca9fb\"><code>kubectl create namespace graphs\n\ncat &lt;&lt;'YAML' | kubectl apply -n graphs -f -\napiVersion: v1\nkind: Service\nmetadata:\n  name: neo4j\nspec:\n  selector:\n    app: neo4j\n  ports:\n    - name: http\n      port: 7474\n    - name: bolt\n      port: 7687\n---\napiVersion: apps\/v1\nkind: StatefulSet\nmetadata:\n  name: neo4j\nspec:\n  serviceName: neo4j\n  replicas: 1\n  selector:\n    matchLabels:\n      app: neo4j\n  template:\n    metadata:\n      labels:\n        app: neo4j\n    spec:\n      containers:\n        - name: neo4j\n          image: neo4j:5-community\n          ports:\n            - containerPort: 7474\n            - containerPort: 7687\n          env:\n            - name: NEO4J_AUTH\n              value: \"neo4j\/ChangeMeNow!\"\n            - name: NEO4J_server_memory_heap_initial__size\n              value: \"512m\"\n            - name: NEO4J_server_memory_heap_max__size\n              value: \"2G\"\n            - name: NEO4J_dbms_memory_pagecache_size\n              value: \"1G\"\n          volumeMounts:\n            - name: data\n              mountPath: \/data\n  volumeClaimTemplates:\n    - metadata:\n        name: data\n      spec:\n        accessModes: &#91;\"ReadWriteOnce\"]\n        resources:\n          requests:\n            storage: 10Gi\nYAML\n\n# Port-forward for local access\nkubectl -n graphs port-forward svc\/neo4j 7474:7474 7687:7687\n<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-secure-by-default-checklist\">Secure-by-default checklist<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Change the initial password immediately and use a vault\/secret manager.<\/li>\n\n\n\n<li>Restrict network exposure. Prefer localhost, VPN, or private subnets.<\/li>\n\n\n\n<li>Enable TLS for Bolt when crossing untrusted networks.<\/li>\n\n\n\n<li>Use least-privilege OS users and non-root containers.<\/li>\n\n\n\n<li>Size memory: heap for query processing, page cache for graph store.<\/li>\n\n\n\n<li>Persist <code>\/data<\/code> and back it up on a schedule.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-backups-and-restore\">Backups and restore<\/h2>\n\n\n\n<p>Always practice restores. Two common approaches:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># Online dump (requires database to be offline for full consistency on older versions; consult docs for your version)\nneo4j-admin database dump --to-path \/backups neo4j\n\n# Restore\nneo4j-admin database load --from-path \/backups neo4j --overwrite-destination\n<\/code><\/pre>\n\n\n\n<p>In containers, bind-mount a host directory to <code>\/backups<\/code> or use an object storage sync job.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-why-these-steps-matter-under-the-hood\">Why these steps matter under the hood<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Authentication prevents anonymous writes via Bolt or HTTP.<\/li>\n\n\n\n<li>Persistent volumes keep the store files and transaction logs safe across restarts.<\/li>\n\n\n\n<li>Memory settings split work: heap for query planning\/execution, page cache for fast graph traversal. Oversizing heap starves the page cache and slows reads.<\/li>\n\n\n\n<li>TLS protects Bolt traffic that would otherwise expose credentials and data.<\/li>\n\n\n\n<li>Limiting network surfaces reduces attack paths to the Bolt port you actually use.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-automate-for-repeatability\">Automate for repeatability<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Docker Compose for local: encode volumes, env, and ports in code.<\/li>\n\n\n\n<li>Helm or Kustomize for Kubernetes: keep values in Git and promote through environments.<\/li>\n\n\n\n<li>Cloud VM with Terraform and cloud-init: provision OS, firewall, and Neo4j in one plan.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-troubleshooting-tips\">Troubleshooting tips<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Port already in use: stop old containers or change host ports.<\/li>\n\n\n\n<li>Can\u2019t write to \/data: check volume permissions; container user must own the path.<\/li>\n\n\n\n<li>Browser can\u2019t connect to Bolt: verify 7687 is reachable and not blocked by a firewall.<\/li>\n\n\n\n<li>High GC pauses: reduce heap or tune queries; monitor with <code>SHOW TRANSACTIONS<\/code> and logs.<\/li>\n\n\n\n<li>ARM vs x86: use an image tag that supports your architecture; official images support both.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-next-steps\">Next steps<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Add role-based access control (Enterprise) and separate app\/service accounts.<\/li>\n\n\n\n<li>Define schema for speed and safety: unique constraints on ids, indexes for lookups.<\/li>\n\n\n\n<li>Automate imports with <code>neo4j-admin database import<\/code> or APOC procedures.<\/li>\n\n\n\n<li>Introduce monitoring: metrics to Prometheus and logs to your SIEM.<\/li>\n\n\n\n<li>Consider Neo4j Enterprise for multi-database, clustering, and advanced security.<\/li>\n<\/ul>\n\n\n\n<p>With these steps, you have a reliable, blank Neo4j ready for development or to serve as the foundation for a production rollout. Start small, keep it secure, and automate the path from laptop to cloud.<\/p>\n\n\n\n<ul class=\"wp-block-yoast-seo-related-links yoast-seo-related-links\">\n<li><a href=\"https:\/\/www.cloudproinc.com.au\/index.php\/2025\/08\/25\/run-neo4j-with-docker-inside-github-codespaces\/\">Run Neo4j with Docker inside GitHub Codespaces<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/www.cloudproinc.com.au\/index.php\/2025\/06\/27\/how-to-restore-an-azure-vm-os-disk-using-azure-powershell\/\">How to Restore an Azure VM OS Disk Using Azure PowerShell<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/www.cloudproinc.com.au\/index.php\/2025\/09\/14\/publish-a-port-from-a-container-to-your-computer\/\">Publish a Port from a Container to Your Computer<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/www.cloudproinc.com.au\/index.php\/2025\/09\/10\/how-to-share-volumes-between-docker-containers\/\">How to Share Volumes Between Docker Containers<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/www.cloudproinc.com.au\/index.php\/2025\/09\/01\/auto-start-python-virtual-environment-in-github-codespaces\/\">Auto Start Python Virtual Environment in GitHub Codespaces<\/a><\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>Spin up a clean Neo4j graph quickly and securely. We cover Docker, a Linux VM, and Kubernetes, plus practical security, persistence, and backup tips.<\/p>\n","protected":false},"author":1,"featured_media":53851,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_yoast_wpseo_focuskw":"Create a Blank Neo4j Instance","_yoast_wpseo_title":"","_yoast_wpseo_metadesc":"Learn how to create a blank Neo4j instance safely using Docker, VM, or Kubernetes with our easy-to-follow guide.","_yoast_wpseo_opengraph-title":"","_yoast_wpseo_opengraph-description":"","_yoast_wpseo_twitter-title":"","_yoast_wpseo_twitter-description":"","_et_pb_use_builder":"","_et_pb_old_content":"","_et_gb_content_width":"","_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[13,82],"tags":[],"class_list":["post-53841","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-blog","category-neo4j"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.3 (Yoast SEO v27.3) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Create a Blank Neo4j Instance - CPI Consulting<\/title>\n<meta name=\"description\" content=\"Learn how to create a blank Neo4j instance safely using Docker, VM, or Kubernetes with our easy-to-follow guide.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.cloudproinc.com.au\/index.php\/2025\/09\/15\/create-a-blank-neo4j-instance\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Create a Blank Neo4j Instance\" \/>\n<meta property=\"og:description\" content=\"Learn how to create a blank Neo4j instance safely using Docker, VM, or Kubernetes with our easy-to-follow guide.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.cloudproinc.com.au\/index.php\/2025\/09\/15\/create-a-blank-neo4j-instance\/\" \/>\n<meta property=\"og:site_name\" content=\"CPI Consulting\" \/>\n<meta property=\"article:published_time\" content=\"2025-09-15T00:54:24+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-09-15T00:54:27+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cloudproinc.azurewebsites.net\/wp-content\/uploads\/2025\/09\/create-a-blank-neo4j-instance-safely-on-docker-vm-or-kubernetes.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1536\" \/>\n\t<meta property=\"og:image:height\" content=\"1024\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"CPI Staff\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"CPI Staff\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2025\\\/09\\\/15\\\/create-a-blank-neo4j-instance\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2025\\\/09\\\/15\\\/create-a-blank-neo4j-instance\\\/\"},\"author\":{\"name\":\"CPI Staff\",\"@id\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/#\\\/schema\\\/person\\\/192eeeb0ce91062126ce3822ae88fe6e\"},\"headline\":\"Create a Blank Neo4j Instance\",\"datePublished\":\"2025-09-15T00:54:24+00:00\",\"dateModified\":\"2025-09-15T00:54:27+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2025\\\/09\\\/15\\\/create-a-blank-neo4j-instance\\\/\"},\"wordCount\":927,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2025\\\/09\\\/15\\\/create-a-blank-neo4j-instance\\\/#primaryimage\"},\"thumbnailUrl\":\"\\\/wp-content\\\/uploads\\\/2025\\\/09\\\/create-a-blank-neo4j-instance-safely-on-docker-vm-or-kubernetes.png\",\"articleSection\":[\"Blog\",\"Neo4j\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2025\\\/09\\\/15\\\/create-a-blank-neo4j-instance\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2025\\\/09\\\/15\\\/create-a-blank-neo4j-instance\\\/\",\"url\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2025\\\/09\\\/15\\\/create-a-blank-neo4j-instance\\\/\",\"name\":\"Create a Blank Neo4j Instance - CPI Consulting\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2025\\\/09\\\/15\\\/create-a-blank-neo4j-instance\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2025\\\/09\\\/15\\\/create-a-blank-neo4j-instance\\\/#primaryimage\"},\"thumbnailUrl\":\"\\\/wp-content\\\/uploads\\\/2025\\\/09\\\/create-a-blank-neo4j-instance-safely-on-docker-vm-or-kubernetes.png\",\"datePublished\":\"2025-09-15T00:54:24+00:00\",\"dateModified\":\"2025-09-15T00:54:27+00:00\",\"description\":\"Learn how to create a blank Neo4j instance safely using Docker, VM, or Kubernetes with our easy-to-follow guide.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2025\\\/09\\\/15\\\/create-a-blank-neo4j-instance\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2025\\\/09\\\/15\\\/create-a-blank-neo4j-instance\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2025\\\/09\\\/15\\\/create-a-blank-neo4j-instance\\\/#primaryimage\",\"url\":\"\\\/wp-content\\\/uploads\\\/2025\\\/09\\\/create-a-blank-neo4j-instance-safely-on-docker-vm-or-kubernetes.png\",\"contentUrl\":\"\\\/wp-content\\\/uploads\\\/2025\\\/09\\\/create-a-blank-neo4j-instance-safely-on-docker-vm-or-kubernetes.png\",\"width\":1536,\"height\":1024},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2025\\\/09\\\/15\\\/create-a-blank-neo4j-instance\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Create a Blank Neo4j Instance\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/#website\",\"url\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/\",\"name\":\"Cloud Pro Inc - CPI Consulting Pty Ltd\",\"description\":\"Cloud, AI &amp; Cybersecurity Consulting | Melbourne\",\"publisher\":{\"@id\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/#organization\",\"name\":\"Cloud Pro Inc - Cloud Pro Inc - CPI Consulting Pty Ltd\",\"url\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"\\\/wp-content\\\/uploads\\\/2022\\\/01\\\/favfinalfile.png\",\"contentUrl\":\"\\\/wp-content\\\/uploads\\\/2022\\\/01\\\/favfinalfile.png\",\"width\":500,\"height\":500,\"caption\":\"Cloud Pro Inc - Cloud Pro Inc - CPI Consulting Pty Ltd\"},\"image\":{\"@id\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/#\\\/schema\\\/person\\\/192eeeb0ce91062126ce3822ae88fe6e\",\"name\":\"CPI Staff\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2d96eeb53b791d92c8c50dd667e3beec92c93253bb6ff21c02cfa8ca73665c70?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2d96eeb53b791d92c8c50dd667e3beec92c93253bb6ff21c02cfa8ca73665c70?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2d96eeb53b791d92c8c50dd667e3beec92c93253bb6ff21c02cfa8ca73665c70?s=96&d=mm&r=g\",\"caption\":\"CPI Staff\"},\"sameAs\":[\"http:\\\/\\\/www.cloudproinc.com.au\"],\"url\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/index.php\\\/author\\\/cpiadmin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Create a Blank Neo4j Instance - CPI Consulting","description":"Learn how to create a blank Neo4j instance safely using Docker, VM, or Kubernetes with our easy-to-follow guide.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.cloudproinc.com.au\/index.php\/2025\/09\/15\/create-a-blank-neo4j-instance\/","og_locale":"en_US","og_type":"article","og_title":"Create a Blank Neo4j Instance","og_description":"Learn how to create a blank Neo4j instance safely using Docker, VM, or Kubernetes with our easy-to-follow guide.","og_url":"https:\/\/www.cloudproinc.com.au\/index.php\/2025\/09\/15\/create-a-blank-neo4j-instance\/","og_site_name":"CPI Consulting","article_published_time":"2025-09-15T00:54:24+00:00","article_modified_time":"2025-09-15T00:54:27+00:00","og_image":[{"width":1536,"height":1024,"url":"https:\/\/cloudproinc.azurewebsites.net\/wp-content\/uploads\/2025\/09\/create-a-blank-neo4j-instance-safely-on-docker-vm-or-kubernetes.png","type":"image\/png"}],"author":"CPI Staff","twitter_card":"summary_large_image","twitter_misc":{"Written by":"CPI Staff","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.cloudproinc.com.au\/index.php\/2025\/09\/15\/create-a-blank-neo4j-instance\/#article","isPartOf":{"@id":"https:\/\/www.cloudproinc.com.au\/index.php\/2025\/09\/15\/create-a-blank-neo4j-instance\/"},"author":{"name":"CPI Staff","@id":"https:\/\/cloudproinc.azurewebsites.net\/#\/schema\/person\/192eeeb0ce91062126ce3822ae88fe6e"},"headline":"Create a Blank Neo4j Instance","datePublished":"2025-09-15T00:54:24+00:00","dateModified":"2025-09-15T00:54:27+00:00","mainEntityOfPage":{"@id":"https:\/\/www.cloudproinc.com.au\/index.php\/2025\/09\/15\/create-a-blank-neo4j-instance\/"},"wordCount":927,"commentCount":0,"publisher":{"@id":"https:\/\/cloudproinc.azurewebsites.net\/#organization"},"image":{"@id":"https:\/\/www.cloudproinc.com.au\/index.php\/2025\/09\/15\/create-a-blank-neo4j-instance\/#primaryimage"},"thumbnailUrl":"\/wp-content\/uploads\/2025\/09\/create-a-blank-neo4j-instance-safely-on-docker-vm-or-kubernetes.png","articleSection":["Blog","Neo4j"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.cloudproinc.com.au\/index.php\/2025\/09\/15\/create-a-blank-neo4j-instance\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.cloudproinc.com.au\/index.php\/2025\/09\/15\/create-a-blank-neo4j-instance\/","url":"https:\/\/www.cloudproinc.com.au\/index.php\/2025\/09\/15\/create-a-blank-neo4j-instance\/","name":"Create a Blank Neo4j Instance - CPI Consulting","isPartOf":{"@id":"https:\/\/cloudproinc.azurewebsites.net\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.cloudproinc.com.au\/index.php\/2025\/09\/15\/create-a-blank-neo4j-instance\/#primaryimage"},"image":{"@id":"https:\/\/www.cloudproinc.com.au\/index.php\/2025\/09\/15\/create-a-blank-neo4j-instance\/#primaryimage"},"thumbnailUrl":"\/wp-content\/uploads\/2025\/09\/create-a-blank-neo4j-instance-safely-on-docker-vm-or-kubernetes.png","datePublished":"2025-09-15T00:54:24+00:00","dateModified":"2025-09-15T00:54:27+00:00","description":"Learn how to create a blank Neo4j instance safely using Docker, VM, or Kubernetes with our easy-to-follow guide.","breadcrumb":{"@id":"https:\/\/www.cloudproinc.com.au\/index.php\/2025\/09\/15\/create-a-blank-neo4j-instance\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.cloudproinc.com.au\/index.php\/2025\/09\/15\/create-a-blank-neo4j-instance\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.cloudproinc.com.au\/index.php\/2025\/09\/15\/create-a-blank-neo4j-instance\/#primaryimage","url":"\/wp-content\/uploads\/2025\/09\/create-a-blank-neo4j-instance-safely-on-docker-vm-or-kubernetes.png","contentUrl":"\/wp-content\/uploads\/2025\/09\/create-a-blank-neo4j-instance-safely-on-docker-vm-or-kubernetes.png","width":1536,"height":1024},{"@type":"BreadcrumbList","@id":"https:\/\/www.cloudproinc.com.au\/index.php\/2025\/09\/15\/create-a-blank-neo4j-instance\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/cloudproinc.azurewebsites.net\/"},{"@type":"ListItem","position":2,"name":"Create a Blank Neo4j Instance"}]},{"@type":"WebSite","@id":"https:\/\/cloudproinc.azurewebsites.net\/#website","url":"https:\/\/cloudproinc.azurewebsites.net\/","name":"Cloud Pro Inc - CPI Consulting Pty Ltd","description":"Cloud, AI &amp; Cybersecurity Consulting | Melbourne","publisher":{"@id":"https:\/\/cloudproinc.azurewebsites.net\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/cloudproinc.azurewebsites.net\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/cloudproinc.azurewebsites.net\/#organization","name":"Cloud Pro Inc - Cloud Pro Inc - CPI Consulting Pty Ltd","url":"https:\/\/cloudproinc.azurewebsites.net\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cloudproinc.azurewebsites.net\/#\/schema\/logo\/image\/","url":"\/wp-content\/uploads\/2022\/01\/favfinalfile.png","contentUrl":"\/wp-content\/uploads\/2022\/01\/favfinalfile.png","width":500,"height":500,"caption":"Cloud Pro Inc - Cloud Pro Inc - CPI Consulting Pty Ltd"},"image":{"@id":"https:\/\/cloudproinc.azurewebsites.net\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/cloudproinc.azurewebsites.net\/#\/schema\/person\/192eeeb0ce91062126ce3822ae88fe6e","name":"CPI Staff","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/2d96eeb53b791d92c8c50dd667e3beec92c93253bb6ff21c02cfa8ca73665c70?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/2d96eeb53b791d92c8c50dd667e3beec92c93253bb6ff21c02cfa8ca73665c70?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/2d96eeb53b791d92c8c50dd667e3beec92c93253bb6ff21c02cfa8ca73665c70?s=96&d=mm&r=g","caption":"CPI Staff"},"sameAs":["http:\/\/www.cloudproinc.com.au"],"url":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/author\/cpiadmin\/"}]}},"jetpack_featured_media_url":"\/wp-content\/uploads\/2025\/09\/create-a-blank-neo4j-instance-safely-on-docker-vm-or-kubernetes.png","jetpack-related-posts":[{"id":53710,"url":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/2025\/08\/25\/run-neo4j-with-docker-inside-github-codespaces\/","url_meta":{"origin":53841,"position":0},"title":"Run Neo4j with Docker inside GitHub Codespaces","author":"CPI Staff","date":"August 25, 2025","format":false,"excerpt":"Spin up Neo4j inside GitHub Codespaces using Docker and Docker Compose. Fast local graph development, zero installs on your laptop.","rel":"","context":"In &quot;AI&quot;","block_context":{"text":"AI","link":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/category\/ai\/"},"img":{"alt_text":"","src":"\/wp-content\/uploads\/2025\/08\/run-neo4j-with-docker-inside-github-codespaces.png","width":350,"height":200,"srcset":"\/wp-content\/uploads\/2025\/08\/run-neo4j-with-docker-inside-github-codespaces.png 1x, \/wp-content\/uploads\/2025\/08\/run-neo4j-with-docker-inside-github-codespaces.png 1.5x, \/wp-content\/uploads\/2025\/08\/run-neo4j-with-docker-inside-github-codespaces.png 2x, \/wp-content\/uploads\/2025\/08\/run-neo4j-with-docker-inside-github-codespaces.png 3x, \/wp-content\/uploads\/2025\/08\/run-neo4j-with-docker-inside-github-codespaces.png 4x"},"classes":[]},{"id":53732,"url":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/2025\/08\/28\/cypher-queries-and-rag-technology-explained\/","url_meta":{"origin":53841,"position":1},"title":"Cypher Queries and RAG Technology Explained","author":"CPI Staff","date":"August 28, 2025","format":false,"excerpt":"When it comes to making sense of complex data, especially in the era of AI, two concepts often come up together: Cypher queries and RAG technology. Cypher queries are the language behind graph databases like Neo4j, while RAG (Retrieval-Augmented Generation) is an approach used in modern AI systems to improve\u2026","rel":"","context":"In &quot;AI&quot;","block_context":{"text":"AI","link":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/category\/ai\/"},"img":{"alt_text":"","src":"\/wp-content\/uploads\/2025\/08\/cypher-queries-and-rag-technology-explained.png","width":350,"height":200,"srcset":"\/wp-content\/uploads\/2025\/08\/cypher-queries-and-rag-technology-explained.png 1x, \/wp-content\/uploads\/2025\/08\/cypher-queries-and-rag-technology-explained.png 1.5x, \/wp-content\/uploads\/2025\/08\/cypher-queries-and-rag-technology-explained.png 2x, \/wp-content\/uploads\/2025\/08\/cypher-queries-and-rag-technology-explained.png 3x, \/wp-content\/uploads\/2025\/08\/cypher-queries-and-rag-technology-explained.png 4x"},"classes":[]},{"id":53838,"url":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/2025\/09\/15\/use-text2cypher-with-rag\/","url_meta":{"origin":53841,"position":2},"title":"Use Text2Cypher with RAG","author":"CPI Staff","date":"September 15, 2025","format":false,"excerpt":"Learn how to combine Text2Cypher and RAG to turn natural language into precise Cypher, execute safely, and deliver trustworthy graph answers.","rel":"","context":"In &quot;AI&quot;","block_context":{"text":"AI","link":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/category\/ai\/"},"img":{"alt_text":"","src":"\/wp-content\/uploads\/2025\/09\/use-text2cypher-with-rag-for-dependable-graph-based-answers-today.png","width":350,"height":200,"srcset":"\/wp-content\/uploads\/2025\/09\/use-text2cypher-with-rag-for-dependable-graph-based-answers-today.png 1x, \/wp-content\/uploads\/2025\/09\/use-text2cypher-with-rag-for-dependable-graph-based-answers-today.png 1.5x, \/wp-content\/uploads\/2025\/09\/use-text2cypher-with-rag-for-dependable-graph-based-answers-today.png 2x, \/wp-content\/uploads\/2025\/09\/use-text2cypher-with-rag-for-dependable-graph-based-answers-today.png 3x, \/wp-content\/uploads\/2025\/09\/use-text2cypher-with-rag-for-dependable-graph-based-answers-today.png 4x"},"classes":[]},{"id":53815,"url":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/2025\/09\/14\/publish-a-port-from-a-container-to-your-computer\/","url_meta":{"origin":53841,"position":3},"title":"Publish a Port from a Container to Your Computer","author":"CPI Staff","date":"September 14, 2025","format":false,"excerpt":"Learn how to publish container ports safely and reliably, with clear steps for Docker, Podman, and Kubernetes, plus troubleshooting and security best practices.","rel":"","context":"In &quot;Blog&quot;","block_context":{"text":"Blog","link":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/category\/blog\/"},"img":{"alt_text":"publish-a-port-from-a-container-to-your-computer-the-right-way","src":"\/wp-content\/uploads\/2025\/09\/publish-a-port-from-a-container-to-your-computer-the-right-way.png","width":350,"height":200,"srcset":"\/wp-content\/uploads\/2025\/09\/publish-a-port-from-a-container-to-your-computer-the-right-way.png 1x, \/wp-content\/uploads\/2025\/09\/publish-a-port-from-a-container-to-your-computer-the-right-way.png 1.5x, \/wp-content\/uploads\/2025\/09\/publish-a-port-from-a-container-to-your-computer-the-right-way.png 2x, \/wp-content\/uploads\/2025\/09\/publish-a-port-from-a-container-to-your-computer-the-right-way.png 3x, \/wp-content\/uploads\/2025\/09\/publish-a-port-from-a-container-to-your-computer-the-right-way.png 4x"},"classes":[]},{"id":53839,"url":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/2025\/09\/15\/what-are-cypher-queries\/","url_meta":{"origin":53841,"position":4},"title":"What Are Cypher Queries","author":"CPI Staff","date":"September 15, 2025","format":false,"excerpt":"Understand Cypher, the query language for graph databases. Learn core concepts, syntax, best practices, and practical steps to model, query, and scale graph solutions in your organisation.","rel":"","context":"In &quot;AI&quot;","block_context":{"text":"AI","link":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/category\/ai\/"},"img":{"alt_text":"","src":"\/wp-content\/uploads\/2025\/09\/what-are-cypher-queries-and-how-they-power-graph-databases-at-scale.png","width":350,"height":200,"srcset":"\/wp-content\/uploads\/2025\/09\/what-are-cypher-queries-and-how-they-power-graph-databases-at-scale.png 1x, \/wp-content\/uploads\/2025\/09\/what-are-cypher-queries-and-how-they-power-graph-databases-at-scale.png 1.5x, \/wp-content\/uploads\/2025\/09\/what-are-cypher-queries-and-how-they-power-graph-databases-at-scale.png 2x, \/wp-content\/uploads\/2025\/09\/what-are-cypher-queries-and-how-they-power-graph-databases-at-scale.png 3x, \/wp-content\/uploads\/2025\/09\/what-are-cypher-queries-and-how-they-power-graph-databases-at-scale.png 4x"},"classes":[]},{"id":53709,"url":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/2025\/08\/26\/graphrag-explained\/","url_meta":{"origin":53841,"position":5},"title":"GraphRAG Explained","author":"CPI Staff","date":"August 26, 2025","format":false,"excerpt":"GraphRAG combines knowledge graphs with RAG to retrieve structured, multi-hop context for LLMs. Learn how it works and how to build one.","rel":"","context":"In &quot;AI&quot;","block_context":{"text":"AI","link":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/category\/ai\/"},"img":{"alt_text":"","src":"\/wp-content\/uploads\/2025\/08\/graphrag-explained.png","width":350,"height":200,"srcset":"\/wp-content\/uploads\/2025\/08\/graphrag-explained.png 1x, \/wp-content\/uploads\/2025\/08\/graphrag-explained.png 1.5x, \/wp-content\/uploads\/2025\/08\/graphrag-explained.png 2x, \/wp-content\/uploads\/2025\/08\/graphrag-explained.png 3x, \/wp-content\/uploads\/2025\/08\/graphrag-explained.png 4x"},"classes":[]}],"jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/wp-json\/wp\/v2\/posts\/53841","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/wp-json\/wp\/v2\/comments?post=53841"}],"version-history":[{"count":2,"href":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/wp-json\/wp\/v2\/posts\/53841\/revisions"}],"predecessor-version":[{"id":53861,"href":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/wp-json\/wp\/v2\/posts\/53841\/revisions\/53861"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/wp-json\/wp\/v2\/media\/53851"}],"wp:attachment":[{"href":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/wp-json\/wp\/v2\/media?parent=53841"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/wp-json\/wp\/v2\/categories?post=53841"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/wp-json\/wp\/v2\/tags?post=53841"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}