{"id":34593,"date":"2024-03-29T16:39:09","date_gmt":"2024-03-29T16:39:09","guid":{"rendered":"https:\/\/10web.io\/blog\/?p=34593"},"modified":"2024-11-14T11:28:03","modified_gmt":"2024-11-14T11:28:03","slug":"error-2006-hy000-mysql-server-has-gone-away","status":"publish","type":"post","link":"https:\/\/10web.io\/blog\/error-2006-hy000-mysql-server-has-gone-away\/","title":{"rendered":"Solving Error 2006 HY000 MySQL Server Has Gone Away"},"content":{"rendered":"<p>Stumbling upon the &#8216;ERROR 2006 (HY000): MySQL server has gone away&#8217; can definitely throw a wrench in your workflow, especially when you&#8217;re in the thick of managing a MySQL database.<\/p>\n<p>While somewhat cryptic, this error message signals a fairly common issue that many database administrators and developers face. But with some insight and some troubleshooting steps, you can get to the bottom of this and keep your database operations running smoothly.<\/p>\n<h2>Understanding &#8220;error 2006 (HY000): MySQL server has gone away&#8221;<\/h2>\n<p>First off, let&#8217;s demystify this error. It pops up when attempting to execute a query or command, and the <a href=\"https:\/\/10web.io\/glossary\/mysql\/\">MySQL<\/a> server you&#8217;re trying to communicate with is unavailable.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/10web.io\/blog\/wp-content\/uploads\/sites\/2\/2024\/03\/error-2006-hy000-mysql-server-has-gone-away.jpg\" alt=\"The error 2006 hy000 mysql server has gone away as it appears in a terminal window.\" width=\"1560\" height=\"155\" class=\"alignnone size-full wp-image-34591\" srcset=\"https:\/\/10web.io\/blog\/wp-content\/uploads\/sites\/2\/2024\/03\/error-2006-hy000-mysql-server-has-gone-away.jpg 1560w, https:\/\/10web.io\/blog\/wp-content\/uploads\/sites\/2\/2024\/03\/error-2006-hy000-mysql-server-has-gone-away-742x74.jpg 742w, https:\/\/10web.io\/blog\/wp-content\/uploads\/sites\/2\/2024\/03\/error-2006-hy000-mysql-server-has-gone-away-1484x147.jpg 1484w, https:\/\/10web.io\/blog\/wp-content\/uploads\/sites\/2\/2024\/03\/error-2006-hy000-mysql-server-has-gone-away-150x15.jpg 150w, https:\/\/10web.io\/blog\/wp-content\/uploads\/sites\/2\/2024\/03\/error-2006-hy000-mysql-server-has-gone-away-768x76.jpg 768w, https:\/\/10web.io\/blog\/wp-content\/uploads\/sites\/2\/2024\/03\/error-2006-hy000-mysql-server-has-gone-away-1536x153.jpg 1536w, https:\/\/10web.io\/blog\/wp-content\/uploads\/sites\/2\/2024\/03\/error-2006-hy000-mysql-server-has-gone-away-600x60.jpg 600w\" sizes=\"auto, (max-width: 1560px) 100vw, 1560px\" \/><\/p>\n<h2>Why does this error happen?<\/h2>\n<p>There are a handful of reasons why you might lose connection to a MySQL server. Some of the most common include:<\/p>\n<ul>\n<li><strong>Server timeouts<\/strong>: If your connection sits idle for too long (the default is about 8 hours), the server might just decide to close it to free up resources.<\/li>\n<li><strong>Large data packets<\/strong>: Trying to send data in a packet that exceeds the server&#8217;s &#8216;max_allowed_packet&#8217; size will result in this error since the server can&#8217;t process packets above its configured limit.<\/li>\n<li><strong>Server shutdown<\/strong>: Whether intentional or due to a crash, all active connections are dropped if the server shuts down.<\/li>\n<li><strong>Network issues<\/strong>: Sometimes, the problem is as simple as a network hiccup between your client and the server.<\/li>\n<\/ul>\n<h2>Resolving &#8220;error 2006 (HY000): MySQL server has gone away&#8221;<\/h2>\n<p>Encountering &#8220;ERROR 2006 (HY000)&#8221; can be a hiccup in your database operations, signaling that your client lost its connection to the MySQL server. This can happen for a variety of reasons, but there are straightforward solutions to get things back on track.<\/p>\n<h3>1. Increase the server timeout<\/h3>\n<p>First off, if the server is taking a nap before your queries say goodnight, it&#8217;s time to extend its wakefulness. This essentially means increasing the <span>wait_timeout<\/span> and <span>interactive_timeout<\/span> variables so the server remains available longer before automatically closing the connection.<\/p>\n<ul>\n<li><strong>For Linux<\/strong>: Edit your MySQL server&#8217;s <span>cnf<\/span> file.<\/li>\n<li><strong>For Windows<\/strong>: Dive into the <span>ini<\/span> file.<\/li>\n<\/ul>\n<p>Add or adjust the lines:<\/p>\n<pre>[mysqld]\r\nwait_timeout = 28800\r\ninteractive_timeout = 28800\r\n<\/pre>\n<p>This sets the server&#8217;s timeout to a generous 8 hours, offering a much wider window for operations to complete without the server dozing off.<\/p>\n<h3>2. Increase the maximum allowed packet size<\/h3>\n<p>At times, the issue is not about time but size. Large queries can exceed the server&#8217;s appetite for single packets, leading to the dreaded error. Here, we fatten up the server&#8217;s capacity to handle bigger packets by increasing the <code>max_allowed_packet<\/code> size.<\/p>\n<p>Adjust the same configuration files (<code>my.cnf<\/code> or <code>my.ini<\/code>) with:<\/p>\n<pre>[mysqld]\r\nmax_allowed_packet=64M\r\n<\/pre>\n<p>To avoid the &#8220;error 2006 (HY000): MySQL server has gone away&#8221; message during backup or restore operations, wield the command line with grace:<\/p>\n<p><strong>Backup database<\/strong>:<\/p>\n<pre>mysqldump --max_allowed_packet=64M -u username -p my_database &gt; my_database.sql<\/pre>\n<p><strong>Restore database<\/strong>:<\/p>\n<pre>mysql --max_allowed_packet=64M -u username -p my_database &lt; my_database.sql<\/pre>\n<p>Set this size with mindfulness; setting it too high can lead to excessive memory use.<\/p>\n<h3>3. Ensure the server is running<\/h3>\n<p>Sometimes, correcting the &#8220;error 2006 (HY000): MySQL server has gone away&#8221; message is as simple as checking if the server is actually running. Interruptions in server activity can happen due to scheduled restarts or unforeseen issues.<\/p>\n<ul>\n<li>Verify the server&#8217;s status. If it&#8217;s not running, a gentle nudge to start it might be all that&#8217;s needed.<\/li>\n<li>If you&#8217;re reaching out to a remote server, ensure the host machine is awake, alive, and accessible.<\/li>\n<\/ul>\n<h3>4. Check network connectivity<\/h3>\n<p>A broken bridge can leave queries stranded mid-journey and end in the &#8220;error 2006 (HY000): MySQL server has gone away&#8221; message. Ensuring a clear, unobstructed path between your client and the MySQL server is crucial for smooth communications.<\/p>\n<p>Ping the server from your client machine to test connectivity.<\/p>\n<pre>ping server_ip_address<\/pre>\n<p>Investigate and resolve any network gremlins that might be causing disruptions.<\/p>\n<h2>Wrapping up<\/h2>\n<p>Facing &#8216;Error 2006 (HY000): MySQL server has gone away&#8217; isn&#8217;t the end of the world, though it might feel like it in the moment. With an understanding of the common causes and a few strategic tweaks to your server&#8217;s configuration, you can overcome this hurdle.<\/p>\n<p>Just remember, as with any significant changes to your database environment, backing up your data beforehand is a wise move to safeguard against any unintended consequences.<\/p>\n<p>With these strategies, maintaining a stable connection to your MySQL server becomes a more manageable feat, allowing you to focus on the bigger picture of your database endeavors.<br \/>\n \r\n<style>\r\n  #ctablocks_scrollbox-with-icon_89{\r\n            color: #ffffff;\r\n    border-radius: 6px;\r\n  }\r\n\r\n  #ctablocks_scrollbox-with-icon_89 p{\r\n    color: #ffffff;\r\n  }\r\n  #ctablocks_scrollbox-with-icon_89 .button{\r\n          background-color: rgb(51,57,241);\r\n        color: #ffffff;\r\n    border-color: #3339f1 !important;\r\n  }\r\n  #ctablocks_scrollbox-with-icon_89 .button:hover{\r\n    background: rgba(51,57,241,0.8);\r\n    color: #ffffff;\r\n    opacity: 1;\r\n  }\r\n  #ctablocks_scrollbox-with-icon_89.ctablocks_container {\r\n    left: 100%;\r\n  }\r\n  @media screen and (max-width: 1300px) {\r\n      #ctablocks_scrollbox-with-icon_89.ctablocks_container {\r\n          left: 0;\r\n          margin: 0 auto;\r\n      }\r\n  }\r\n  #ctablocks_scrollbox-with-icon_89 .ctablocks_content {\r\n      background-color: #000000;\r\n  }\r\n<\/style>\r\n<div id=\"ctablocks_scrollbox-with-icon_89\" class=\"ctablocks_container scrollbox-with-icon_type\r\n      \">\r\n\r\n  <div class=\"ctablocks_content clear\">\r\n    <div class=\"ctablocks_content_info\">\r\n              <h4>Say goodbye to website errors<\/h4>\r\n        <h4 class=\"mobile-title\">Fix all the website errors in one click<\/h4>\r\n              <p>Migrate your website to the world's best Managed WordPress Hosting.<\/p>\r\n          <\/div>\r\n    <div class=\"ctablocks_content_button\">\r\n              <a href=\"https:\/\/10web.io\/ai-website-builder\/\" class=\"button\" data-gtag=\"sign-up-blog\" data-buttontype=\"sign-up\" data-gtag=\"cta-89\" data-buttontype=\"cta-scrollbox-with-icon\"\r\n\t        >Migrate For Free<\/a>\r\n            \r\n    <\/div>\r\n  <\/div>\r\n    <span class=\"close_ctablocks\">\r\n      <img decoding=\"async\" class=\"close-icon\" src=\"https:\/\/10web.io\/blog\/wp-content\/plugins\/cta-blocks\/assets\/images\/close_w.svg\" class=\"close\">\r\n      <img decoding=\"async\" class=\"floating-icon\" src=\"https:\/\/10web.io\/blog\/wp-content\/uploads\/sites\/2\/2024\/04\/Info-icon_Blog.png\" alt=\"Say goodbye to website errors\" title=\"Say goodbye to website errors\">\r\n<!--      <img decoding=\"async\" class=\"arrow-icon white\" src=\"\/cta-blocks\/assets\/images\/arrow-icon.svg\" class=\"close\">\r\n-->      <img decoding=\"async\" class=\"arrow-icon purple\" src=\"https:\/\/10web.io\/blog\/wp-content\/plugins\/cta-blocks\/assets\/images\/arrow-icon-purple.svg\" class=\"close\">\r\n  <\/span>\r\n<\/div>\r\n<br \/>\n <\/p>\n","protected":false},"excerpt":{"rendered":"<p>Stumbling upon the &#8216;ERROR 2006 (HY000): MySQL server has gone away&#8217; can definitely throw a wrench in your workflow, especially when you&#8217;re in the thick of managing a MySQL database. While somewhat cryptic, this error message signals a fairly common issue that many database administrators and developers face. But with some insight and some troubleshooting steps, you can get to&#8230;<\/p>\n","protected":false},"author":39,"featured_media":34592,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"two_page_speed":[],"footnotes":"","tenweb_blog_toc":"<ul>\r\n\t<li>\r\n\t\t<a href=\"#understanding-error-2006-hy000-mysql-server-has-gone-away\">Understanding \"error 2006 (HY000): MySQL server has gone away\"<\/a>\r\n\t<\/li>\r\n\t<li>\r\n\t\t<a href=\"#why-does-this-error-happen\">Why does this error happen?<\/a>\r\n\t<\/li>\r\n\t<li>\r\n\t\t<a href=\"#resolving-error-2006-hy000-mysql-server-has-gone-away\">Resolving \"error 2006 (HY000): MySQL server has gone away\"<\/a>\r\n\t\t<ul>\r\n\t\t\t<li>\r\n\t\t\t\t<a href=\"#1-increase-the-server-timeout\">1. Increase the server timeout<\/a>\r\n\t\t\t<\/li>\r\n\t\t\t<li>\r\n\t\t\t\t<a href=\"#2-increase-the-maximum-allowed-packet-size\">2. Increase the maximum allowed packet size<\/a>\r\n\t\t\t<\/li>\r\n\t\t\t<li>\r\n\t\t\t\t<a href=\"#3-ensure-the-server-is-running\">3. Ensure the server is running<\/a>\r\n\t\t\t<\/li>\r\n\t\t\t<li>\r\n\t\t\t\t<a href=\"#4-check-network-connectivity\">4. Check network connectivity<\/a>\r\n\t\t\t<\/li>\r\n\t\t<\/ul>\r\n\t<\/li>\r\n\t<li>\r\n\t\t<a href=\"#wrapping-up\">Wrapping up<\/a>\r\n\t<\/li>\r\n<\/ul>\r\n","tenweb_blog_competitor_type":"","tenweb_blog_competitor_names":"","tenweb_blog_twb_version":0,"tenweb_blog_type":""},"categories":[503],"tags":[],"class_list":["post-34593","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-sql-errors"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v23.0 (Yoast SEO v23.0) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>[Quick Fix] MySQL Error 2006: Server Has Gone Away<\/title>\n<meta name=\"description\" content=\"Beat the &#039;ERROR 2006 HY000 MySQL server has gone away&#039; message. Learn quick fixes to reconnect and keep your MySQL server running smoothly.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/10web.io\/blog\/error-2006-hy000-mysql-server-has-gone-away\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Solving Error 2006 HY000 MySQL Server Has Gone Away\" \/>\n<meta property=\"og:description\" content=\"Beat the &#039;ERROR 2006 HY000 MySQL server has gone away&#039; message. Learn quick fixes to reconnect and keep your MySQL server running smoothly.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/10web.io\/blog\/error-2006-hy000-mysql-server-has-gone-away\/\" \/>\n<meta property=\"og:site_name\" content=\"10Web - Build &amp; Host Your WordPress Website\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/10Web.io\/\" \/>\n<meta property=\"article:published_time\" content=\"2024-03-29T16:39:09+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-14T11:28:03+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/10web.io\/blog\/wp-content\/uploads\/sites\/2\/2024\/03\/error-2006-hy000-mysql-server-has-gone-away-featured.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1792\" \/>\n\t<meta property=\"og:image:height\" content=\"1024\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Sergey Markosyan\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@10Web_io\" \/>\n<meta name=\"twitter:site\" content=\"@10Web_io\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Sergey Markosyan\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"[Quick Fix] MySQL Error 2006: Server Has Gone Away","description":"Beat the 'ERROR 2006 HY000 MySQL server has gone away' message. Learn quick fixes to reconnect and keep your MySQL server running smoothly.","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:\/\/10web.io\/blog\/error-2006-hy000-mysql-server-has-gone-away\/","og_locale":"en_US","og_type":"article","og_title":"Solving Error 2006 HY000 MySQL Server Has Gone Away","og_description":"Beat the 'ERROR 2006 HY000 MySQL server has gone away' message. Learn quick fixes to reconnect and keep your MySQL server running smoothly.","og_url":"https:\/\/10web.io\/blog\/error-2006-hy000-mysql-server-has-gone-away\/","og_site_name":"10Web - Build &amp; Host Your WordPress Website","article_publisher":"https:\/\/www.facebook.com\/10Web.io\/","article_published_time":"2024-03-29T16:39:09+00:00","article_modified_time":"2024-11-14T11:28:03+00:00","og_image":[{"width":1792,"height":1024,"url":"https:\/\/10web.io\/blog\/wp-content\/uploads\/sites\/2\/2024\/03\/error-2006-hy000-mysql-server-has-gone-away-featured.jpg","type":"image\/jpeg"}],"author":"Sergey Markosyan","twitter_card":"summary_large_image","twitter_creator":"@10Web_io","twitter_site":"@10Web_io","twitter_misc":{"Written by":"Sergey Markosyan","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/10web.io\/blog\/error-2006-hy000-mysql-server-has-gone-away\/#article","isPartOf":{"@id":"https:\/\/10web.io\/blog\/error-2006-hy000-mysql-server-has-gone-away\/"},"author":{"name":"Sergey Markosyan","@id":"https:\/\/10web.io\/blog\/#\/schema\/person\/c8350d9b5223c607a2b79f6d4b8a52d6"},"headline":"Solving Error 2006 HY000 MySQL Server Has Gone Away","datePublished":"2024-03-29T16:39:09+00:00","dateModified":"2024-11-14T11:28:03+00:00","mainEntityOfPage":{"@id":"https:\/\/10web.io\/blog\/error-2006-hy000-mysql-server-has-gone-away\/"},"wordCount":710,"commentCount":0,"publisher":{"@id":"https:\/\/10web.io\/blog\/#organization"},"image":{"@id":"https:\/\/10web.io\/blog\/error-2006-hy000-mysql-server-has-gone-away\/#primaryimage"},"thumbnailUrl":"https:\/\/10web.io\/blog\/wp-content\/uploads\/sites\/2\/2024\/03\/error-2006-hy000-mysql-server-has-gone-away-featured.jpg","articleSection":["SQL Errors"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/10web.io\/blog\/error-2006-hy000-mysql-server-has-gone-away\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/10web.io\/blog\/error-2006-hy000-mysql-server-has-gone-away\/","url":"https:\/\/10web.io\/blog\/error-2006-hy000-mysql-server-has-gone-away\/","name":"[Quick Fix] MySQL Error 2006: Server Has Gone Away","isPartOf":{"@id":"https:\/\/10web.io\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/10web.io\/blog\/error-2006-hy000-mysql-server-has-gone-away\/#primaryimage"},"image":{"@id":"https:\/\/10web.io\/blog\/error-2006-hy000-mysql-server-has-gone-away\/#primaryimage"},"thumbnailUrl":"https:\/\/10web.io\/blog\/wp-content\/uploads\/sites\/2\/2024\/03\/error-2006-hy000-mysql-server-has-gone-away-featured.jpg","datePublished":"2024-03-29T16:39:09+00:00","dateModified":"2024-11-14T11:28:03+00:00","description":"Beat the 'ERROR 2006 HY000 MySQL server has gone away' message. Learn quick fixes to reconnect and keep your MySQL server running smoothly.","breadcrumb":{"@id":"https:\/\/10web.io\/blog\/error-2006-hy000-mysql-server-has-gone-away\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/10web.io\/blog\/error-2006-hy000-mysql-server-has-gone-away\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/10web.io\/blog\/error-2006-hy000-mysql-server-has-gone-away\/#primaryimage","url":"https:\/\/10web.io\/blog\/wp-content\/uploads\/sites\/2\/2024\/03\/error-2006-hy000-mysql-server-has-gone-away-featured.jpg","contentUrl":"https:\/\/10web.io\/blog\/wp-content\/uploads\/sites\/2\/2024\/03\/error-2006-hy000-mysql-server-has-gone-away-featured.jpg","width":1792,"height":1024,"caption":"The image captures the essence of the 'ERROR 2006 (HY000): MySQL server has gone away' message, abstractly representing the various reasons a server might become unavailable. Through the depiction of a symbolic MySQL server and elements like an hourglass for timeouts, oversized packets, a dimming server symbol, and disconnected network lines, it conveys the challenges of maintaining a stable connection in a digital landscape"},{"@type":"BreadcrumbList","@id":"https:\/\/10web.io\/blog\/error-2006-hy000-mysql-server-has-gone-away\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/10web.io\/blog\/"},{"@type":"ListItem","position":2,"name":"Solving Error 2006 HY000 MySQL Server Has Gone Away"}]},{"@type":"WebSite","@id":"https:\/\/10web.io\/blog\/#website","url":"https:\/\/10web.io\/blog\/","name":"10Web Blog - Build & Host Your WordPress Website","description":"10Web is an All-in-One Website Building Platform, offering Managed WordPress Hosting on Google Cloud, Beautiful Templates, Premium Plugins and Services.","publisher":{"@id":"https:\/\/10web.io\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/10web.io\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/10web.io\/blog\/#organization","name":"10Web","url":"https:\/\/10web.io\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/10web.io\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/10web.io\/blog\/wp-content\/uploads\/sites\/2\/2025\/04\/Logo-768x686-1.png","contentUrl":"https:\/\/10web.io\/blog\/wp-content\/uploads\/sites\/2\/2025\/04\/Logo-768x686-1.png","width":768,"height":686,"caption":"10Web"},"image":{"@id":"https:\/\/10web.io\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/10Web.io\/","https:\/\/x.com\/10Web_io","https:\/\/www.instagram.com\/10web.io\/","https:\/\/www.linkedin.com\/company\/10web\/mycompany\/","https:\/\/www.youtube.com\/c\/10Web"]},{"@type":"Person","@id":"https:\/\/10web.io\/blog\/#\/schema\/person\/c8350d9b5223c607a2b79f6d4b8a52d6","name":"Sergey Markosyan","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/10web.io\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/5dee1e06f3b02cc0b043d015850db7ca?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/5dee1e06f3b02cc0b043d015850db7ca?s=96&d=mm&r=g","caption":"Sergey Markosyan"},"description":"Sergey Markosyan is the Co-Founder and CTO at 10Web. He leads the development of the 10Web platform, identifies and solves problems in the development process across the organization a true sensei for the engineering team.","sameAs":["https:\/\/www.linkedin.com\/in\/sergey-markosyan\/"],"url":"https:\/\/10web.io\/blog\/author\/sergey\/"}]}},"acf":[],"_links":{"self":[{"href":"https:\/\/10web.io\/blog\/wp-json\/wp\/v2\/posts\/34593","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/10web.io\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/10web.io\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/10web.io\/blog\/wp-json\/wp\/v2\/users\/39"}],"replies":[{"embeddable":true,"href":"https:\/\/10web.io\/blog\/wp-json\/wp\/v2\/comments?post=34593"}],"version-history":[{"count":0,"href":"https:\/\/10web.io\/blog\/wp-json\/wp\/v2\/posts\/34593\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/10web.io\/blog\/wp-json\/wp\/v2\/media\/34592"}],"wp:attachment":[{"href":"https:\/\/10web.io\/blog\/wp-json\/wp\/v2\/media?parent=34593"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/10web.io\/blog\/wp-json\/wp\/v2\/categories?post=34593"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/10web.io\/blog\/wp-json\/wp\/v2\/tags?post=34593"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}