{"id":94597,"date":"2025-09-11T13:13:23","date_gmt":"2025-09-11T07:43:23","guid":{"rendered":"https:\/\/www.seminarsonly.com\/news\/?p=94597"},"modified":"2025-09-11T15:17:10","modified_gmt":"2025-09-11T09:47:10","slug":"cannot-connect-to-the-docker-daemon-at-is-the-docker-daemon-running","status":"publish","type":"post","link":"https:\/\/seminarsonly.com\/news\/cannot-connect-to-the-docker-daemon-at-is-the-docker-daemon-running\/","title":{"rendered":"Cannot Connect to the Docker Daemon at is the Docker Daemon Running?"},"content":{"rendered":"<h3 data-start=\"0\" data-end=\"10\"><span style=\"color: #008000;\"><em>The error:\u274c <strong data-start=\"16\" data-end=\"119\">\u201cCannot connect to the Docker daemon at unix:\/\/\/var\/run\/docker.sock. Is the docker daemon running?\u201d <\/strong>&#8230;means that your system (or Docker CLI) is trying to talk to the Docker service, but <strong data-start=\"208\" data-end=\"242\">it isn&#8217;t running or accessible<\/strong><span dir=\"auto\">.<\/span><\/em><\/span><\/h3>\n<hr data-start=\"245\" data-end=\"248\" \/>\n<h2 data-start=\"250\" data-end=\"284\"><span style=\"color: #800000;\">\ud83d\udee0 How to Fix It \u2014 Step-by-Step<\/span><\/h2>\n<h3 data-start=\"286\" data-end=\"327\"><span style=\"color: #000080;\">\u2705 1. <strong data-start=\"295\" data-end=\"327\">Check if Docker is installed<\/strong><\/span><\/h3>\n<p data-start=\"328\" data-end=\"332\">Run:<\/p>\n<div class=\"contain-inline-size rounded-2xl relative bg-token-sidebar-surface-primary\">\n<div class=\"overflow-y-auto p-4\" dir=\"ltr\"><code class=\"whitespace-pre! language-bash\">docker --version<br \/>\n<\/code><\/div>\n<\/div>\n<p data-start=\"362\" data-end=\"425\">If it says command not found, you need to install Docker first.<\/p>\n<hr data-start=\"427\" data-end=\"430\" \/>\n<h3 data-start=\"432\" data-end=\"468\"><span style=\"color: #000080;\">\u2705 2. <strong data-start=\"441\" data-end=\"468\">Start the Docker daemon<\/strong><\/span><\/h3>\n<h4 data-start=\"470\" data-end=\"487\">\ud83d\udd39 On Linux:<\/h4>\n<p data-start=\"488\" data-end=\"492\">Try:<\/p>\n<div class=\"contain-inline-size rounded-2xl relative bg-token-sidebar-surface-primary\">\n<div class=\"overflow-y-auto p-4\" dir=\"ltr\"><code class=\"whitespace-pre! language-bash\">sudo systemctl start docker<br \/>\n<\/code><\/div>\n<\/div>\n<p data-start=\"534\" data-end=\"545\">Then check:<\/p>\n<div class=\"contain-inline-size rounded-2xl relative bg-token-sidebar-surface-primary\">\n<div class=\"overflow-y-auto p-4\" dir=\"ltr\"><code class=\"whitespace-pre! language-bash\">sudo systemctl status docker<br \/>\n<\/code><\/div>\n<\/div>\n<p data-start=\"588\" data-end=\"622\">To start it automatically on boot:<\/p>\n<div class=\"contain-inline-size rounded-2xl relative bg-token-sidebar-surface-primary\">\n<div class=\"overflow-y-auto p-4\" dir=\"ltr\"><code class=\"whitespace-pre! language-bash\">sudo systemctl <span class=\"hljs-built_in\">enable<\/span> docker<br \/>\n<\/code><\/div>\n<\/div>\n<hr data-start=\"665\" data-end=\"668\" \/>\n<h4 data-start=\"670\" data-end=\"698\"><span style=\"color: #000080;\">\ud83d\udd39 On macOS or Windows:<\/span><\/h4>\n<p data-start=\"699\" data-end=\"765\">You <strong data-start=\"703\" data-end=\"737\">must launch the Docker Desktop<\/strong> app (it starts the daemon).<\/p>\n<ul data-start=\"767\" data-end=\"853\">\n<li data-start=\"767\" data-end=\"811\">\n<p data-start=\"769\" data-end=\"811\">Search for <strong data-start=\"780\" data-end=\"798\">Docker Desktop<\/strong> and open it.<\/p>\n<\/li>\n<li data-start=\"812\" data-end=\"853\">\n<p data-start=\"814\" data-end=\"853\">Wait until it says \u201cDocker is running.\u201d<\/p>\n<\/li>\n<\/ul>\n<h3>Also Read: <a href=\"https:\/\/www.seminarsonly.com\/news\/fifa-visa-presale-registration-2026-who-can-register\/\">FIFA Visa Presale Registration 2026 | Who Can Register<\/a><\/h3>\n<hr data-start=\"855\" data-end=\"858\" \/>\n<h3 data-start=\"860\" data-end=\"890\"><span style=\"color: #000080;\">\u2705 3. <strong data-start=\"869\" data-end=\"890\">Permission issue?<\/strong><\/span><\/h3>\n<p data-start=\"891\" data-end=\"1041\">If the Docker daemon is running but you still get the error, it&#8217;s likely a <strong data-start=\"966\" data-end=\"987\">permissions issue<\/strong> accessing the Docker socket (<code data-start=\"1017\" data-end=\"1039\">\/var\/run\/docker.sock<\/code>).<\/p>\n<p data-start=\"1043\" data-end=\"1080\">Try running your command with <code data-start=\"1073\" data-end=\"1079\">sudo<\/code>:<\/p>\n<div class=\"contain-inline-size rounded-2xl relative bg-token-sidebar-surface-primary\">\n<div class=\"overflow-y-auto p-4\" dir=\"ltr\"><code class=\"whitespace-pre! language-bash\">sudo docker ps<br \/>\n<\/code><\/div>\n<\/div>\n<p data-start=\"1109\" data-end=\"1148\">Or add your user to the <code data-start=\"1133\" data-end=\"1141\">docker<\/code> group:<\/p>\n<div class=\"contain-inline-size rounded-2xl relative bg-token-sidebar-surface-primary\">\n<div class=\"overflow-y-auto p-4\" dir=\"ltr\"><code class=\"whitespace-pre! language-bash\">sudo usermod -aG docker <span class=\"hljs-variable\">$USER<\/span><br \/>\n<\/code><\/div>\n<\/div>\n<p data-start=\"1192\" data-end=\"1229\">Then <strong data-start=\"1197\" data-end=\"1220\">log out and back in<\/strong>, or run:<\/p>\n<div class=\"contain-inline-size rounded-2xl relative bg-token-sidebar-surface-primary\">\n<div class=\"overflow-y-auto p-4\" dir=\"ltr\"><code class=\"whitespace-pre! language-bash\">newgrp docker<br \/>\n<\/code><\/div>\n<\/div>\n<hr data-start=\"1257\" data-end=\"1260\" \/>\n<h3 data-start=\"1262\" data-end=\"1308\"><span style=\"color: #000080;\">\u2705 4. <strong data-start=\"1271\" data-end=\"1308\">Check Docker service logs (Linux)<\/strong><\/span><\/h3>\n<p data-start=\"1310\" data-end=\"1346\">To see why it might not be starting:<\/p>\n<div class=\"contain-inline-size rounded-2xl relative bg-token-sidebar-surface-primary\">\n<div class=\"overflow-y-auto p-4\" dir=\"ltr\"><code class=\"whitespace-pre! language-bash\">sudo journalctl -u docker.service<br \/>\n<\/code><\/div>\n<\/div>\n<hr data-start=\"1394\" data-end=\"1397\" \/>\n<h3 data-start=\"1399\" data-end=\"1453\"><span style=\"color: #000080;\">\u2705 5. <strong data-start=\"1408\" data-end=\"1453\">WSL 2 Users (Windows Subsystem for Linux)<\/strong><\/span><\/h3>\n<p data-start=\"1455\" data-end=\"1486\">If you&#8217;re using Docker via WSL:<\/p>\n<ul data-start=\"1487\" data-end=\"1602\">\n<li data-start=\"1487\" data-end=\"1540\">\n<p data-start=\"1489\" data-end=\"1540\">Make sure <strong data-start=\"1499\" data-end=\"1539\">Docker Desktop is running on Windows<\/strong>.<\/p>\n<\/li>\n<li data-start=\"1541\" data-end=\"1602\">\n<p data-start=\"1543\" data-end=\"1602\">Inside WSL, you may need to set environment variables. Run:<\/p>\n<\/li>\n<\/ul>\n<div class=\"contain-inline-size rounded-2xl relative bg-token-sidebar-surface-primary\">\n<div class=\"sticky top-9\"><\/div>\n<div class=\"overflow-y-auto p-4\" dir=\"ltr\"><code class=\"whitespace-pre! language-bash\"><span class=\"hljs-built_in\">export<\/span> DOCKER_HOST=unix:\/\/\/mnt\/wsl\/docker-desktop\/docker.sock<br \/>\n<\/code><\/div>\n<\/div>\n<p data-start=\"1678\" data-end=\"1740\">You can add that line to your <code data-start=\"1708\" data-end=\"1717\">.bashrc<\/code> or <code data-start=\"1721\" data-end=\"1729\">.zshrc<\/code> if needed.<\/p>\n<hr data-start=\"1742\" data-end=\"1745\" \/>\n<h2 data-start=\"1747\" data-end=\"1762\"><span style=\"color: #800000;\">\u2705 Quick Test<\/span><\/h2>\n<p data-start=\"1764\" data-end=\"1780\">Once fixed, try:<\/p>\n<div class=\"contain-inline-size rounded-2xl relative bg-token-sidebar-surface-primary\">\n<div class=\"overflow-y-auto p-4\" dir=\"ltr\"><code class=\"whitespace-pre! language-bash\">docker run hello-world<br \/>\n<\/code><\/div>\n<\/div>\n<p data-start=\"1817\" data-end=\"1867\">If it prints a welcome message, you&#8217;re good to go.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>The error:\u274c \u201cCannot connect to the Docker daemon at unix:\/\/\/var\/run\/docker.sock. Is the docker daemon running?\u201d &#8230;means that your system (or Docker CLI) is trying to talk to the Docker service,&hellip;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[6048],"tags":[],"class_list":["post-94597","post","type-post","status-publish","format-standard","hentry","category-error-fix"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.2 (Yoast SEO v27.2) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Cannot Connect to the Docker Daemon at is the Docker Daemon Running? - Seminarsonly.com<\/title>\n<meta name=\"description\" content=\"The error:\u274c \u201cCannot connect to the Docker daemon at unix:\/\/\/var\/run\/docker.sock. Is the docker daemon running?\u201d ...means that your system (or Docker CLI) is trying to talk to the Docker service, but it isn&#039;t running or accessible.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/seminarsonly.com\/news\/cannot-connect-to-the-docker-daemon-at-is-the-docker-daemon-running\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Cannot Connect to the Docker Daemon at is the Docker Daemon Running?\" \/>\n<meta property=\"og:description\" content=\"The error:\u274c \u201cCannot connect to the Docker daemon at unix:\/\/\/var\/run\/docker.sock. Is the docker daemon running?\u201d ...means that your system (or Docker CLI) is trying to talk to the Docker service, but it isn&#039;t running or accessible.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/seminarsonly.com\/news\/cannot-connect-to-the-docker-daemon-at-is-the-docker-daemon-running\/\" \/>\n<meta property=\"og:site_name\" content=\"Seminarsonly.com\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/facebook.com\/seminarsonly\" \/>\n<meta property=\"article:published_time\" content=\"2025-09-11T07:43:23+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-09-11T09:47:10+00:00\" \/>\n<meta name=\"author\" content=\"Freddy John\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@seminarsonly\" \/>\n<meta name=\"twitter:site\" content=\"@seminarsonly\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Freddy John\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/seminarsonly.com\/news\/cannot-connect-to-the-docker-daemon-at-is-the-docker-daemon-running\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/seminarsonly.com\/news\/cannot-connect-to-the-docker-daemon-at-is-the-docker-daemon-running\/\"},\"author\":{\"name\":\"Freddy John\",\"@id\":\"https:\/\/seminarsonly.com\/news\/#\/schema\/person\/75cf706896b7210fb0a84651adc258bd\"},\"headline\":\"Cannot Connect to the Docker Daemon at is the Docker Daemon Running?\",\"datePublished\":\"2025-09-11T07:43:23+00:00\",\"dateModified\":\"2025-09-11T09:47:10+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/seminarsonly.com\/news\/cannot-connect-to-the-docker-daemon-at-is-the-docker-daemon-running\/\"},\"wordCount\":243,\"commentCount\":0,\"articleSection\":[\"Error Fix\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/seminarsonly.com\/news\/cannot-connect-to-the-docker-daemon-at-is-the-docker-daemon-running\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/seminarsonly.com\/news\/cannot-connect-to-the-docker-daemon-at-is-the-docker-daemon-running\/\",\"url\":\"https:\/\/seminarsonly.com\/news\/cannot-connect-to-the-docker-daemon-at-is-the-docker-daemon-running\/\",\"name\":\"Cannot Connect to the Docker Daemon at is the Docker Daemon Running? - Seminarsonly.com\",\"isPartOf\":{\"@id\":\"https:\/\/seminarsonly.com\/news\/#website\"},\"datePublished\":\"2025-09-11T07:43:23+00:00\",\"dateModified\":\"2025-09-11T09:47:10+00:00\",\"author\":{\"@id\":\"https:\/\/seminarsonly.com\/news\/#\/schema\/person\/75cf706896b7210fb0a84651adc258bd\"},\"description\":\"The error:\u274c \u201cCannot connect to the Docker daemon at unix:\/\/\/var\/run\/docker.sock. Is the docker daemon running?\u201d ...means that your system (or Docker CLI) is trying to talk to the Docker service, but it isn't running or accessible.\",\"breadcrumb\":{\"@id\":\"https:\/\/seminarsonly.com\/news\/cannot-connect-to-the-docker-daemon-at-is-the-docker-daemon-running\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/seminarsonly.com\/news\/cannot-connect-to-the-docker-daemon-at-is-the-docker-daemon-running\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/seminarsonly.com\/news\/cannot-connect-to-the-docker-daemon-at-is-the-docker-daemon-running\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/seminarsonly.com\/news\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Cannot Connect to the Docker Daemon at is the Docker Daemon Running?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/seminarsonly.com\/news\/#website\",\"url\":\"https:\/\/seminarsonly.com\/news\/\",\"name\":\"Seminarsonly.com\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/seminarsonly.com\/news\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/seminarsonly.com\/news\/#\/schema\/person\/75cf706896b7210fb0a84651adc258bd\",\"name\":\"Freddy John\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/671d452f5fe9027ab894cbed50911cc764b2c16878222070bf044f21705d4c94?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/671d452f5fe9027ab894cbed50911cc764b2c16878222070bf044f21705d4c94?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/671d452f5fe9027ab894cbed50911cc764b2c16878222070bf044f21705d4c94?s=96&d=mm&r=g\",\"caption\":\"Freddy John\"},\"sameAs\":[\"https:\/\/seminarsonly.com\/news\"],\"url\":\"https:\/\/seminarsonly.com\/news\/author\/anupvnaick_51wq8y4s\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Cannot Connect to the Docker Daemon at is the Docker Daemon Running? - Seminarsonly.com","description":"The error:\u274c \u201cCannot connect to the Docker daemon at unix:\/\/\/var\/run\/docker.sock. Is the docker daemon running?\u201d ...means that your system (or Docker CLI) is trying to talk to the Docker service, but it isn't running or accessible.","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:\/\/seminarsonly.com\/news\/cannot-connect-to-the-docker-daemon-at-is-the-docker-daemon-running\/","og_locale":"en_US","og_type":"article","og_title":"Cannot Connect to the Docker Daemon at is the Docker Daemon Running?","og_description":"The error:\u274c \u201cCannot connect to the Docker daemon at unix:\/\/\/var\/run\/docker.sock. Is the docker daemon running?\u201d ...means that your system (or Docker CLI) is trying to talk to the Docker service, but it isn't running or accessible.","og_url":"https:\/\/seminarsonly.com\/news\/cannot-connect-to-the-docker-daemon-at-is-the-docker-daemon-running\/","og_site_name":"Seminarsonly.com","article_publisher":"https:\/\/facebook.com\/seminarsonly","article_published_time":"2025-09-11T07:43:23+00:00","article_modified_time":"2025-09-11T09:47:10+00:00","author":"Freddy John","twitter_card":"summary_large_image","twitter_creator":"@seminarsonly","twitter_site":"@seminarsonly","twitter_misc":{"Written by":"Freddy John","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/seminarsonly.com\/news\/cannot-connect-to-the-docker-daemon-at-is-the-docker-daemon-running\/#article","isPartOf":{"@id":"https:\/\/seminarsonly.com\/news\/cannot-connect-to-the-docker-daemon-at-is-the-docker-daemon-running\/"},"author":{"name":"Freddy John","@id":"https:\/\/seminarsonly.com\/news\/#\/schema\/person\/75cf706896b7210fb0a84651adc258bd"},"headline":"Cannot Connect to the Docker Daemon at is the Docker Daemon Running?","datePublished":"2025-09-11T07:43:23+00:00","dateModified":"2025-09-11T09:47:10+00:00","mainEntityOfPage":{"@id":"https:\/\/seminarsonly.com\/news\/cannot-connect-to-the-docker-daemon-at-is-the-docker-daemon-running\/"},"wordCount":243,"commentCount":0,"articleSection":["Error Fix"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/seminarsonly.com\/news\/cannot-connect-to-the-docker-daemon-at-is-the-docker-daemon-running\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/seminarsonly.com\/news\/cannot-connect-to-the-docker-daemon-at-is-the-docker-daemon-running\/","url":"https:\/\/seminarsonly.com\/news\/cannot-connect-to-the-docker-daemon-at-is-the-docker-daemon-running\/","name":"Cannot Connect to the Docker Daemon at is the Docker Daemon Running? - Seminarsonly.com","isPartOf":{"@id":"https:\/\/seminarsonly.com\/news\/#website"},"datePublished":"2025-09-11T07:43:23+00:00","dateModified":"2025-09-11T09:47:10+00:00","author":{"@id":"https:\/\/seminarsonly.com\/news\/#\/schema\/person\/75cf706896b7210fb0a84651adc258bd"},"description":"The error:\u274c \u201cCannot connect to the Docker daemon at unix:\/\/\/var\/run\/docker.sock. Is the docker daemon running?\u201d ...means that your system (or Docker CLI) is trying to talk to the Docker service, but it isn't running or accessible.","breadcrumb":{"@id":"https:\/\/seminarsonly.com\/news\/cannot-connect-to-the-docker-daemon-at-is-the-docker-daemon-running\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/seminarsonly.com\/news\/cannot-connect-to-the-docker-daemon-at-is-the-docker-daemon-running\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/seminarsonly.com\/news\/cannot-connect-to-the-docker-daemon-at-is-the-docker-daemon-running\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/seminarsonly.com\/news\/"},{"@type":"ListItem","position":2,"name":"Cannot Connect to the Docker Daemon at is the Docker Daemon Running?"}]},{"@type":"WebSite","@id":"https:\/\/seminarsonly.com\/news\/#website","url":"https:\/\/seminarsonly.com\/news\/","name":"Seminarsonly.com","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/seminarsonly.com\/news\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/seminarsonly.com\/news\/#\/schema\/person\/75cf706896b7210fb0a84651adc258bd","name":"Freddy John","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/671d452f5fe9027ab894cbed50911cc764b2c16878222070bf044f21705d4c94?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/671d452f5fe9027ab894cbed50911cc764b2c16878222070bf044f21705d4c94?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/671d452f5fe9027ab894cbed50911cc764b2c16878222070bf044f21705d4c94?s=96&d=mm&r=g","caption":"Freddy John"},"sameAs":["https:\/\/seminarsonly.com\/news"],"url":"https:\/\/seminarsonly.com\/news\/author\/anupvnaick_51wq8y4s\/"}]}},"_links":{"self":[{"href":"https:\/\/seminarsonly.com\/news\/wp-json\/wp\/v2\/posts\/94597","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/seminarsonly.com\/news\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/seminarsonly.com\/news\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/seminarsonly.com\/news\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/seminarsonly.com\/news\/wp-json\/wp\/v2\/comments?post=94597"}],"version-history":[{"count":0,"href":"https:\/\/seminarsonly.com\/news\/wp-json\/wp\/v2\/posts\/94597\/revisions"}],"wp:attachment":[{"href":"https:\/\/seminarsonly.com\/news\/wp-json\/wp\/v2\/media?parent=94597"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/seminarsonly.com\/news\/wp-json\/wp\/v2\/categories?post=94597"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/seminarsonly.com\/news\/wp-json\/wp\/v2\/tags?post=94597"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}