{"id":3217,"date":"2020-06-12T00:01:00","date_gmt":"2020-06-11T18:31:00","guid":{"rendered":"https:\/\/www.24x7serversupport.com\/blog\/?p=3217"},"modified":"2020-06-11T17:52:21","modified_gmt":"2020-06-11T12:22:21","slug":"how-to-install-apache-php-mysql-phpmyadmin-freebsd-11-2-release","status":"publish","type":"post","link":"https:\/\/www.24x7serversupport.com\/blog\/how-to-install-apache-php-mysql-phpmyadmin-freebsd-11-2-release\/","title":{"rendered":"How to Install Apache, PHP, MySQL, phpMyAdmin \u2013 FreeBSD 11.2-Release"},"content":{"rendered":"\n<h3 class=\"wp-block-heading\">How to Install Apache Web Server<\/h3>\n\n\n\n<p>Apache, and all the other packages that we\u2019re going to use here can be installed either via <strong>pkg(8)<\/strong> or via FreeBSD <strong>ports<\/strong>. To install Apache 2.4 via pkg:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo pkg install apache24<\/pre>\n\n\n\n<p>To install Apache 2.4 via ports:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">cd \/usr\/ports\/www\/apache24 &amp;&amp; sudo make install clean<\/pre>\n\n\n\n<p><strong>FYI:<\/strong> Installing from ports usually takes longer than installing binary packages via <strong>pkg<\/strong>. However, this process gives you better control of the package(s) you\u2019re installing.<\/p>\n\n\n\n<p>After installing Apache, add this line of code to your <strong>\/etc\/rc.conf<\/strong> file:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">apache24_enable=\"YES\"<\/pre>\n\n\n\n<p>Then start the Apache service by running this command in your terminal:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo service apache24 start<\/pre>\n\n\n\n<p>Now, let\u2019s see if Apache is running. Open up a web browser and then click on this link: http:\/\/localhost\/. You know Apache is working if you see something like this:<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/gnix0.files.wordpress.com\/2018\/09\/it-works.png?w=640\" alt=\"It-works\" class=\"wp-image-199\" data-recalc-dims=\"1\"\/><\/figure>\n\n\n\n<p>Congratulations, you now have a running web server on your computer. Let\u2019s continue.<\/p>\n\n\n\n<hr class=\"wp-block-separator\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">How to Install PHP 7<\/h3>\n\n\n\n<p>To install PHP 7.0 and some other essential PHP modules via pkg, just run this command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo pkg install php70 mod_php70 php70-bz2 php70-gd php70-imap php70-json php70-mbstring php70-mcrypt php70-mysqli php70-session php70-tidy<\/pre>\n\n\n\n<p>After installing PHP, we need to make it communicate with the Apache server. To do that, open up Apache\u2019s configuration file located at <strong>\/usr\/local\/etc\/apache24\/httpd.conf<\/strong>.<\/p>\n\n\n\n<p><strong>Important:<\/strong> Before you make any changes on this file, make sure you back it up first.<\/p>\n\n\n\n<p>Look for the lines that starts with \u201c<strong>LoadModule<\/strong>\u201c, there are quite a bunch of them on this file. At the last line that says LoadModule, add the following lines of codes below:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">LoadModule php7_module libexec\/apache24\/libphp7.so\nAddType application\/x-httpd-php .php\n&lt;FilesMatch \"\\.php$\"&gt;\n    SetHandler application\/x-httpd-php\n&lt;\/FilesMatch&gt;\n&lt;FilesMatch \"\\.phps$\"&gt;\n    SetHandler application\/x-httpd-php-source\n&lt;\/FilesMatch&gt;<\/pre>\n\n\n\n<p>Now scroll down and look for the line that says \u201c<strong>DirectoryIndex<\/strong>\u201d and add <strong>index.php<\/strong> after <strong>index.html<\/strong> with a single space between them, so it would look like this:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">&lt;IfModule dir_module&gt;\n    DirectoryIndex index.html index.php\n&lt;\/IfModule&gt;<\/pre>\n\n\n\n<p>Save the file and restart Apache by running this command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo service apache24 restart<\/pre>\n\n\n\n<p>If you want to check Apache\u2019s status, simply run this command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo service apache24 status<\/pre>\n\n\n\n<p>Apache is running properly if see something like this:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">apache24 is running as pid 5278.<\/pre>\n\n\n\n<p>Now to test if PHP is working with Apache, create a simple PHP script called <strong>info.php<\/strong> and save it in <strong>\/usr\/local\/www\/apache24\/data<\/strong>, and in this script type in:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">&lt;?php echo phpinfo(); ?&gt;<\/pre>\n\n\n\n<p>Save the <strong>info.php<\/strong> file, then open up your web browser and go to http:\/\/localhost\/info.php. You should see something like this:<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img decoding=\"async\" src=\"https:\/\/gnix0.files.wordpress.com\/2018\/09\/php7-installation.png?w=640\" alt=\"php7-installation\" class=\"wp-image-200\" data-recalc-dims=\"1\"\/><\/figure><\/div>\n\n\n\n<p>PHP is now up and running with Apache.<\/p>\n\n\n\n<hr class=\"wp-block-separator\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">How to Install MySQL Database Server<\/h3>\n\n\n\n<p>You can install MySQL 5.7 in FreeBSD via pkg by running this command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo pkg install mysql57-server mysql57-client<\/pre>\n\n\n\n<p>After installing MySQL, open your <strong>\/etc\/rc.conf<\/strong> file and add this line:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">mysql_enable=\"YES\"<\/pre>\n\n\n\n<p>Then start the MySQL service by running this command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo service mysql-server start<\/pre>\n\n\n\n<p>To restart the MySQL server, just run this command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo service mysql-server restart<\/pre>\n\n\n\n<p>It is recommended to secure the MySQL instance before you use it. Run the following command to secure the MySQL instance.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo mysql_secure_installation<\/pre>\n\n\n\n<p>Follow the instructions on the screen by giving it a simple Yes or No answer. Also make sure you setup a password that you can easily remember for the root user.<\/p>\n\n\n\n<p>To test the MySQL server, type in this command in your terminal:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">mysql -u root -p<\/pre>\n\n\n\n<p>After entering the MySQL\u2019s root password, you should see something similar to this:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">Welcome to the MySQL monitor. Commands end with ; or \\g.\nYour MySQL connection id is 32\nServer version: 5.7.23-log Source distribution\n\nCopyright (c) 2000, 2018, Oracle and\/or its affiliates. All rights reserved.\n\nOracle is a registered trademark of Oracle Corporation and\/or its\naffiliates. Other names may be trademarks of their respective\nowners.\n\nType 'help;' or '\\h' for help. Type '\\c' to clear the current input statement.\n\nroot@localhost [(none)]&gt;<\/pre>\n\n\n\n<p>Your MySQL server is now ready. Just type in <strong>exit<\/strong> on the MySQL prompt to exit. Now let\u2019s go to the final part of this tutorial. Yey!<\/p>\n\n\n\n<hr class=\"wp-block-separator\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">How to Install phpMyAdmin<\/h3>\n\n\n\n<p>Finally, to install phpMyAdmin, simply run this command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo pkg install phpMyAdmin-php70<\/pre>\n\n\n\n<p>After the installation, again open <strong>httpd.conf<\/strong> and add these lines of codes at the very end of the file:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">Include etc\/apache24\/Includes\/*.conf\n\nAlias \/phpmyadmin \"\/usr\/local\/www\/phpMyAdmin\/\"\n\n&lt;Directory \"\/usr\/local\/www\/phpMyAdmin\/\"&gt;\n    Options None\n    AllowOverride Limit\n    Require local\n    Require host localhost\n&lt;\/Directory&gt;<\/pre>\n\n\n\n<p>Save the <strong>httpd.conf<\/strong> file, then restart Apache:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo service apache24 restart<\/pre>\n\n\n\n<p>Now, phpMyAdmin would require a configuration file called <strong>config.inc.php<\/strong>. If if doesn\u2019t exists simply run the following command to create it:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">cd \/usr\/local\/www\/phpMyAdmin &amp;&amp; sudo cp config.sample.inc.php config.inc.php<\/pre>\n\n\n\n<p>Then open <strong>config.inc.php<\/strong> and look for the line that says:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">$cfg['blowfish_secret'] = ''<\/pre>\n\n\n\n<p>Type in any random string for the value. You can type in letters, numbers and\/or symbols, it doesn\u2019t matter as long as it\u2019s 32 characters long. It should look similar to this:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">$cfg['blowfish_secret'] = 'Ey0r*h!5g#oNf5WvkosW)*H$jasn%$!1'<\/pre>\n\n\n\n<p>To test if phpMyAdmin is running, go to this URL: http:\/\/localhost\/phpmyadmin. You should see phpMyAdmin\u2019s login screen:<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img decoding=\"async\" src=\"https:\/\/gnix0.files.wordpress.com\/2018\/09\/phpmyadmin.png?w=640\" alt=\"phpmyadmin\" class=\"wp-image-201\" data-recalc-dims=\"1\"\/><\/figure><\/div>\n\n\n\n<h3 class=\"wp-block-heading\">Troubleshooting phpMyAdmin Login<\/h3>\n\n\n\n<p>If you get an error message upon logging in, that says something like:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">mysqli_real_connect(): (HY000\/1862): Your password has expired. \nTo log in you must change it using a client that supports expired passwords.<\/pre>\n\n\n\n<p>You can fix this issue by opening up a terminal and logging in to MySQL as root:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo mysql -u root -p<\/pre>\n\n\n\n<p>After logging in, enter this one liner SQL query at the MySQL prompt and hit enter:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">ALTER USER 'root'@'localhost' IDENTIFIED BY '<strong>password<\/strong>','root'@'localhost' PASSWORD EXPIRE NEVER;<\/pre>\n\n\n\n<p>Just change \u2018password\u2019 with your own MySQL root password.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>How to Install Apache Web Server Apache, and all the other packages that we\u2019re going to use here can be installed either via pkg(8) or via FreeBSD ports. To install Apache 2.4 via pkg: sudo pkg install apache24 To install Apache 2.4 via ports: cd \/usr\/ports\/www\/apache24 &amp;&amp; sudo make install clean FYI: Installing from ports [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":false,"jetpack_social_options":{"image_generator_settings":{"template":"highway","enabled":false}}},"categories":[321],"tags":[322,60,334],"class_list":["post-3217","post","type-post","status-publish","format-standard","hentry","category-freebsd","tag-freebsd","tag-php","tag-phpmyadmin"],"jetpack_publicize_connections":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v22.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to Install Apache, PHP, MySQL, phpMyAdmin \u2013 FreeBSD 11.2-Release | 24x7serversupport Blog<\/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:\/\/www.24x7serversupport.com\/blog\/how-to-install-apache-php-mysql-phpmyadmin-freebsd-11-2-release\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install Apache, PHP, MySQL, phpMyAdmin \u2013 FreeBSD 11.2-Release | 24x7serversupport Blog\" \/>\n<meta property=\"og:description\" content=\"How to Install Apache Web Server Apache, and all the other packages that we\u2019re going to use here can be installed either via pkg(8) or via FreeBSD ports. To install Apache 2.4 via pkg: sudo pkg install apache24 To install Apache 2.4 via ports: cd \/usr\/ports\/www\/apache24 &amp;&amp; sudo make install clean FYI: Installing from ports [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.24x7serversupport.com\/blog\/how-to-install-apache-php-mysql-phpmyadmin-freebsd-11-2-release\/\" \/>\n<meta property=\"og:site_name\" content=\"24x7serversupport Blog\" \/>\n<meta property=\"article:published_time\" content=\"2020-06-11T18:31:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-06-11T12:22:21+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/gnix0.files.wordpress.com\/2018\/09\/it-works.png?w=809\" \/>\n<meta name=\"author\" content=\"24x7support\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@24x7serversuppo\" \/>\n<meta name=\"twitter:site\" content=\"@24x7serversuppo\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"24x7support\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.24x7serversupport.com\/blog\/how-to-install-apache-php-mysql-phpmyadmin-freebsd-11-2-release\/\",\"url\":\"https:\/\/www.24x7serversupport.com\/blog\/how-to-install-apache-php-mysql-phpmyadmin-freebsd-11-2-release\/\",\"name\":\"How to Install Apache, PHP, MySQL, phpMyAdmin \u2013 FreeBSD 11.2-Release | 24x7serversupport Blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.24x7serversupport.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.24x7serversupport.com\/blog\/how-to-install-apache-php-mysql-phpmyadmin-freebsd-11-2-release\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.24x7serversupport.com\/blog\/how-to-install-apache-php-mysql-phpmyadmin-freebsd-11-2-release\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/gnix0.files.wordpress.com\/2018\/09\/it-works.png?w=809\",\"datePublished\":\"2020-06-11T18:31:00+00:00\",\"dateModified\":\"2020-06-11T12:22:21+00:00\",\"author\":{\"@id\":\"https:\/\/www.24x7serversupport.com\/blog\/#\/schema\/person\/decfb5fad6bde6ac6822d4e965c6d401\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.24x7serversupport.com\/blog\/how-to-install-apache-php-mysql-phpmyadmin-freebsd-11-2-release\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.24x7serversupport.com\/blog\/how-to-install-apache-php-mysql-phpmyadmin-freebsd-11-2-release\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.24x7serversupport.com\/blog\/how-to-install-apache-php-mysql-phpmyadmin-freebsd-11-2-release\/#primaryimage\",\"url\":\"https:\/\/gnix0.files.wordpress.com\/2018\/09\/it-works.png?w=809\",\"contentUrl\":\"https:\/\/gnix0.files.wordpress.com\/2018\/09\/it-works.png?w=809\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.24x7serversupport.com\/blog\/how-to-install-apache-php-mysql-phpmyadmin-freebsd-11-2-release\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.24x7serversupport.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install Apache, PHP, MySQL, phpMyAdmin \u2013 FreeBSD 11.2-Release\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.24x7serversupport.com\/blog\/#website\",\"url\":\"https:\/\/www.24x7serversupport.com\/blog\/\",\"name\":\"24x7serversupport Blog\",\"description\":\"Linux | CPanel | WHM | webhosting| Plesk | DirectAdmin | CentOs | Debian | Ubuntu Blog\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.24x7serversupport.com\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.24x7serversupport.com\/blog\/#\/schema\/person\/decfb5fad6bde6ac6822d4e965c6d401\",\"name\":\"24x7support\",\"url\":\"https:\/\/www.24x7serversupport.com\/blog\/author\/24x7support\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Install Apache, PHP, MySQL, phpMyAdmin \u2013 FreeBSD 11.2-Release | 24x7serversupport Blog","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.24x7serversupport.com\/blog\/how-to-install-apache-php-mysql-phpmyadmin-freebsd-11-2-release\/","og_locale":"en_US","og_type":"article","og_title":"How to Install Apache, PHP, MySQL, phpMyAdmin \u2013 FreeBSD 11.2-Release | 24x7serversupport Blog","og_description":"How to Install Apache Web Server Apache, and all the other packages that we\u2019re going to use here can be installed either via pkg(8) or via FreeBSD ports. To install Apache 2.4 via pkg: sudo pkg install apache24 To install Apache 2.4 via ports: cd \/usr\/ports\/www\/apache24 &amp;&amp; sudo make install clean FYI: Installing from ports [&hellip;]","og_url":"https:\/\/www.24x7serversupport.com\/blog\/how-to-install-apache-php-mysql-phpmyadmin-freebsd-11-2-release\/","og_site_name":"24x7serversupport Blog","article_published_time":"2020-06-11T18:31:00+00:00","article_modified_time":"2020-06-11T12:22:21+00:00","og_image":[{"url":"https:\/\/gnix0.files.wordpress.com\/2018\/09\/it-works.png?w=809"}],"author":"24x7support","twitter_card":"summary_large_image","twitter_creator":"@24x7serversuppo","twitter_site":"@24x7serversuppo","twitter_misc":{"Written by":"24x7support","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.24x7serversupport.com\/blog\/how-to-install-apache-php-mysql-phpmyadmin-freebsd-11-2-release\/","url":"https:\/\/www.24x7serversupport.com\/blog\/how-to-install-apache-php-mysql-phpmyadmin-freebsd-11-2-release\/","name":"How to Install Apache, PHP, MySQL, phpMyAdmin \u2013 FreeBSD 11.2-Release | 24x7serversupport Blog","isPartOf":{"@id":"https:\/\/www.24x7serversupport.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.24x7serversupport.com\/blog\/how-to-install-apache-php-mysql-phpmyadmin-freebsd-11-2-release\/#primaryimage"},"image":{"@id":"https:\/\/www.24x7serversupport.com\/blog\/how-to-install-apache-php-mysql-phpmyadmin-freebsd-11-2-release\/#primaryimage"},"thumbnailUrl":"https:\/\/gnix0.files.wordpress.com\/2018\/09\/it-works.png?w=809","datePublished":"2020-06-11T18:31:00+00:00","dateModified":"2020-06-11T12:22:21+00:00","author":{"@id":"https:\/\/www.24x7serversupport.com\/blog\/#\/schema\/person\/decfb5fad6bde6ac6822d4e965c6d401"},"breadcrumb":{"@id":"https:\/\/www.24x7serversupport.com\/blog\/how-to-install-apache-php-mysql-phpmyadmin-freebsd-11-2-release\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.24x7serversupport.com\/blog\/how-to-install-apache-php-mysql-phpmyadmin-freebsd-11-2-release\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.24x7serversupport.com\/blog\/how-to-install-apache-php-mysql-phpmyadmin-freebsd-11-2-release\/#primaryimage","url":"https:\/\/gnix0.files.wordpress.com\/2018\/09\/it-works.png?w=809","contentUrl":"https:\/\/gnix0.files.wordpress.com\/2018\/09\/it-works.png?w=809"},{"@type":"BreadcrumbList","@id":"https:\/\/www.24x7serversupport.com\/blog\/how-to-install-apache-php-mysql-phpmyadmin-freebsd-11-2-release\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.24x7serversupport.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Install Apache, PHP, MySQL, phpMyAdmin \u2013 FreeBSD 11.2-Release"}]},{"@type":"WebSite","@id":"https:\/\/www.24x7serversupport.com\/blog\/#website","url":"https:\/\/www.24x7serversupport.com\/blog\/","name":"24x7serversupport Blog","description":"Linux | CPanel | WHM | webhosting| Plesk | DirectAdmin | CentOs | Debian | Ubuntu Blog","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.24x7serversupport.com\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.24x7serversupport.com\/blog\/#\/schema\/person\/decfb5fad6bde6ac6822d4e965c6d401","name":"24x7support","url":"https:\/\/www.24x7serversupport.com\/blog\/author\/24x7support\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack_likes_enabled":true,"jetpack-related-posts":[],"_links":{"self":[{"href":"https:\/\/www.24x7serversupport.com\/blog\/wp-json\/wp\/v2\/posts\/3217","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.24x7serversupport.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.24x7serversupport.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.24x7serversupport.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.24x7serversupport.com\/blog\/wp-json\/wp\/v2\/comments?post=3217"}],"version-history":[{"count":1,"href":"https:\/\/www.24x7serversupport.com\/blog\/wp-json\/wp\/v2\/posts\/3217\/revisions"}],"predecessor-version":[{"id":3218,"href":"https:\/\/www.24x7serversupport.com\/blog\/wp-json\/wp\/v2\/posts\/3217\/revisions\/3218"}],"wp:attachment":[{"href":"https:\/\/www.24x7serversupport.com\/blog\/wp-json\/wp\/v2\/media?parent=3217"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.24x7serversupport.com\/blog\/wp-json\/wp\/v2\/categories?post=3217"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.24x7serversupport.com\/blog\/wp-json\/wp\/v2\/tags?post=3217"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}