{"id":5234,"date":"2016-09-06T07:50:32","date_gmt":"2016-09-06T07:50:32","guid":{"rendered":"https:\/\/cpanelplesk.com\/wp62\/?p=5234"},"modified":"2021-02-03T07:32:13","modified_gmt":"2021-02-03T07:32:13","slug":"install-upgrade-mariadb-10-1-12-centos-rhel-fedora","status":"publish","type":"post","link":"https:\/\/cpanelplesk.com\/wp62\/install-upgrade-mariadb-10-1-12-centos-rhel-fedora\/","title":{"rendered":"How to Install &#038; Upgrade MariaDB 10.1.12 on Centos, RHEL &#038; Fedora"},"content":{"rendered":"<p>MariaDB is a drop-in alternative for MySQL. MariaDB is an opensource Relational Database Management System (RDBMS) which supports database access.<!--more-->It is easy to set up, provides many speed and efficiency developments, and is not hard to integrate into most MySQL deployments. MariaDB provides more storage engines than MySQL, such as Cassandra (NoSQL, in MariaDB Edition 10), XtraDB (drop-in alternative for InnoDB), and OQGRAPH (in MariaDB Edition 10).<\/p>\n<h2>Prerequisities<\/h2>\n<ol>\n<li>These guidelines are intended for installing MariaDB on CentOS, RHEL &amp; Fedora<\/li>\n<li>SSH client like <a href=\"https:\/\/cpanelplesk.com\/wp62\/using-putty-connect-server-ssh-windows\/\">Putty<\/a> and proper knowledge to use it.<\/li>\n<li>Some basic knowledge about common Linux commands.<\/li>\n<li>20 minutes of your time with a cup of tea or coffee as always.<\/li>\n<\/ol>\n<h2>Step 1 &#8211; Add MariaDB YUM Repositories<\/h2>\n<p>By default MariaDB 5.x Series included all the Linux distributions and removed<a href=\"https:\/\/cpanelplesk.com\/wp62\/how-to-uninstall-mysql-completely-from-linux-system\/\"> MySQL<\/a> but they didn\u2019t include MariaDB 10.x series. Use the below instructions to add MariaDB Repositories on <a href=\"https:\/\/cpanelplesk.com\/wp62\/install-lnmp-centos-7-2\/\">CentOS<\/a>, RHEL &amp; <a href=\"https:\/\/cpanelplesk.com\/wp62\/keep-systems-date-centos-rhel-fedora\/\">Fedora systems<\/a>.<br \/>\nFirst Create file \/etc\/yum.repos.d\/MariaDB.repo then Copy and paste it.<br \/>\n<strong>For CentOS 7 Systems\u00a0<\/strong><\/p>\n<div class=\"command-sh\">\n<pre>[mariadb]\r\nname = MariaDB\r\nbaseurl = http:\/\/yum.mariadb.org\/10.1\/centos7-amd64\r\ngpgkey=https:\/\/yum.mariadb.org\/RPM-GPG-KEY-MariaDB\r\ngpgcheck=1<\/pre>\n<\/div>\n<p><strong>For CentOS 6 Systems<\/strong><\/p>\n<div class=\"command-sh\">\n<pre>[mariadb]\r\nname = MariaDB\r\nbaseurl = http:\/\/yum.mariadb.org\/10.1\/centos6-amd64\r\ngpgkey=https:\/\/yum.mariadb.org\/RPM-GPG-KEY-MariaDB\r\ngpgcheck=1<\/pre>\n<\/div>\n<p>For RHEL Systems : First Create file \/etc\/<a href=\"https:\/\/cpanelplesk.com\/wp62\/how-to-fix-yum-duplicate-packages-or-broken-dependencies-2\/\">yum.repos<\/a>.d\/MariaDB.repo then Copy and paste it.<br \/>\n<strong>For RHEL 7 Systems<\/strong><\/p>\n<div class=\"command-sh\">\n<pre>[mariadb]\r\nname = MariaDB\r\nbaseurl = http:\/\/yum.mariadb.org\/10.1\/rhel7-amd64\r\ngpgkey=https:\/\/yum.mariadb.org\/RPM-GPG-KEY-MariaDB\r\ngpgcheck=1<\/pre>\n<\/div>\n<p><strong>For RHEL 6 Systems<\/strong><\/p>\n<div class=\"command-sh\">\n<pre>[mariadb]\r\nname = MariaDB\r\nbaseurl = http:\/\/yum.mariadb.org\/10.1\/rhel6-amd64\r\ngpgkey=https:\/\/yum.mariadb.org\/RPM-GPG-KEY-MariaDB\r\ngpgcheck=1<\/pre>\n<\/div>\n<p>For Fedora Systems : First Create file \/etc\/yum.repos.d\/MariaDB.repo then Copy and paste it.<br \/>\n<strong>For Fedora 23 Systems<\/strong><\/p>\n<div class=\"command-sh\">\n<pre>[mariadb]\r\nname = MariaDB\r\nbaseurl = http:\/\/yum.mariadb.org\/10.1\/fedora23-amd64\r\ngpgkey=https:\/\/yum.mariadb.org\/RPM-GPG-KEY-MariaDB\r\ngpgcheck=1<\/pre>\n<\/div>\n<p><strong>For Fedora 22 Systems<\/strong><\/p>\n<div class=\"command-sh\">\n<pre>[mariadb]\r\nname = MariaDB\r\nbaseurl = http:\/\/yum.mariadb.org\/10.1\/fedora22-amd64\r\ngpgkey=https:\/\/yum.mariadb.org\/RPM-GPG-KEY-MariaDB\r\ngpgcheck=1<\/pre>\n<\/div>\n<h2>Step 2- Install MariaDB<\/h2>\n<p>Once you have added MariaDB repository, just run the below command to install MariaDB 10 on your systems.<br \/>\n<strong>For RHEL\/CentOS\/Fedora 21 &amp; older Systems<\/strong><\/p>\n<div class=\"command-sh\">\n<pre>yum install MariaDB-server MariaDB-client<\/pre>\n<\/div>\n<p><strong>For RHEL\/CentOS\/Fedora 22 &amp; later Systems<\/strong><\/p>\n<div class=\"command-sh\">\n<pre>dnf install MariaDB-server MariaDB-client<\/pre>\n<\/div>\n<h2>Step 3- Start MariaDB Service<\/h2>\n<p>After the installation completes,Use the below command to start MariaDB service for further usage.<\/p>\n<div class=\"command-sh\">\n<pre>For SysVinit Systems\r\nservice mysql start\r\nFor systemd Systems \r\nsystemctl start mysql.service<\/pre>\n<\/div>\n<p>Make sure that <a href=\"https:\/\/cpanelplesk.com\/wp62\/how-to-install-mysql-server-on-ubuntu\/\">MySQL<\/a>\/MariaDB starts at boot:<\/p>\n<div class=\"command-sh\">\n<pre>systemctl enable mariadb<\/pre>\n<\/div>\n<h2>Step 4- How to Secure MariaDB<\/h2>\n<p>By default MariaDB don&#8217;t have any root password and it can cause the security issue. So, to secure MariaDB installation run the below command , This will set root password for MariaDB also set other permission and will remove test databases too.<\/p>\n<div class=\"command-sh\">\n<pre>mysql_secure_installation<\/pre>\n<\/div>\n<h2>Step 5- How to access MariaDB<\/h2>\n<p>You can use the below command to access MariaDB service.<\/p>\n<div class=\"command-sh\">\n<pre>mysql -u root -p<\/pre>\n<\/div>\n<h2>Step 6- View Existing Databases<\/h2>\n<p>Run the following command to view default databases that comes with installation.<\/p>\n<div class=\"command-sh\">\n<pre>show databases;<\/pre>\n<\/div>\n<p>Type quit from command prompt to exit from shell.<\/p>\n<div class=\"command-sh\">\n<pre>quit<\/pre>\n<\/div>\n<h2>Step 7- How to Upgrade MariaDB<\/h2>\n<p>Use the below command to Upgrade MariaDB service for new release<\/p>\n<div class=\"command-sh\">\n<pre>For RHEL\/CentOS\/Fedora 21 &amp; older Systems\r\nyum upgrade MariaDB-server MariaDB-client\r\nFor RHEL\/CentOS\/Fedora 22 &amp; later Systems \r\ndnf upgrade MariaDB-server MariaDB-client<\/pre>\n<\/div>\n<p>So this is all you have to do,\u00a0Also read about <a href=\"https:\/\/cpanelplesk.com\/wp62\/install-and-configure-phpmyadmin-on-a-centos\/\">phpMyAdmin Installation<\/a> and configuration which will help you to manage the MariaDB database on Web.\u00a0Please Give your opinion below if you experience any issues or to discuss your ideas and experiences.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>MariaDB is a drop-in alternative for MySQL. MariaDB is an opensource Relational Database Management System (RDBMS) which supports database access. [&#8230;]<\/p>\n<p><a class=\"understrap-read-more-link\" href=\"https:\/\/cpanelplesk.com\/wp62\/install-upgrade-mariadb-10-1-12-centos-rhel-fedora\/\">Continue Reading&#8230;<\/a><\/p>\n","protected":false},"author":2,"featured_media":5235,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[14],"tags":[],"class_list":["post-5234","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-linux"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to Install &amp; Upgrade MariaDB 10.1.12 on Centos, RHEL &amp; Fedora - cPanel Plesk<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/cpanelplesk.com\/wp62\/install-upgrade-mariadb-10-1-12-centos-rhel-fedora\/\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:title\" content=\"How to Install &amp; Upgrade MariaDB 10.1.12 on Centos, RHEL &amp; Fedora - cPanel Plesk\" \/>\n<meta name=\"twitter:description\" content=\"MariaDB is a drop-in alternative for MySQL. MariaDB is an opensource Relational Database Management System (RDBMS) which supports database access. [...]Continue Reading...\" \/>\n<meta name=\"twitter:image\" content=\"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2016\/09\/Install-Upgrade-MariaDB-10.1.12-on-Centos-RHEL-Fedora.jpg\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Seemab Saleem\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/install-upgrade-mariadb-10-1-12-centos-rhel-fedora\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/install-upgrade-mariadb-10-1-12-centos-rhel-fedora\/\"},\"author\":{\"name\":\"Seemab Saleem\",\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/73d573cc7eaaf6625cf0dbd72191a648\"},\"headline\":\"How to Install &#038; Upgrade MariaDB 10.1.12 on Centos, RHEL &#038; Fedora\",\"datePublished\":\"2016-09-06T07:50:32+00:00\",\"dateModified\":\"2021-02-03T07:32:13+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/install-upgrade-mariadb-10-1-12-centos-rhel-fedora\/\"},\"wordCount\":438,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/c78ae1cf9451a09592fb9697d69c0c13\"},\"image\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/install-upgrade-mariadb-10-1-12-centos-rhel-fedora\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2016\/09\/Install-Upgrade-MariaDB-10.1.12-on-Centos-RHEL-Fedora.jpg\",\"articleSection\":[\"Linux\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/install-upgrade-mariadb-10-1-12-centos-rhel-fedora\/\",\"url\":\"https:\/\/cpanelplesk.com\/wp62\/install-upgrade-mariadb-10-1-12-centos-rhel-fedora\/\",\"name\":\"How to Install & Upgrade MariaDB 10.1.12 on Centos, RHEL & Fedora - cPanel Plesk\",\"isPartOf\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/install-upgrade-mariadb-10-1-12-centos-rhel-fedora\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/install-upgrade-mariadb-10-1-12-centos-rhel-fedora\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2016\/09\/Install-Upgrade-MariaDB-10.1.12-on-Centos-RHEL-Fedora.jpg\",\"datePublished\":\"2016-09-06T07:50:32+00:00\",\"dateModified\":\"2021-02-03T07:32:13+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/install-upgrade-mariadb-10-1-12-centos-rhel-fedora\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/cpanelplesk.com\/wp62\/install-upgrade-mariadb-10-1-12-centos-rhel-fedora\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/install-upgrade-mariadb-10-1-12-centos-rhel-fedora\/#primaryimage\",\"url\":\"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2016\/09\/Install-Upgrade-MariaDB-10.1.12-on-Centos-RHEL-Fedora.jpg\",\"contentUrl\":\"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2016\/09\/Install-Upgrade-MariaDB-10.1.12-on-Centos-RHEL-Fedora.jpg\",\"width\":225,\"height\":225},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/install-upgrade-mariadb-10-1-12-centos-rhel-fedora\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/cpanelplesk.com\/wp62\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install &#038; Upgrade MariaDB 10.1.12 on Centos, RHEL &#038; Fedora\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/#website\",\"url\":\"https:\/\/cpanelplesk.com\/wp62\/\",\"name\":\"cPanel Plesk\",\"description\":\"Blog on famous hosting control panels\",\"publisher\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/c78ae1cf9451a09592fb9697d69c0c13\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/cpanelplesk.com\/wp62\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/c78ae1cf9451a09592fb9697d69c0c13\",\"name\":\"Farooq Omer\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2020\/11\/cpanelplesk.png\",\"contentUrl\":\"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2020\/11\/cpanelplesk.png\",\"width\":300,\"height\":44,\"caption\":\"Farooq Omer\"},\"logo\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/73d573cc7eaaf6625cf0dbd72191a648\",\"name\":\"Seemab Saleem\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/6a87ff2e53b03e6839250e5278a6bd46?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/6a87ff2e53b03e6839250e5278a6bd46?s=96&d=mm&r=g\",\"caption\":\"Seemab Saleem\"},\"description\":\"Linux Server Administrator, Web Hosting engineer. I'm dealing with Linux servers since 2014. I started this blog to share the work i love with the world . let me know if you need any assistance. Thanks!!\",\"sameAs\":[\"https:\/\/cpanelplesk.com\/wp62\"],\"url\":\"https:\/\/cpanelplesk.com\/wp62\/author\/cmb\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Install & Upgrade MariaDB 10.1.12 on Centos, RHEL & Fedora - cPanel Plesk","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:\/\/cpanelplesk.com\/wp62\/install-upgrade-mariadb-10-1-12-centos-rhel-fedora\/","twitter_card":"summary_large_image","twitter_title":"How to Install & Upgrade MariaDB 10.1.12 on Centos, RHEL & Fedora - cPanel Plesk","twitter_description":"MariaDB is a drop-in alternative for MySQL. MariaDB is an opensource Relational Database Management System (RDBMS) which supports database access. [...]Continue Reading...","twitter_image":"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2016\/09\/Install-Upgrade-MariaDB-10.1.12-on-Centos-RHEL-Fedora.jpg","twitter_misc":{"Written by":"Seemab Saleem","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/cpanelplesk.com\/wp62\/install-upgrade-mariadb-10-1-12-centos-rhel-fedora\/#article","isPartOf":{"@id":"https:\/\/cpanelplesk.com\/wp62\/install-upgrade-mariadb-10-1-12-centos-rhel-fedora\/"},"author":{"name":"Seemab Saleem","@id":"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/73d573cc7eaaf6625cf0dbd72191a648"},"headline":"How to Install &#038; Upgrade MariaDB 10.1.12 on Centos, RHEL &#038; Fedora","datePublished":"2016-09-06T07:50:32+00:00","dateModified":"2021-02-03T07:32:13+00:00","mainEntityOfPage":{"@id":"https:\/\/cpanelplesk.com\/wp62\/install-upgrade-mariadb-10-1-12-centos-rhel-fedora\/"},"wordCount":438,"commentCount":0,"publisher":{"@id":"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/c78ae1cf9451a09592fb9697d69c0c13"},"image":{"@id":"https:\/\/cpanelplesk.com\/wp62\/install-upgrade-mariadb-10-1-12-centos-rhel-fedora\/#primaryimage"},"thumbnailUrl":"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2016\/09\/Install-Upgrade-MariaDB-10.1.12-on-Centos-RHEL-Fedora.jpg","articleSection":["Linux"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/cpanelplesk.com\/wp62\/install-upgrade-mariadb-10-1-12-centos-rhel-fedora\/","url":"https:\/\/cpanelplesk.com\/wp62\/install-upgrade-mariadb-10-1-12-centos-rhel-fedora\/","name":"How to Install & Upgrade MariaDB 10.1.12 on Centos, RHEL & Fedora - cPanel Plesk","isPartOf":{"@id":"https:\/\/cpanelplesk.com\/wp62\/#website"},"primaryImageOfPage":{"@id":"https:\/\/cpanelplesk.com\/wp62\/install-upgrade-mariadb-10-1-12-centos-rhel-fedora\/#primaryimage"},"image":{"@id":"https:\/\/cpanelplesk.com\/wp62\/install-upgrade-mariadb-10-1-12-centos-rhel-fedora\/#primaryimage"},"thumbnailUrl":"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2016\/09\/Install-Upgrade-MariaDB-10.1.12-on-Centos-RHEL-Fedora.jpg","datePublished":"2016-09-06T07:50:32+00:00","dateModified":"2021-02-03T07:32:13+00:00","breadcrumb":{"@id":"https:\/\/cpanelplesk.com\/wp62\/install-upgrade-mariadb-10-1-12-centos-rhel-fedora\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/cpanelplesk.com\/wp62\/install-upgrade-mariadb-10-1-12-centos-rhel-fedora\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cpanelplesk.com\/wp62\/install-upgrade-mariadb-10-1-12-centos-rhel-fedora\/#primaryimage","url":"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2016\/09\/Install-Upgrade-MariaDB-10.1.12-on-Centos-RHEL-Fedora.jpg","contentUrl":"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2016\/09\/Install-Upgrade-MariaDB-10.1.12-on-Centos-RHEL-Fedora.jpg","width":225,"height":225},{"@type":"BreadcrumbList","@id":"https:\/\/cpanelplesk.com\/wp62\/install-upgrade-mariadb-10-1-12-centos-rhel-fedora\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/cpanelplesk.com\/wp62\/"},{"@type":"ListItem","position":2,"name":"How to Install &#038; Upgrade MariaDB 10.1.12 on Centos, RHEL &#038; Fedora"}]},{"@type":"WebSite","@id":"https:\/\/cpanelplesk.com\/wp62\/#website","url":"https:\/\/cpanelplesk.com\/wp62\/","name":"cPanel Plesk","description":"Blog on famous hosting control panels","publisher":{"@id":"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/c78ae1cf9451a09592fb9697d69c0c13"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/cpanelplesk.com\/wp62\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/c78ae1cf9451a09592fb9697d69c0c13","name":"Farooq Omer","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/image\/","url":"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2020\/11\/cpanelplesk.png","contentUrl":"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2020\/11\/cpanelplesk.png","width":300,"height":44,"caption":"Farooq Omer"},"logo":{"@id":"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/image\/"}},{"@type":"Person","@id":"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/73d573cc7eaaf6625cf0dbd72191a648","name":"Seemab Saleem","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/6a87ff2e53b03e6839250e5278a6bd46?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/6a87ff2e53b03e6839250e5278a6bd46?s=96&d=mm&r=g","caption":"Seemab Saleem"},"description":"Linux Server Administrator, Web Hosting engineer. I'm dealing with Linux servers since 2014. I started this blog to share the work i love with the world . let me know if you need any assistance. Thanks!!","sameAs":["https:\/\/cpanelplesk.com\/wp62"],"url":"https:\/\/cpanelplesk.com\/wp62\/author\/cmb\/"}]}},"_links":{"self":[{"href":"https:\/\/cpanelplesk.com\/wp62\/wp-json\/wp\/v2\/posts\/5234","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/cpanelplesk.com\/wp62\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/cpanelplesk.com\/wp62\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/cpanelplesk.com\/wp62\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/cpanelplesk.com\/wp62\/wp-json\/wp\/v2\/comments?post=5234"}],"version-history":[{"count":0,"href":"https:\/\/cpanelplesk.com\/wp62\/wp-json\/wp\/v2\/posts\/5234\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/cpanelplesk.com\/wp62\/wp-json\/wp\/v2\/media\/5235"}],"wp:attachment":[{"href":"https:\/\/cpanelplesk.com\/wp62\/wp-json\/wp\/v2\/media?parent=5234"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/cpanelplesk.com\/wp62\/wp-json\/wp\/v2\/categories?post=5234"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/cpanelplesk.com\/wp62\/wp-json\/wp\/v2\/tags?post=5234"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}