{"id":6651,"date":"2021-02-17T17:30:33","date_gmt":"2021-02-17T17:30:33","guid":{"rendered":"https:\/\/www.n-able.com\/?p=6651"},"modified":"2024-05-14T16:05:46","modified_gmt":"2024-05-14T15:05:46","slug":"ultimate-guide-mysql-backup","status":"publish","type":"post","link":"https:\/\/www.n-able.com\/pt-br\/blog\/ultimate-guide-mysql-backup","title":{"rendered":"Ultimate Guide: MySQL Backup"},"content":{"rendered":"<p>MySQL is an incredibly popular open-source relational database management system (RDBMS) backed by\u00a0<a href=\"https:\/\/www.n-able.com\/products\/backup\/use-cases\/oracle-database?promo=blog\" target=\"_blog\" rel=\"noopener\">Oracle<\/a>. Most people are familiar with MySQL as part of the open-source enterprise stack commonly referred to as \u201cLAMP,\u201d in which\u00a0<a href=\"https:\/\/www.n-able.com\/products\/backup\/use-cases\/linux?promo=blog\" target=\"_blog\" rel=\"noopener\">Linux<\/a>\u00a0is the operating system, Apache is the web server, MySQL is the RDBMS, and PHP, Python, or PERL serves as the object-oriented scripting language. The MySQL server is available as a standalone program for use in a client-server environment or as a library that can be embedded into separate applications.<\/p>\n<p>MySQL works based on a client-server model. Simply put, MySQL creates a database for storing and manipulating data and defines the relationship for each table. From there, clients can make requests by typing specific SQL statements on MySQL. The server application will then respond to the requests with the information asked for, and display it on the client side.<\/p>\n<p>Businesses trust their websites to MySQL because it\u2019s affordable, scalable, reliable, and can support extremely large databases while using a minimal amount of power. Even though it\u2019s open-source, this platform comes with 24\/7 support and surprisingly strong data protection. Today, MySQL powers many of the most widely-used websites in the world, including Facebook, Twitter, and Youtube. Given how many companies use MySQL to power their most business-critical processes and services, it\u2019s imperative that managed service providers (MSPs)\u00a0 know how to backup and recover MySQL in the event of an emergency.<\/p>\n<h2 class=\"h3\">What Can Go Wrong with MySQL Backup?<\/h2>\n<p>MySQL is a powerful database server, but it\u2019s not infallible. To begin familiarizing your MSP with the potential issues that can crop up, here are six of the most common errors that can occur when working with MySQL:<\/p>\n<h3 class=\"h4\">1. ACCESS DENIED<\/h3>\n<p>MySQL authenticates users who connect from a host and then associates those users with access privileges on a database. These privileges include SELECT, INSERT, UPDATE, and DELETE, and can be used to identify anonymous users and grant appropriate privileges for specific functions. The access denied error can occur for a variety of reasons, but it\u2019s most commonly caused by the MySQL accounts that the client program uses to connect with the MySQL server.<\/p>\n<h3 class=\"h4\">2. LOST CONNECTIONS<\/h3>\n<p>If \u201clost connection to MySQL server\u201d appears while you\u2019re querying a database, that means there\u2019s a network connectivity issue somewhere in your environment that\u2019s causing MySQL to lose the connection.<\/p>\n<p>If that message doesn\u2019t appear, the lost connection could be caused by an error with the connection_timeout variable. The connection_timeout system variable defines, in seconds, how long the MySQL server will wait for a connection packet before determining that the connection has timed out. If the connection_timeout value is too short, you might lose the connection. MySQL can also lose the connection if the Binary Large Object (BLOB) value is more than the max_allowed_packet. If you get an\u00a0<em>ER_NET_PACKET_TOO_LARGE<\/em>\u00a0error message, you\u2019ll know this is the cause.<\/p>\n<h3 class=\"h4\">3. HOSTNAME BLOCKED<\/h3>\n<p>The max_connect_errors system in MySQL determines how many successive interrupted connection requests in a row are allowed without a successful connection. Once this threshold has been reached, MySQL assumes that something is wrong and blocks the host from further connections. A blocked host can also be caused by a faulty TCP\/IP connection from a particular host, which indicates a network problem instead of a problem with the\u00a0<em>max_connext_errors<\/em>\u00a0variable.<\/p>\n<h3 class=\"h4\">4. TOO MANY CONNECTIONS<\/h3>\n<p>The max_connections variable controls how many connections the MySQL server can support. The default value is 151, but system administrators can set a larger or smaller value based on the size of their business or their database needs. If this error appears, you\u2019ll know that all available connections are in use for other client connections.<\/p>\n<h3 class=\"h4\">5. LARGE PACKETS<\/h3>\n<p>&nbsp;<\/p>\n<p>A communication packet in MySQL can be one of the following\u2014a single SQL statement that the MySQL client sends to the MySQL server, a single row that\u2019s sent from the MySQL server to the MySQL client, or a binary log event that\u2019s sent from a replication master server to the replication master slave. For MySQL 8, 1 GB is the largest possible packet size that can be transferred to or from a MySQL client or server. The database server or client will return an\u00a0<em>ER_NET_PACKET_TOO_LARGE<\/em>\u00a0error message and close the connection if the packet size exceeds the predetermined threshold.<\/p>\n<h3 class=\"h4\">6. OUT OF SYNC COMMANDS<\/h3>\n<p>With relational database management systems, actions must be performed in sequential order. If the client functions or requests are called in the wrong order, MySQL will return an out of sync error message. For example, if you execute\u00a0<em>mysql_use_result()<\/em>\u00a0and then try to make another query without executing\u00a0<em>mysql_free_result()<\/em>\u00a0first, you\u2019ll likely get an out of sync error. You can also receive this error if you try to execute two queries that will return a result set without entering\u00a0<em>mysql_use_result()<\/em>\u00a0or\u00a0<em>mysql_store_result()<\/em>\u00a0in between the two.<\/p>\n<p>If any of these MySQL errors occur or the entire database goes down, all applications and services that rely on them will stop functioning as well. These errors can also fundamentally corrupt the database. If you have customers who rely on MySQL for the majority of their processes, it\u2019s essential that you have MySQL backup database solutions in place to help them get up and running as soon as possible.<\/p>\n<h2 class=\"h3\">How Do You Backup a MySQL Database?<\/h2>\n<p>Backing up a MySQL database is critical to protect from disaster, but how exactly do you do it? The particulars of\u00a0<a href=\"https:\/\/www.n-able.com\/products\/backup\/use-cases\/mysql?promo=blog\" target=\"_blog\" rel=\"noopener\">MySQL backup<\/a>\u00a0will differ based on the enterprise data backup software you purchase, but at its core, MySQL backup is simply a matter of installing the MySQL backup database solution on your MySQL and choosing the backup option that best suits your customer\u2019s needs.<\/p>\n<p>There are three types of MySQL backups\u2014cold, warm, and hot. With cold backups, the MySQL server stops while the backup session runs, and no third-party applications that will forcibly keep the database open can be running at the same time. With warm backups, the MySQL server is locked for write operations while the backup session runs, but clients can still use it for read operations. With hot backups, both the MySQL server and the backup session run at the same time. No one \u201ctemperature\u201d is better than the other, but make sure you choose the backup option that\u2019s least disruptive to your customers.<\/p>\n<p>Still, MySQL backup is only half the battle. You must complement your backup efforts with a data recovery plan that includes rapid data restores so you can get a duplicate MySQL database up and running as soon as possible. Without a rapid data recovery plan, your customers could lose time and money waiting for data to copy to a new location.<\/p>\n<h2 class=\"h3\">MySQL Enterprise Data Backup for MSPs<\/h2>\n<p>MySQL backup and restore should be fast, intuitive, and unobtrusive to your customers. Cove <sup>\u00ae<\/sup>\u00a0Backup is a cloud-first data and server protection service that can help you secure physical and virtual servers,\u00a0<a href=\"https:\/\/www.n-able.com\/products\/backup\/workstation-backup?promo=blog\" target=\"_blog\" rel=\"noopener\">workstations<\/a>, Microsoft 365 data, and MySQL from one intuitive dashboard. With this MySQL Backup tool, you\u2019ll have access to everything you need to easily restore your customers\u2019 MySQL databases\u2014no matter what happens.<\/p>\n<p>Once you add your customer\u2019s MySQL database to Backup Manager, you can create and customize an automatic backup schedule so you won\u2019t have to worry about remembering to create cold, warm, or hot backups at regular intervals. This way you\u2019ll always know when the last backup occurred. Backup uses True Delta deduplication and compression technology and WAN optimization techniques so you can back up MySQL as often as you like without worrying about excessive bandwidth usage. These technologies also save you time during both backup and recovery.<\/p>\n<p>Backup also helps simplify enterprise data backup for MySQL. With Backup\u2019s intuitive recovery navigation, you can restore your customer\u2019s MySQL instance to its original location, or to a new location if the physical server has been damaged. After you request a restore path, Backup allows you to quickly resume MySQL service without missing a beat. Cove Backup also helps you serve a wider range of customers who use MySQL for Windows, Linux, or MacOS. To experience firsthand how Cove Backup can help you optimize MySQL backup, get started with a\u00a0<a href=\"https:\/\/www.n-able.com\/products\/backup\/trial?promo=blog\" target=\"_blog\" rel=\"noopener\">30-day free trial<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>MySQL is an incredibly popular open-source relational database management system (RDBMS) backed by\u00a0Oracle. Most people are familiar with MySQL as part of the open-source enterprise stack commonly referred to as&#8230;<\/p>\n","protected":false},"author":24,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"inline_featured_image":false,"footnotes":""},"class_list":["post-6651","post","type-post","status-publish","format-standard","hentry","topic-backup-disaster-recovery"],"acf":[],"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>Ultimate Guide: MySQL Backup - N-able<\/title>\n<meta name=\"description\" content=\"Find out how MSPs can use MySQL backup to keep confidential information safe and customers happy.\" \/>\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.n-able.com\/pt-br\/blog\/ultimate-guide-mysql-backup\" \/>\n<meta property=\"og:locale\" content=\"pt_BR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Ultimate Guide: MySQL Backup - N-able\" \/>\n<meta property=\"og:description\" content=\"Find out how MSPs can use MySQL backup to keep confidential information safe and customers happy.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.n-able.com\/pt-br\/blog\/ultimate-guide-mysql-backup\" \/>\n<meta property=\"og:site_name\" content=\"N-able\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/NableMSP\" \/>\n<meta property=\"article:published_time\" content=\"2021-02-17T17:30:33+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-05-14T15:05:46+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.n-able.com\/wp-content\/uploads\/2021\/03\/share-image.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"630\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"N-able\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@Nable\" \/>\n<meta name=\"twitter:site\" content=\"@Nable\" \/>\n<meta name=\"twitter:label1\" content=\"Escrito por\" \/>\n\t<meta name=\"twitter:data1\" content=\"N-able\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. tempo de leitura\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutos\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.n-able.com\/pt-br\/blog\/ultimate-guide-mysql-backup#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.n-able.com\/pt-br\/blog\/ultimate-guide-mysql-backup\"},\"author\":{\"name\":\"N-able\",\"@id\":\"https:\/\/www.n-able.com\/pt-br#\/schema\/person\/f46a000e389b6d02bd4b3866e7828a7b\"},\"headline\":\"Ultimate Guide: MySQL Backup\",\"datePublished\":\"2021-02-17T17:30:33+00:00\",\"dateModified\":\"2024-05-14T15:05:46+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.n-able.com\/pt-br\/blog\/ultimate-guide-mysql-backup\"},\"wordCount\":1402,\"publisher\":{\"@id\":\"https:\/\/www.n-able.com\/pt-br#organization\"},\"articleSection\":[\"Backup &amp; Disaster Recovery\"],\"inLanguage\":\"pt-BR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.n-able.com\/pt-br\/blog\/ultimate-guide-mysql-backup\",\"url\":\"https:\/\/www.n-able.com\/pt-br\/blog\/ultimate-guide-mysql-backup\",\"name\":\"Ultimate Guide: MySQL Backup - N-able\",\"isPartOf\":{\"@id\":\"https:\/\/www.n-able.com\/pt-br#website\"},\"datePublished\":\"2021-02-17T17:30:33+00:00\",\"dateModified\":\"2024-05-14T15:05:46+00:00\",\"description\":\"Find out how MSPs can use MySQL backup to keep confidential information safe and customers happy.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.n-able.com\/pt-br\/blog\/ultimate-guide-mysql-backup#breadcrumb\"},\"inLanguage\":\"pt-BR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.n-able.com\/pt-br\/blog\/ultimate-guide-mysql-backup\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.n-able.com\/pt-br\/blog\/ultimate-guide-mysql-backup#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Backup &amp; Disaster Recovery\",\"item\":\"https:\/\/www.n-able.com\/pt-br\/blog\/category\/backup-disaster-recovery\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Ultimate Guide: MySQL Backup\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.n-able.com\/pt-br#website\",\"url\":\"https:\/\/www.n-able.com\/pt-br\",\"name\":\"N-able\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/www.n-able.com\/pt-br#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.n-able.com\/pt-br?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"pt-BR\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.n-able.com\/pt-br#organization\",\"name\":\"N-able\",\"url\":\"https:\/\/www.n-able.com\/pt-br\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"pt-BR\",\"@id\":\"https:\/\/www.n-able.com\/pt-br#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.n-able.com\/wp-content\/uploads\/2021\/02\/logo-n-able-vertical-dark.svg\",\"contentUrl\":\"https:\/\/www.n-able.com\/wp-content\/uploads\/2021\/02\/logo-n-able-vertical-dark.svg\",\"width\":\"1024\",\"height\":\"1024\",\"caption\":\"N-able\"},\"image\":{\"@id\":\"https:\/\/www.n-able.com\/pt-br#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/NableMSP\",\"https:\/\/x.com\/Nable\",\"https:\/\/www.linkedin.com\/company\/n-able\",\"https:\/\/www.youtube.com\/channel\/UClnp77HHg4aME-S-3fWQhFw\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.n-able.com\/pt-br#\/schema\/person\/f46a000e389b6d02bd4b3866e7828a7b\",\"name\":\"N-able\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"pt-BR\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/e9c468b7c98137ecdd5508befa660c205a7978133257080a37fb0b1362d53411?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/e9c468b7c98137ecdd5508befa660c205a7978133257080a37fb0b1362d53411?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/e9c468b7c98137ecdd5508befa660c205a7978133257080a37fb0b1362d53411?s=96&d=mm&r=g\",\"caption\":\"N-able\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Ultimate Guide: MySQL Backup - N-able","description":"Find out how MSPs can use MySQL backup to keep confidential information safe and customers happy.","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.n-able.com\/pt-br\/blog\/ultimate-guide-mysql-backup","og_locale":"pt_BR","og_type":"article","og_title":"Ultimate Guide: MySQL Backup - N-able","og_description":"Find out how MSPs can use MySQL backup to keep confidential information safe and customers happy.","og_url":"https:\/\/www.n-able.com\/pt-br\/blog\/ultimate-guide-mysql-backup","og_site_name":"N-able","article_publisher":"https:\/\/www.facebook.com\/NableMSP","article_published_time":"2021-02-17T17:30:33+00:00","article_modified_time":"2024-05-14T15:05:46+00:00","og_image":[{"width":1200,"height":630,"url":"https:\/\/www.n-able.com\/wp-content\/uploads\/2021\/03\/share-image.jpg","type":"image\/jpeg"}],"author":"N-able","twitter_card":"summary_large_image","twitter_creator":"@Nable","twitter_site":"@Nable","twitter_misc":{"Escrito por":"N-able","Est. tempo de leitura":"6 minutos"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.n-able.com\/pt-br\/blog\/ultimate-guide-mysql-backup#article","isPartOf":{"@id":"https:\/\/www.n-able.com\/pt-br\/blog\/ultimate-guide-mysql-backup"},"author":{"name":"N-able","@id":"https:\/\/www.n-able.com\/pt-br#\/schema\/person\/f46a000e389b6d02bd4b3866e7828a7b"},"headline":"Ultimate Guide: MySQL Backup","datePublished":"2021-02-17T17:30:33+00:00","dateModified":"2024-05-14T15:05:46+00:00","mainEntityOfPage":{"@id":"https:\/\/www.n-able.com\/pt-br\/blog\/ultimate-guide-mysql-backup"},"wordCount":1402,"publisher":{"@id":"https:\/\/www.n-able.com\/pt-br#organization"},"articleSection":["Backup &amp; Disaster Recovery"],"inLanguage":"pt-BR"},{"@type":"WebPage","@id":"https:\/\/www.n-able.com\/pt-br\/blog\/ultimate-guide-mysql-backup","url":"https:\/\/www.n-able.com\/pt-br\/blog\/ultimate-guide-mysql-backup","name":"Ultimate Guide: MySQL Backup - N-able","isPartOf":{"@id":"https:\/\/www.n-able.com\/pt-br#website"},"datePublished":"2021-02-17T17:30:33+00:00","dateModified":"2024-05-14T15:05:46+00:00","description":"Find out how MSPs can use MySQL backup to keep confidential information safe and customers happy.","breadcrumb":{"@id":"https:\/\/www.n-able.com\/pt-br\/blog\/ultimate-guide-mysql-backup#breadcrumb"},"inLanguage":"pt-BR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.n-able.com\/pt-br\/blog\/ultimate-guide-mysql-backup"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.n-able.com\/pt-br\/blog\/ultimate-guide-mysql-backup#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Backup &amp; Disaster Recovery","item":"https:\/\/www.n-able.com\/pt-br\/blog\/category\/backup-disaster-recovery"},{"@type":"ListItem","position":2,"name":"Ultimate Guide: MySQL Backup"}]},{"@type":"WebSite","@id":"https:\/\/www.n-able.com\/pt-br#website","url":"https:\/\/www.n-able.com\/pt-br","name":"N-able","description":"","publisher":{"@id":"https:\/\/www.n-able.com\/pt-br#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.n-able.com\/pt-br?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"pt-BR"},{"@type":"Organization","@id":"https:\/\/www.n-able.com\/pt-br#organization","name":"N-able","url":"https:\/\/www.n-able.com\/pt-br","logo":{"@type":"ImageObject","inLanguage":"pt-BR","@id":"https:\/\/www.n-able.com\/pt-br#\/schema\/logo\/image\/","url":"https:\/\/www.n-able.com\/wp-content\/uploads\/2021\/02\/logo-n-able-vertical-dark.svg","contentUrl":"https:\/\/www.n-able.com\/wp-content\/uploads\/2021\/02\/logo-n-able-vertical-dark.svg","width":"1024","height":"1024","caption":"N-able"},"image":{"@id":"https:\/\/www.n-able.com\/pt-br#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/NableMSP","https:\/\/x.com\/Nable","https:\/\/www.linkedin.com\/company\/n-able","https:\/\/www.youtube.com\/channel\/UClnp77HHg4aME-S-3fWQhFw"]},{"@type":"Person","@id":"https:\/\/www.n-able.com\/pt-br#\/schema\/person\/f46a000e389b6d02bd4b3866e7828a7b","name":"N-able","image":{"@type":"ImageObject","inLanguage":"pt-BR","@id":"https:\/\/secure.gravatar.com\/avatar\/e9c468b7c98137ecdd5508befa660c205a7978133257080a37fb0b1362d53411?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/e9c468b7c98137ecdd5508befa660c205a7978133257080a37fb0b1362d53411?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/e9c468b7c98137ecdd5508befa660c205a7978133257080a37fb0b1362d53411?s=96&d=mm&r=g","caption":"N-able"}}]}},"_links":{"self":[{"href":"https:\/\/www.n-able.com\/pt-br\/wp-json\/wp\/v2\/posts\/6651","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.n-able.com\/pt-br\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.n-able.com\/pt-br\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.n-able.com\/pt-br\/wp-json\/wp\/v2\/users\/24"}],"replies":[{"embeddable":true,"href":"https:\/\/www.n-able.com\/pt-br\/wp-json\/wp\/v2\/comments?post=6651"}],"version-history":[{"count":0,"href":"https:\/\/www.n-able.com\/pt-br\/wp-json\/wp\/v2\/posts\/6651\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.n-able.com\/pt-br\/wp-json\/wp\/v2\/media?parent=6651"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}