{"id":399,"date":"2021-07-23T12:29:08","date_gmt":"2021-07-23T12:29:08","guid":{"rendered":"https:\/\/ssdsunucum.com\/blog\/the-mysqldump-stream\/"},"modified":"2021-07-23T12:29:08","modified_gmt":"2021-07-23T12:29:08","slug":"the-mysqldump-stream","status":"publish","type":"post","link":"https:\/\/ssdsunucum.com\/blog\/the-mysqldump-stream\/","title":{"rendered":"The MysqlDump Stream"},"content":{"rendered":"<\/p>\n<div class=\"col-md-9\">\n<div class=\"flex-column flex-md-row article-header\">\n<div id=\"versioned-article-header\">\n<p class=\"valid-version-info\"><em>Valid for versions 88 through the latest version<\/em><\/p>\n<\/div>\n<div id=\"version-select-group\" aria-label=\"select versions\">\n<h4>Version:<\/h4>\n<h4>82<\/h4>\n<h4>88<\/h4>\n<\/div><\/div>\n<hr>\n<h2 id=\"overview\">Overview<\/h2>\n<div class=\"callout callout-danger\">\n<div class=\"callout-heading\">Warning:<\/div>\n<div class=\"callout-content\">\n<p>The MysqlDump stream is experimental. The behavior of this endpoint may change in a future version of cPanel &#038; WHM.<\/p>\n<\/p><\/div>\n<\/div>\n<p>The MysqlDump stream allows you to produce a dump of a MySQL\u00ae database via WebSocket from any computer that has access to the server. You do not need to log in to your server. You can run a command to request that your server sends you the dump output. You can then use the dump output to create a backup.<\/p>\n<h2 id=\"using-the-mysqldump-stream\">Using the MysqlDump stream<\/h2>\n<p>To stream a dump output from cPanel or WHM, call it via any WebSocket client. You will also need an API token or authenticate via Basic HTTP Authentication to use the endpoint.<\/p>\n<h4 id=\"use-basic-http-authentication\">Use Basic HTTP Authentication<\/h4>\n<p>To use Basic HTTP Authentication, follow the directions in our Guide to API Authentication &#8211; Username and Password Authentication documentation. For more information about Basic HTTP Authentication, read the RFC 7617 documentation.<\/p>\n<h4 id=\"generate-an-api-token-in-cpanel\">Generate an API token in cPanel<\/h4>\n<p>To generate a cPanel API token, use cPanel\u2019s <em>Manage API Tokens<\/em> interface (<em>cPanel &gt;&gt; Home &gt;&gt; Security &gt;&gt; Manage API Tokens<\/em>). You can also use the UAPI <code>Tokens::create_full_access<\/code> function. For more information, read our How to Use cPanel API Tokens documentation.<\/p>\n<h4 id=\"generate-an-api-token-in-whm\">Generate an API token in WHM<\/h4>\n<p>To generate a WHM API token, use WHM\u2019s <em>Manage API Tokens<\/em> interface (<em>WHM &gt;&gt; Home &gt;&gt; Development &gt;&gt; Manage API Tokens<\/em>). You can also use the WHM API 1 <code>api_token_create<\/code> function. For more information, read our Guide to API Authentication &#8211; API Tokens in WHM documentation.<\/p>\n<div class=\"callout callout-warning\">\n<div class=\"callout-heading\">Important:<\/div>\n<div class=\"callout-content\">\n<ul>\n<li>\n<p>Only <code>root<\/code> or <code>root<\/code>-enabled resellers can access WHM\u2019s MysqlDump stream. For more information, read our <em>Edit Reseller Nameserver and Privileges<\/em> interface (<em>WHM &gt;&gt; Home &gt;&gt; Resellers &gt;&gt; Edit Reseller Nameservers and Privileges<\/em>) documentation.<\/p>\n<\/li>\n<li>\n<p>In WHM, you can use the MysqlDump stream to dump <strong>any<\/strong> MySQL database. This includes a database <strong>not<\/strong> managed by cPanel &#038; WHM.<\/p>\n<\/li>\n<\/ul><\/div>\n<\/div>\n<h2 id=\"mysqldump-parameters\">MysqlDump parameters<\/h2>\n<p>You <strong>must<\/strong> use the following parameters:<\/p>\n<table>\n<thead>\n<tr>\n<th>Parameters<\/th>\n<th>Description<\/th>\n<th>Example<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td><code>dbname<\/code><\/td>\n<td>The name of the database to dump.<\/td>\n<td><code>dbname=username_example_db<\/code><\/td>\n<\/tr>\n<tr>\n<td><code>character_set<\/code><\/td>\n<td>The value to give the default MySQL character set. Possible values: <\/p>\n<ul>\n<li><code>utf8mb4<\/code><\/li>\n<li><code>utf8<\/code> <\/li>\n<\/ul>\n<div class=\"callout callout-info\">\n<div class=\"callout-heading\">Note:<\/div>\n<div class=\"callout-content\">\n        We recommend that you run <code>utf8mb4<\/code>, and only run <code>utf8<\/code> if you experience a collation error.\n    <\/div>\n<\/div>\n<\/td>\n<td><code>character_set=utf8mb4<\/code><\/td>\n<\/tr>\n<tr>\n<td><code>include_data<\/code><\/td>\n<td>A Boolean value that indicates whether to include table data in the dump.<\/td>\n<td><code>include_data=1<\/code><\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<div class=\"callout callout-warning\">\n<div class=\"callout-heading\">Important:<\/div>\n<div class=\"callout-content\">\n<p>Use the <code>--no-tablespaces<\/code> option if you do <strong>not<\/strong> need to stream tablespace information and receive the following error:\n<\/p>\n<div class=\"highlight\">\n<pre style=\"color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4\"><code class=\"language-BASH\" data-lang=\"BASH\">Incompatible Change: Access to the INFORMATION_SCHEMA.FILES table now requires the PROCESS privilege.<\/code><\/pre>\n<\/div><\/div>\n<\/div>\n<p>The WebSocket close frame will include one of the following status codes:<\/p>\n<ul>\n<li>\n<p><code>1000<\/code> \u2014 Success.<\/p>\n<\/li>\n<li>\n<p><code>1011<\/code> \u2014 General error.<\/p>\n<\/li>\n<li>\n<p><code>4000<\/code> \u2014 Collation error; try a different <code>encoding<\/code> value.<\/p>\n<\/li>\n<\/ul>\n<p>The <code>1011<\/code> and <code>4000<\/code> error codes contain an error ID. You can search the <code>\/usr\/local\/cpanel\/logs\/error_log<\/code> file to locate more information about why the command failed.<\/p>\n<h2 id=\"example\">Example<\/h2>\n<p>To stream a cPanel MySQL dump output via the npm <em>wscat2<\/em> utility, run the following command:<\/p>\n<div class=\"highlight\">\n<pre style=\"color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4\"><code class=\"language-bash\" data-lang=\"bash\">wscat -H <span style=\"color:#e6db74\">'Authorization: cpanel username:GG24IS0019Q8SGI6R5EATJHLMBY3UX6Z'<\/span> -c <span style=\"color:#e6db74\">'wss:\/\/example.com:2083\/websocket\/MysqlDump?dbname=username_db1&include_data=1&encoding=utf8mb4'<\/span> &gt; \/$PATH\/file.sql<\/code><\/pre>\n<\/div>\n<p>In this example:<\/p>\n<ul>\n<li>\n<p><code>username<\/code> represents the account\u2019s username.<\/p>\n<\/li>\n<li>\n<p><code>GG24IS0019Q8SGI6R5EATJHLMBY3UX6Z<\/code> represents the cPanel API Token.<\/p>\n<\/li>\n<li>\n<p><code>example.com<\/code> represents any name in DNS that resolves to the server.<\/p>\n<\/li>\n<li>\n<p><code>username_db1<\/code> represents the database\u2019s name.<\/p>\n<\/li>\n<li>\n<p><code>\/$PATH\/file.sql<\/code> represents the directory and filename for the dump output.<\/p>\n<\/li>\n<\/ul>\n<p>The command will produce output similar to the following example:<\/p>\n<div class=\"collapse-wrapper\">\n<p>        Click to view&#8230;<\/p>\n<div class=\"collapse\" id=\"click-to-view---1626990046684860545\">\n<div class=\"card card-body\">\n<div class=\"highlight\">\n<div style=\"color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4\">\n<table style=\"border-spacing:0;padding:0;margin:0;border:0;width:auto;overflow:auto;display:block;\">\n<tr>\n<td style=\"vertical-align:top;padding:0;margin:0;border:0;\">\n<pre style=\"color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4\"><code class=\"language-BASH\" data-lang=\"BASH\"><span style=\"margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f\"> 1\n<\/span><span style=\"margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f\"> 2\n<\/span><span style=\"margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f\"> 3\n<\/span><span style=\"margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f\"> 4\n<\/span><span style=\"margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f\"> 5\n<\/span><span style=\"margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f\"> 6\n<\/span><span style=\"margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f\"> 7\n<\/span><span style=\"margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f\"> 8\n<\/span><span style=\"margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f\"> 9\n<\/span><span style=\"margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f\">10\n<\/span><span style=\"margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f\">11\n<\/span><span style=\"margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f\">12\n<\/span><span style=\"margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f\">13\n<\/span><span style=\"margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f\">14\n<\/span><span style=\"margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f\">15\n<\/span><span style=\"margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f\">16\n<\/span><span style=\"margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f\">17\n<\/span><span style=\"margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f\">18\n<\/span><span style=\"margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f\">19\n<\/span><span style=\"margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f\">20\n<\/span><span style=\"margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f\">21\n<\/span><span style=\"margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f\">22\n<\/span><span style=\"margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f\">23\n<\/span><span style=\"margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f\">24\n<\/span><span style=\"margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f\">25\n<\/span><span style=\"margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f\">26\n<\/span><span style=\"margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f\">27\n<\/span><span style=\"margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f\">28\n<\/span><span style=\"margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f\">29\n<\/span><span style=\"margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f\">30\n<\/span><span style=\"margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f\">31\n<\/span><span style=\"margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f\">32\n<\/span><span style=\"margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f\">33\n<\/span><span style=\"margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f\">34\n<\/span><span style=\"margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f\">35\n<\/span><span style=\"margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f\">36\n<\/span><span style=\"margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f\">37\n<\/span><span style=\"margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f\">38\n<\/span><span style=\"margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f\">39\n<\/span><span style=\"margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f\">40\n<\/span><span style=\"margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f\">41\n<\/span><span style=\"margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f\">42\n<\/span><span style=\"margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f\">43\n<\/span><span style=\"margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f\">44\n<\/span><span style=\"margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f\">45\n<\/span><span style=\"margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f\">46\n<\/span><span style=\"margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f\">47\n<\/span><span style=\"margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f\">48\n<\/span><span style=\"margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f\">49\n<\/span><span style=\"margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f\">50\n<\/span><span style=\"margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f\">51\n<\/span><span style=\"margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f\">52\n<\/span><span style=\"margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f\">53\n<\/span><span style=\"margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f\">54\n<\/span><span style=\"margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f\">55\n<\/span><span style=\"margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f\">56\n<\/span><span style=\"margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f\">57\n<\/span><span style=\"margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f\">58\n<\/span><span style=\"margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f\">59\n<\/span><span style=\"margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f\">60\n<\/span><span style=\"margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f\">61\n<\/span><span style=\"margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f\">62\n<\/span><span style=\"margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f\">63\n<\/span><span style=\"margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f\">64\n<\/span><span style=\"margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f\">65\n<\/span><span style=\"margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f\">66\n<\/span><span style=\"margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f\">67\n<\/span><span style=\"margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f\">68\n<\/span><\/code><\/pre>\n<\/td>\n<td style=\"vertical-align:top;padding:0;margin:0;border:0;;width:100%\">\n<pre style=\"color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4\"><code class=\"language-BASH\" data-lang=\"BASH\">-- MySQL dump <span style=\"color:#ae81ff\">10<\/span>.13 Distrib <span style=\"color:#ae81ff\">5<\/span>.7.25, <span style=\"color:#66d9ef\">for<\/span> Linux <span style=\"color:#f92672\">(<\/span>x86_64<span style=\"color:#f92672\">)<\/span>\n--\n-- Host: localhost Database: username_db1\n-- ------------------------------------------------------\n-- Server version <span style=\"color:#ae81ff\">5<\/span>.7.26\n\n\/*!40101 SET @OLD_CHARACTER_SET_CLIENT<span style=\"color:#f92672\">=<\/span>@@CHARACTER_SET_CLIENT *\/;\n\/*!40101 SET @OLD_CHARACTER_SET_RESULTS<span style=\"color:#f92672\">=<\/span>@@CHARACTER_SET_RESULTS *\/;\n\/*!40101 SET @OLD_COLLATION_CONNECTION<span style=\"color:#f92672\">=<\/span>@@COLLATION_CONNECTION *\/;\n\/*!40101 SET NAMES utf8mb4 *\/;\n\/*!40103 SET @OLD_TIME_ZONE<span style=\"color:#f92672\">=<\/span>@@TIME_ZONE *\/;\n\/*!40103 SET TIME_ZONE<span style=\"color:#f92672\">=<\/span><span style=\"color:#e6db74\">'+00:00'<\/span> *\/;\n\/*!40014 SET @OLD_UNIQUE_CHECKS<span style=\"color:#f92672\">=<\/span>@@UNIQUE_CHECKS, UNIQUE_CHECKS<span style=\"color:#f92672\">=<\/span><span style=\"color:#ae81ff\">0<\/span> *\/;\n\/*!40014 SET @OLD_FOREIGN_KEY_CHECKS<span style=\"color:#f92672\">=<\/span>@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS<span style=\"color:#f92672\">=<\/span><span style=\"color:#ae81ff\">0<\/span> *\/;\n\/*!40101 SET @OLD_SQL_MODE<span style=\"color:#f92672\">=<\/span>@@SQL_MODE, SQL_MODE<span style=\"color:#f92672\">=<\/span><span style=\"color:#e6db74\">'NO_AUTO_VALUE_ON_ZERO'<\/span> *\/;\n\/*!40111 SET @OLD_SQL_NOTES<span style=\"color:#f92672\">=<\/span>@@SQL_NOTES, SQL_NOTES<span style=\"color:#f92672\">=<\/span><span style=\"color:#ae81ff\">0<\/span> *\/;\n\n--\n-- Current Database: <span style=\"color:#e6db74\">`<\/span>username_db1<span style=\"color:#e6db74\">`<\/span>\n--\n\nCREATE DATABASE \/*!32312 IF NOT EXISTS*\/ <span style=\"color:#e6db74\">`<\/span>username_db1<span style=\"color:#e6db74\">`<\/span> \/*!40100 DEFAULT CHARACTER SET latin1 *\/;\n\nUSE <span style=\"color:#e6db74\">`<\/span>username_db1<span style=\"color:#e6db74\">`<\/span>;\n\n--\n-- Table structure <span style=\"color:#66d9ef\">for<\/span> table <span style=\"color:#e6db74\">`<\/span>example<span style=\"color:#e6db74\">`<\/span>\n--\n\nDROP TABLE IF EXISTS <span style=\"color:#e6db74\">`<\/span>example<span style=\"color:#e6db74\">`<\/span>;\n\/*!40101 SET @saved_cs_client <span style=\"color:#f92672\">=<\/span> @@character_set_client *\/;\n\/*!40101 SET character_set_client <span style=\"color:#f92672\">=<\/span> utf8 *\/;\nCREATE TABLE <span style=\"color:#e6db74\">`<\/span>example<span style=\"color:#e6db74\">`<\/span> <span style=\"color:#f92672\">(<\/span>\n<span style=\"color:#e6db74\">`<\/span>id<span style=\"color:#e6db74\">`<\/span> smallint<span style=\"color:#f92672\">(<\/span><span style=\"color:#ae81ff\">5<\/span><span style=\"color:#f92672\">)<\/span> unsigned NOT NULL AUTO_INCREMENT,\n<span style=\"color:#e6db74\">`<\/span>name<span style=\"color:#e6db74\">`<\/span> varchar<span style=\"color:#f92672\">(<\/span><span style=\"color:#ae81ff\">20<\/span><span style=\"color:#f92672\">)<\/span> NOT NULL,\nPRIMARY KEY <span style=\"color:#f92672\">(<\/span><span style=\"color:#e6db74\">`<\/span>id<span style=\"color:#e6db74\">`<\/span><span style=\"color:#f92672\">)<\/span>\n<span style=\"color:#f92672\">)<\/span> ENGINE<span style=\"color:#f92672\">=<\/span>MyISAM AUTO_INCREMENT<span style=\"color:#f92672\">=<\/span><span style=\"color:#ae81ff\">2<\/span> DEFAULT CHARSET<span style=\"color:#f92672\">=<\/span>latin1;\n\/*!40101 SET character_set_client <span style=\"color:#f92672\">=<\/span> @saved_cs_client *\/;\n\n--\n-- Dumping data <span style=\"color:#66d9ef\">for<\/span> table <span style=\"color:#e6db74\">`<\/span>example<span style=\"color:#e6db74\">`<\/span>\n--\n\nLOCK TABLES <span style=\"color:#e6db74\">`<\/span>example<span style=\"color:#e6db74\">`<\/span> WRITE;\n\/*!40000 ALTER TABLE <span style=\"color:#e6db74\">`<\/span>example<span style=\"color:#e6db74\">`<\/span> DISABLE KEYS *\/;\nINSERT INTO <span style=\"color:#e6db74\">`<\/span>example<span style=\"color:#e6db74\">`<\/span> <span style=\"color:#f92672\">(<\/span><span style=\"color:#e6db74\">`<\/span>id<span style=\"color:#e6db74\">`<\/span>, <span style=\"color:#e6db74\">`<\/span>name<span style=\"color:#e6db74\">`<\/span><span style=\"color:#f92672\">)<\/span> VALUES <span style=\"color:#f92672\">(<\/span><span style=\"color:#ae81ff\">1<\/span>,<span style=\"color:#e6db74\">'Sample data'<\/span><span style=\"color:#f92672\">)<\/span>;\n\/*!40000 ALTER TABLE <span style=\"color:#e6db74\">`<\/span>example<span style=\"color:#e6db74\">`<\/span> ENABLE KEYS *\/;\nUNLOCK TABLES;\n\n--\n-- Dumping events <span style=\"color:#66d9ef\">for<\/span> database <span style=\"color:#e6db74\">'username_db1'<\/span>\n--\n\n--\n-- Dumping routines <span style=\"color:#66d9ef\">for<\/span> database <span style=\"color:#e6db74\">'username_db1'<\/span>\n--\n\/*!40103 SET TIME_ZONE<span style=\"color:#f92672\">=<\/span>@OLD_TIME_ZONE *\/;\n\n\/*!40101 SET SQL_MODE<span style=\"color:#f92672\">=<\/span>@OLD_SQL_MODE *\/;\n\/*!40014 SET FOREIGN_KEY_CHECKS<span style=\"color:#f92672\">=<\/span>@OLD_FOREIGN_KEY_CHECKS *\/;\n\/*!40014 SET UNIQUE_CHECKS<span style=\"color:#f92672\">=<\/span>@OLD_UNIQUE_CHECKS *\/;\n\/*!40101 SET CHARACTER_SET_CLIENT<span style=\"color:#f92672\">=<\/span>@OLD_CHARACTER_SET_CLIENT *\/;\n\/*!40101 SET CHARACTER_SET_RESULTS<span style=\"color:#f92672\">=<\/span>@OLD_CHARACTER_SET_RESULTS *\/;\n\/*!40101 SET COLLATION_CONNECTION<span style=\"color:#f92672\">=<\/span>@OLD_COLLATION_CONNECTION *\/;\n\/*!40111 SET SQL_NOTES<span style=\"color:#f92672\">=<\/span>@OLD_SQL_NOTES *\/;\n\n-- Dump completed on <span style=\"color:#ae81ff\">2019<\/span>-07-10 <span style=\"color:#ae81ff\">9<\/span>:07:57\n<span style=\"color:#ae81ff\">1000<\/span>:<\/code><\/pre>\n<\/td>\n<\/tr>\n<\/table>\n<\/div>\n<\/div><\/div>\n<\/p><\/div>\n<\/div><\/div>\n","protected":false},"excerpt":{"rendered":"<p>Valid for versions 88 through the latest version Version: 82 88 Overview Warning: The MysqlDump stream is experimental. The behavior of this endpoint may change in a future version of cPanel &#038; WHM. The MysqlDump stream allows you to produce a dump of a MySQL\u00ae database via WebSocket from any computer that has access to &hellip;<\/p>\n","protected":false},"author":1,"featured_media":400,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[1],"tags":[],"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/ssdsunucum.com\/blog\/wp-json\/wp\/v2\/posts\/399"}],"collection":[{"href":"https:\/\/ssdsunucum.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/ssdsunucum.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/ssdsunucum.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/ssdsunucum.com\/blog\/wp-json\/wp\/v2\/comments?post=399"}],"version-history":[{"count":0,"href":"https:\/\/ssdsunucum.com\/blog\/wp-json\/wp\/v2\/posts\/399\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/ssdsunucum.com\/blog\/wp-json\/wp\/v2\/media\/400"}],"wp:attachment":[{"href":"https:\/\/ssdsunucum.com\/blog\/wp-json\/wp\/v2\/media?parent=399"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/ssdsunucum.com\/blog\/wp-json\/wp\/v2\/categories?post=399"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/ssdsunucum.com\/blog\/wp-json\/wp\/v2\/tags?post=399"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}