{"id":569,"date":"2024-05-17T08:00:00","date_gmt":"2024-05-17T13:00:00","guid":{"rendered":"https:\/\/www.sqltabletalk.com\/?p=569"},"modified":"2024-07-03T21:38:08","modified_gmt":"2024-07-04T02:38:08","slug":"sql-server-2022-red-hat-9-installation","status":"publish","type":"post","link":"https:\/\/www.sqltabletalk.com\/?p=569","title":{"rendered":"SQL Server on Linux: Getting Started with SQL Server 2022 on Red Hat 9"},"content":{"rendered":"<h2>Introduction<\/h2>\n<p>Microsoft\u2019s decision to extend SQL Server to the Linux platform marks a significant shift in its strategy, acknowledging Linux as a vital player in enterprise environments. This move has broadened SQL Server&#8217;s audience and provided more deployment flexibility for organizations. Today, we will explore how to install and configure SQL Server on a Red Hat Enterprise Linux (RHEL) 9 host.<\/p>\n<h2>Why SQL Server on Linux?<\/h2>\n<p>The demand for high-performance, secure, and reliable database systems is prevalent in many enterprise settings, and Linux is a popular choice due to its stability and performance. By offering SQL Server on Linux, Microsoft provides businesses with the opportunity to leverage SQL Server\u2019s capabilities on their preferred operating system.<\/p>\n<h2>Features Not Available on Linux<\/h2>\n<p>While SQL Server on Linux offers a comprehensive set of features, certain capabilities such as Reporting Services and Analysis Services remain exclusive to the Windows environment. It\u2019s essential to be aware of these limitations when considering SQL Server for Linux. For a detailed list of features not available on Linux, refer to Microsoft\u2019s official documentation.<\/p>\n<h2>Choosing Between Red Hat and Ubuntu Server for SQL Server on Linux<\/h2>\n<p>When deciding between Red Hat and Ubuntu Server for hosting SQL Server on Linux, consider the following factors:<\/p>\n<h3>Red Hat Enterprise Linux (RHEL)<\/h3>\n<ul>\n<li><strong>Enterprise Support:<\/strong> RHEL offers extensive commercial support, making it a preferred choice for large enterprises that require robust, professional assistance.<\/li>\n<li><strong>Stability and Security:<\/strong> Known for its stability and security, RHEL is designed for enterprise environments where reliability is crucial.<\/li>\n<li><strong>Ecosystem Integration:<\/strong> RHEL integrates well with other enterprise solutions from Red Hat, offering a comprehensive ecosystem for IT operations.<\/li>\n<li><strong>Cost:<\/strong> RHEL is a subscription-based OS, which can be a consideration for budget-conscious organizations.<\/li>\n<\/ul>\n<h3>Ubuntu Server<\/h3>\n<ul>\n<li><strong>Ease of Use:<\/strong> Ubuntu Server is known for its user-friendly nature, making it easier for newcomers to Linux to get started.<\/li>\n<li><strong>Community Support:<\/strong> Ubuntu has a strong community support network, which can be beneficial for troubleshooting and finding resources.<\/li>\n<li><strong>Cost:<\/strong> Ubuntu Server is free and open-source, which can be a significant advantage for smaller businesses or those looking to reduce costs.<\/li>\n<li><strong>Flexibility:<\/strong> It is versatile and can be used in various environments, from development to production.<\/li>\n<\/ul>\n<p>Choosing between Red Hat and Ubuntu Server depends on your specific needs. If you prioritize enterprise-level support, stability, and security, RHEL is a strong choice. On the other hand, if ease of use, community support, and cost are more critical, Ubuntu Server might be the better option.<\/p>\n<p>This post is a tutorial for installing SQL Server on Red Hat Enterprise Linux 9. If you would prefer to use Ubuntu instead of Red Hat, please follow my <a href=\"https:\/\/www.sqltabletalk.com\/?p=72\">Ubuntu tutorial<\/a> here.<\/p>\n<h2>Installing SQL Server on Red Hat 9<\/h2>\n<p>Red Hat Enterprise Linux (RHEL) is a widely used and stable Linux distribution for enterprise server environments. Here\u2019s how you can install SQL Server on Red Hat 9:<\/p>\n<ol>\n<li><strong>Add Microsoft\u2019s Repository:<\/strong>\n<pre><code>sudo su\ncurl -o \/etc\/yum.repos.d\/mssql-server.repo https:\/\/packages.microsoft.com\/config\/rhel\/9\/mssql-server-2022.repo\nexit<\/code><\/pre>\n<\/li>\n<li><strong>Update the package list:<\/strong>\n<pre><code>sudo dnf update<\/code><\/pre>\n<\/li>\n<li><strong>Install SQL Server:<\/strong>\n<pre><code>sudo dnf install -y mssql-server<\/code><\/pre>\n<\/li>\n<li><strong>Configure SQL Server:<\/strong>\n<pre><code>sudo \/opt\/mssql\/bin\/mssql-conf setup<\/code><\/pre>\n<\/li>\n<li><strong>Start SQL Server:<\/strong>\n<pre><code>sudo systemctl start mssql-server<\/code><\/pre>\n<\/li>\n<\/ol>\n<h2>Installing SQL Server Tools on Red Hat 9<\/h2>\n<p>To effectively manage and interact with SQL Server on Red Hat 9, you\u2019ll need to install the SQL Server tools. These tools include command-line utilities and graphical interfaces that simplify database administration and development tasks.<\/p>\n<ol>\n<li><strong>Install the SQL Server Command-Line Tools (sqlcmd and bcp):<\/strong>\n<pre><code>sudo su\ncurl -o \/etc\/yum.repos.d\/msprod.repo https:\/\/packages.microsoft.com\/config\/rhel\/9\/prod.repo\nexit<\/code><\/pre>\n<\/li>\n<li><strong>Update the package list and install the tools and the UNIX ODBC driver:<\/strong>\n<pre><code>sudo dnf update -y &amp;&amp; sudo dnf install -y mssql-tools unixODBC-devel<\/code><\/pre>\n<\/li>\n<li><strong>Add the SQL Server Tools to Your PATH:<\/strong>\n<pre><code>echo 'export PATH=\"$PATH:\/opt\/mssql-tools\/bin\"' &gt;&gt; ~\/.bashrc\nsource ~\/.bash_profile<\/code><\/pre>\n<\/li>\n<\/ol>\n<h2>Basic SQL Server Configuration on Linux<\/h2>\n<p>Once installed, there are several configuration settings you can adjust to optimize SQL Server for your environment. SQL Server will need to be restarted for any configuration changes to take effect. Here are a few examples:<\/p>\n<ul>\n<li><strong>Enabling the SQL Server Agent:<\/strong>\n<pre><code>sudo \/opt\/mssql\/bin\/mssql-conf set sqlagent.enabled true<\/code><\/pre>\n<\/li>\n<li><strong>Configuring SQL Server Max Memory to 16GB:<\/strong>\n<pre><code>sudo \/opt\/mssql\/bin\/mssql-conf set memory.memorylimitmb 16000<\/code><\/pre>\n<\/li>\n<li><strong>Adjusting Worker Threads:<\/strong>\n<pre><code>sudo \/opt\/mssql\/bin\/mssql-conf set hadr.num_worker_threads 300<\/code><\/pre>\n<\/li>\n<li><strong>Restart for configuration changes to take effect:<\/strong>\n<pre><code>sudo systemctl restart mssql-server<\/code><\/pre>\n<\/li>\n<\/ul>\n<h2>Connecting to SQL Server using sqlcmd<\/h2>\n<p>Once you have SQL Server and the SQL Server tools installed on your Red Hat 9 system, you can use the command-line tool <code>sqlcmd<\/code> to connect to SQL Server and execute SQL queries. Here\u2019s how:<\/p>\n<ol>\n<li><strong>Open your terminal:<\/strong>Launch your terminal on Red Hat 9.<\/li>\n<li><strong>Connect to SQL Server:<\/strong>Use the following command to connect to SQL Server. Replace <code>&lt;username&gt;<\/code> and <code>&lt;password&gt;<\/code> with your SQL Server credentials:\n<pre><code>sqlcmd -S localhost -U &lt;username&gt; -P &lt;password&gt;<\/code><\/pre>\n<\/li>\n<li><strong>Execute SQL Queries:<\/strong>Once connected, you can execute SQL queries directly from the command line. For example:\n<pre><code>SELECT * FROM your_table;<\/code><\/pre>\n<\/li>\n<li><strong>Exit sqlcmd:<\/strong>To exit sqlcmd, simply type:\n<pre><code>QUIT<\/code><\/pre>\n<\/li>\n<\/ol>\n<p>Using sqlcmd is a convenient way to interact with your SQL Server database from the command line on Red Hat Linux.<\/p>\n<h2>Conclusion<\/h2>\n<p>The integration of SQL Server with Linux exemplifies the industry\u2019s move towards flexibility and choice. With SQL Server on Linux, businesses have another robust option for their database management needs. SQL Server is an excellent enterprise database management system on both Windows and Linux platforms. Combining SQL Server and RHEL offers a robust, performant, and secure environment you can trust to keep your data safe and accessible.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Learn how to install and configure SQL Server 2022 on Red Hat Enterprise Linux (RHEL) 9. This guide provides step-by-step instructions for adding the Microsoft repository, installing SQL Server and its tools, and performing basic configurations to optimize SQL Server for enterprise environments on RHEL 9.<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[40,20,21],"tags":[128,19,25,26],"class_list":["post-569","post","type-post","status-publish","format-standard","hentry","category-sql-server-2022","category-sql-server-on-linux","category-tutorial","tag-installation","tag-linux","tag-red-hat","tag-rhel"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Installing and Configuring SQL Server 2022 on Red Hat 9<\/title>\n<meta name=\"description\" content=\"Learn how to install and configure SQL Server 2022 on Red Hat Enterprise Linux (RHEL) 9. This guide provides step-by-step instructions for adding the Microsoft repository, installing SQL Server and its tools, and performing basic configurations to optimize SQL Server for enterprise environments on RHEL 9.\" \/>\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.sqltabletalk.com\/?p=569\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Installing and Configuring SQL Server 2022 on Red Hat 9\" \/>\n<meta property=\"og:description\" content=\"Learn how to install and configure SQL Server 2022 on Red Hat Enterprise Linux (RHEL) 9. This guide provides step-by-step instructions for adding the Microsoft repository, installing SQL Server and its tools, and performing basic configurations to optimize SQL Server for enterprise environments on RHEL 9.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.sqltabletalk.com\/?p=569\" \/>\n<meta property=\"og:site_name\" content=\"SQL Table Talk\" \/>\n<meta property=\"article:published_time\" content=\"2024-05-17T13:00:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-07-04T02:38:08+00:00\" \/>\n<meta name=\"author\" content=\"Stephen Planck\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Stephen Planck\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.sqltabletalk.com\/?p=569#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.sqltabletalk.com\/?p=569\"},\"author\":{\"name\":\"Stephen Planck\",\"@id\":\"https:\/\/www.sqltabletalk.com\/#\/schema\/person\/1947e42a9438bccd91691d8b791888e0\"},\"headline\":\"SQL Server on Linux: Getting Started with SQL Server 2022 on Red Hat 9\",\"datePublished\":\"2024-05-17T13:00:00+00:00\",\"dateModified\":\"2024-07-04T02:38:08+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.sqltabletalk.com\/?p=569\"},\"wordCount\":823,\"commentCount\":2,\"publisher\":{\"@id\":\"https:\/\/www.sqltabletalk.com\/#\/schema\/person\/1947e42a9438bccd91691d8b791888e0\"},\"keywords\":[\"Installation\",\"Linux\",\"Red Hat\",\"RHEL\"],\"articleSection\":[\"SQL Server 2022\",\"SQL Server on Linux\",\"Tutorial\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.sqltabletalk.com\/?p=569#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.sqltabletalk.com\/?p=569\",\"url\":\"https:\/\/www.sqltabletalk.com\/?p=569\",\"name\":\"Installing and Configuring SQL Server 2022 on Red Hat 9\",\"isPartOf\":{\"@id\":\"https:\/\/www.sqltabletalk.com\/#website\"},\"datePublished\":\"2024-05-17T13:00:00+00:00\",\"dateModified\":\"2024-07-04T02:38:08+00:00\",\"description\":\"Learn how to install and configure SQL Server 2022 on Red Hat Enterprise Linux (RHEL) 9. This guide provides step-by-step instructions for adding the Microsoft repository, installing SQL Server and its tools, and performing basic configurations to optimize SQL Server for enterprise environments on RHEL 9.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.sqltabletalk.com\/?p=569#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.sqltabletalk.com\/?p=569\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.sqltabletalk.com\/?p=569#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.sqltabletalk.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"SQL Server on Linux: Getting Started with SQL Server 2022 on Red Hat 9\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.sqltabletalk.com\/#website\",\"url\":\"https:\/\/www.sqltabletalk.com\/\",\"name\":\"SQL Table Talk\",\"description\":\"Breaking Down SQL Server, One Post at a Time.\",\"publisher\":{\"@id\":\"https:\/\/www.sqltabletalk.com\/#\/schema\/person\/1947e42a9438bccd91691d8b791888e0\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.sqltabletalk.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/www.sqltabletalk.com\/#\/schema\/person\/1947e42a9438bccd91691d8b791888e0\",\"name\":\"Stephen Planck\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.sqltabletalk.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/64181114edc3de3d99072c049bcec024f025c9536dc89fc8ff1bac58976ca81e?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/64181114edc3de3d99072c049bcec024f025c9536dc89fc8ff1bac58976ca81e?s=96&d=mm&r=g\",\"caption\":\"Stephen Planck\"},\"logo\":{\"@id\":\"https:\/\/www.sqltabletalk.com\/#\/schema\/person\/image\/\"},\"sameAs\":[\"https:\/\/dexterwiki.com\",\"https:\/\/www.linkedin.com\/in\/stephen-planck-4611b692?trk=people-guest_people_search-card&challengeId=AQErf8gbBmcVMwAAAYsyIsxO-0UvU8z7cHrBpZoo_n3xt9qEKpRN5B_jd_LmAMu-OfeArkQ7GDjobJ2uRoQQV35EQdh_rR6kxA&submissionId=09de7067-c335-8e17-40b8-8dc32b60ed6c&challengeSource=AgEcUCw35zpPmAAAAYsyI4vAWhJTV7Nt4vZYKc3V1qiDBpCkKgUvtlOBgYXcE84&challegeType=AgE_wZiTT09IAQAAAYsyI4vDmNvbZIYe6XHju5V2bXVvM3IVxnJslgY&memberId=AgESFTkUShzs_gAAAYsyI4vGYk0Gic1uc5kB6cKOABA26Gw&recognizeDevice=AgHdSZyUSI5CEwAAAYsyI4vKd_koF9JgpsCJShT8QfbK1QMiv8SI\",\"https:\/\/www.youtube.com\/linuxmate\"],\"url\":\"https:\/\/www.sqltabletalk.com\/?author=1\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Installing and Configuring SQL Server 2022 on Red Hat 9","description":"Learn how to install and configure SQL Server 2022 on Red Hat Enterprise Linux (RHEL) 9. This guide provides step-by-step instructions for adding the Microsoft repository, installing SQL Server and its tools, and performing basic configurations to optimize SQL Server for enterprise environments on RHEL 9.","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.sqltabletalk.com\/?p=569","og_locale":"en_US","og_type":"article","og_title":"Installing and Configuring SQL Server 2022 on Red Hat 9","og_description":"Learn how to install and configure SQL Server 2022 on Red Hat Enterprise Linux (RHEL) 9. This guide provides step-by-step instructions for adding the Microsoft repository, installing SQL Server and its tools, and performing basic configurations to optimize SQL Server for enterprise environments on RHEL 9.","og_url":"https:\/\/www.sqltabletalk.com\/?p=569","og_site_name":"SQL Table Talk","article_published_time":"2024-05-17T13:00:00+00:00","article_modified_time":"2024-07-04T02:38:08+00:00","author":"Stephen Planck","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Stephen Planck","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.sqltabletalk.com\/?p=569#article","isPartOf":{"@id":"https:\/\/www.sqltabletalk.com\/?p=569"},"author":{"name":"Stephen Planck","@id":"https:\/\/www.sqltabletalk.com\/#\/schema\/person\/1947e42a9438bccd91691d8b791888e0"},"headline":"SQL Server on Linux: Getting Started with SQL Server 2022 on Red Hat 9","datePublished":"2024-05-17T13:00:00+00:00","dateModified":"2024-07-04T02:38:08+00:00","mainEntityOfPage":{"@id":"https:\/\/www.sqltabletalk.com\/?p=569"},"wordCount":823,"commentCount":2,"publisher":{"@id":"https:\/\/www.sqltabletalk.com\/#\/schema\/person\/1947e42a9438bccd91691d8b791888e0"},"keywords":["Installation","Linux","Red Hat","RHEL"],"articleSection":["SQL Server 2022","SQL Server on Linux","Tutorial"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.sqltabletalk.com\/?p=569#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.sqltabletalk.com\/?p=569","url":"https:\/\/www.sqltabletalk.com\/?p=569","name":"Installing and Configuring SQL Server 2022 on Red Hat 9","isPartOf":{"@id":"https:\/\/www.sqltabletalk.com\/#website"},"datePublished":"2024-05-17T13:00:00+00:00","dateModified":"2024-07-04T02:38:08+00:00","description":"Learn how to install and configure SQL Server 2022 on Red Hat Enterprise Linux (RHEL) 9. This guide provides step-by-step instructions for adding the Microsoft repository, installing SQL Server and its tools, and performing basic configurations to optimize SQL Server for enterprise environments on RHEL 9.","breadcrumb":{"@id":"https:\/\/www.sqltabletalk.com\/?p=569#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.sqltabletalk.com\/?p=569"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.sqltabletalk.com\/?p=569#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.sqltabletalk.com\/"},{"@type":"ListItem","position":2,"name":"SQL Server on Linux: Getting Started with SQL Server 2022 on Red Hat 9"}]},{"@type":"WebSite","@id":"https:\/\/www.sqltabletalk.com\/#website","url":"https:\/\/www.sqltabletalk.com\/","name":"SQL Table Talk","description":"Breaking Down SQL Server, One Post at a Time.","publisher":{"@id":"https:\/\/www.sqltabletalk.com\/#\/schema\/person\/1947e42a9438bccd91691d8b791888e0"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.sqltabletalk.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/www.sqltabletalk.com\/#\/schema\/person\/1947e42a9438bccd91691d8b791888e0","name":"Stephen Planck","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.sqltabletalk.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/64181114edc3de3d99072c049bcec024f025c9536dc89fc8ff1bac58976ca81e?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/64181114edc3de3d99072c049bcec024f025c9536dc89fc8ff1bac58976ca81e?s=96&d=mm&r=g","caption":"Stephen Planck"},"logo":{"@id":"https:\/\/www.sqltabletalk.com\/#\/schema\/person\/image\/"},"sameAs":["https:\/\/dexterwiki.com","https:\/\/www.linkedin.com\/in\/stephen-planck-4611b692?trk=people-guest_people_search-card&challengeId=AQErf8gbBmcVMwAAAYsyIsxO-0UvU8z7cHrBpZoo_n3xt9qEKpRN5B_jd_LmAMu-OfeArkQ7GDjobJ2uRoQQV35EQdh_rR6kxA&submissionId=09de7067-c335-8e17-40b8-8dc32b60ed6c&challengeSource=AgEcUCw35zpPmAAAAYsyI4vAWhJTV7Nt4vZYKc3V1qiDBpCkKgUvtlOBgYXcE84&challegeType=AgE_wZiTT09IAQAAAYsyI4vDmNvbZIYe6XHju5V2bXVvM3IVxnJslgY&memberId=AgESFTkUShzs_gAAAYsyI4vGYk0Gic1uc5kB6cKOABA26Gw&recognizeDevice=AgHdSZyUSI5CEwAAAYsyI4vKd_koF9JgpsCJShT8QfbK1QMiv8SI","https:\/\/www.youtube.com\/linuxmate"],"url":"https:\/\/www.sqltabletalk.com\/?author=1"}]}},"jetpack_featured_media_url":"","jetpack-related-posts":[],"jetpack_sharing_enabled":true,"jetpack_likes_enabled":true,"_links":{"self":[{"href":"https:\/\/www.sqltabletalk.com\/index.php?rest_route=\/wp\/v2\/posts\/569","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.sqltabletalk.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.sqltabletalk.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.sqltabletalk.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.sqltabletalk.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=569"}],"version-history":[{"count":2,"href":"https:\/\/www.sqltabletalk.com\/index.php?rest_route=\/wp\/v2\/posts\/569\/revisions"}],"predecessor-version":[{"id":653,"href":"https:\/\/www.sqltabletalk.com\/index.php?rest_route=\/wp\/v2\/posts\/569\/revisions\/653"}],"wp:attachment":[{"href":"https:\/\/www.sqltabletalk.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=569"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.sqltabletalk.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=569"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.sqltabletalk.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=569"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}