{"id":5527,"date":"2016-11-02T06:48:46","date_gmt":"2016-11-02T06:48:46","guid":{"rendered":"https:\/\/cpanelplesk.com\/wp62\/?p=5527"},"modified":"2021-02-02T05:53:48","modified_gmt":"2021-02-02T05:53:48","slug":"setup-working-apache-server-ubuntu-16-04","status":"publish","type":"post","link":"https:\/\/cpanelplesk.com\/wp62\/setup-working-apache-server-ubuntu-16-04\/","title":{"rendered":"How to setup a working Apache server on Ubuntu 16.04"},"content":{"rendered":"<p><span style=\"color: #000000;\">In this article I will guide you How to setup a working Apache server on Ubuntu 16.04. We will have Apache, MariaDB, and definitely the fastest version of PHP, the PHP 7 \u2013 this setup is known as LAMP Stack.<!--more--> <\/span><\/p>\n<p><span style=\"color: #000000;\">In this guide we\u2019ll replace conventional <a href=\"https:\/\/cpanelplesk.com\/wp62\/how-to-install-mysql-server-on-ubuntu\/\">MySQL<\/a> server with its drop-in replacement, MariaDB server to have better and more sleek performance in handling your database.<\/span><\/p>\n<h2>Prerequisites:<\/h2>\n<ol>\n<li>A SSH client like<a href=\"https:\/\/cpanelplesk.com\/wp62\/using-putty-connect-server-ssh-windows\/\"> Putty<\/a> and basic knowledge about how to use it.<\/li>\n<li>Basic knowledge about common Linux SSH commands.<\/li>\n<li>A server or VPS.<\/li>\n<li>About 30 minutes of your time with a cup of coffee.<\/li>\n<\/ol>\n<p><span style=\"color: #000000;\"><strong>Step 1<\/strong> \u2013 Login to your server via SSH.<\/span><\/p>\n<p><span style=\"color: #000000;\"><strong>Step 2<\/strong> \u2013 Type this command to change default <a href=\"https:\/\/cpanelplesk.com\/wp62\/how-to-set-hostname-on-centos\/\">hostname <\/a>. Use proper FQDN hostname format:<\/span><\/p>\n<div class=\"space1\"><\/div>\n<div class=\"command-sh\">\n<pre>hostname host.domain.tld\r\n\r\n## example :\r\nhostname cpanelplesk.com<\/pre>\n<\/div>\n<div class=\"space1\"><\/div>\n<p><span style=\"color: #000000;\"><strong>Step 3<\/strong> \u2013 Close Putty and re-login and now you will see it has changed.<\/span><\/p>\n<h2><span style=\"color: #000000;\">Install Apache:<\/span><\/h2>\n<p><span style=\"color: #000000;\"><strong>Step 1<\/strong> \u2013 Installing Apache web server on Ubuntu is very simple . By default, <a href=\"https:\/\/cpanelplesk.com\/wp62\/enabledisable-modules-apache2-ubuntu-linuxmint\/\">Ubuntu <\/a>has included the package and it is available in default repository. Just issue following command :<\/span><\/p>\n<div class=\"space1\"><\/div>\n<div class=\"command-sh\">\n<pre>apt-get install apache2<\/pre>\n<\/div>\n<div class=\"space1\"><\/div>\n<p><span style=\"color: #000000;\">Do not forget to always answer Y when asked.<\/span><\/p>\n<p><span style=\"color: #000000;\"><strong>Step 2<\/strong> \u2013 Now enable Apache2 service and start it.<\/span><\/p>\n<div class=\"space1\"><\/div>\n<div class=\"command-sh\">\n<pre>systemctl enable apache2\r\nsystemctl start apache2<\/pre>\n<\/div>\n<div class=\"space1\"><\/div>\n<p><span style=\"color: #000000;\"><strong>Step 3<\/strong> \u2013 Verify the status of <a href=\"https:\/\/cpanelplesk.com\/wp62\/fix-apache-not-reliably-determine-fqdn-error-ubuntu\/\">Apache<\/a> whether it has run properly or not.<\/span><\/p>\n<div class=\"space1\"><\/div>\n<div class=\"command-sh\">\n<pre>systemctl status apache2<\/pre>\n<\/div>\n<div class=\"space1\"><\/div>\n<p><strong>Step 4<\/strong> \u2013 Open your favorite web browser (e.g: Firefox) and access your server through the IP address. You should see Apache\u2019s default page.<\/p>\n<h2>Install MariaDB<\/h2>\n<p><span style=\"color: #000000;\">If you are using fresh <a href=\"https:\/\/cpanelplesk.com\/wp62\/4836-2\/\">Ubuntu <\/a>server, so go straight forward with the steps. Otherwise, if you have already MySQL running then you have to stop and remove its service at first.<\/span><\/p>\n<p><span style=\"color: #000000;\"><strong>Step 1<\/strong> \u2013 Again, we will simply use apt-get command because its package is available in default repository.<\/span><\/p>\n<div class=\"space1\"><\/div>\n<div class=\"command-sh\">\n<pre>apt-get install mariadb-server<\/pre>\n<\/div>\n<div class=\"space1\"><\/div>\n<p><span style=\"color: #000000;\"><strong>Step 2<\/strong> \u2013 During the process, you will be asked to enter database root password. . However, if the system does not ask you to define database root password for <a href=\"https:\/\/cpanelplesk.com\/wp62\/install-upgrade-mariadb-10-1-12-ubuntu-debian-mint\/\">MariaDB<\/a>, then you can simply issue following command :<\/span><\/p>\n<div class=\"space1\"><\/div>\n<div class=\"command-sh\">\n<pre>mysql_secure_installation<\/pre>\n<\/div>\n<div class=\"space1\"><\/div>\n<p><span style=\"color: #000000;\"><strong>Step 3<\/strong> \u2013 You\u2019ll be asked to answer a series of questions.<\/span><\/p>\n<div class=\"space1\"><\/div>\n<div class=\"command-sh\">\n<pre>Enter current password for root (enter for none): &lt;-- \r\nJust hit enter because we don't have any password\r\nSet root password? [Y\/n] y &lt;-- answer Y and hit enter\r\nNew password: &lt;-- type in your password here\r\nRe-enter new password: &lt;-- type in again\r\nRemove anonymous users? [Y\/n] &lt;-- just hit enter\r\nDisallow root login remotely? [Y\/n] &lt;-- just hit enter\r\nRemove test database and access to it? [Y\/n] &lt;-- just hit enter\r\nReload privilege tables now? [Y\/n] &lt;-- just hit enter<\/pre>\n<\/div>\n<div class=\"space1\"><\/div>\n<p><span style=\"color: #000000;\"><strong>Step 4<\/strong> \u2013 Let\u2019s check the status of your newly installed <a href=\"https:\/\/cpanelplesk.com\/wp62\/upgrade-mariadb-5-5-mariadb-10-0-mariadb-10-1-linux\/\">MariaDB<\/a> server.<\/span><\/p>\n<div class=\"space1\"><\/div>\n<div class=\"command-sh\">\n<pre>service mysql status<\/pre>\n<\/div>\n<div class=\"space1\"><\/div>\n<p><span style=\"color: #000000;\">You should see no critical error listed. However, in case if you see the problem:<\/span><\/p>\n<h3><span style=\"color: #000000;\">Error message :<\/span><\/h3>\n<div class=\"space1\"><\/div>\n<div class=\"notice-error-sh\">\n<pre>[Warning] \u2018user\u2019 entry \u2018root@localhost\u2019 has both a password and an \r\nauthentication plugin specified.<\/pre>\n<\/div>\n<div class=\"space1\"><\/div>\n<p><span style=\"color: #000000;\">Then you have to follow this additional step :<\/span><\/p>\n<p><span style=\"color: #000000;\">Try to login to MariaDB server as root but without password. Successful login means the root password you have specified before is not effective yet:<\/span><\/p>\n<div class=\"space1\"><\/div>\n<div class=\"command-sh\">\n<pre>mysql -u root\r\n\r\nuse mysql;\r\nupdate user set plugin='' where User='root';\r\nflush privileges;\r\n\\q<\/pre>\n<\/div>\n<div class=\"space1\"><\/div>\n<p><span style=\"color: #000000;\">Next, issue this command again and follow the steps accordingly:<\/span><\/p>\n<div class=\"space1\"><\/div>\n<div class=\"command-sh\">\n<pre>mysql_secure_installation<\/pre>\n<\/div>\n<div class=\"space1\"><\/div>\n<h2>Install PHP7<\/h2>\n<p><span style=\"color: #000000;\"><strong>Step 1<\/strong> \u2013 Before installation, First update your apt database :<\/span><\/p>\n<div class=\"space1\"><\/div>\n<div class=\"command-sh\">\n<pre>apt-get update -y<\/pre>\n<\/div>\n<div class=\"space1\"><\/div>\n<p><span style=\"color: #000000;\"><strong>Step 2<\/strong> \u2013 Now we will install<a href=\"https:\/\/cpanelplesk.com\/wp62\/how-to-install-php-7-on-ubuntu\/\"> PHP7<\/a> on our Ubuntu 16.04 server plus few of its common PHP7 modules:<\/span><\/p>\n<div class=\"space1\"><\/div>\n<div class=\"command-sh\">\n<pre>apt-get install php7.0-mysql php7.0-curl php7.0-json php7.0-cgi php7.0<\/pre>\n<\/div>\n<div class=\"space1\"><\/div>\n<p><span style=\"color: #000000;\"><strong>Step 3<\/strong> \u2013 Verify that you have truly installed php 7 by issuing this command :<\/span><\/p>\n<div class=\"space1\"><\/div>\n<div class=\"command-sh\">\n<pre>php -v<\/pre>\n<\/div>\n<div class=\"space1\"><\/div>\n<p><span style=\"color: #000000;\"><strong>Step 4<\/strong> \u2013 Now create a PHP test file :<\/span><\/p>\n<div class=\"space1\"><\/div>\n<div class=\"command-sh\">\n<pre>nano \/var\/www\/html\/info.php<\/pre>\n<\/div>\n<div class=\"space1\"><\/div>\n<p><span style=\"color: #000000;\"><strong>Step 5<\/strong> \u2013 Then put this code :<\/span><\/p>\n<div class=\"space1\"><\/div>\n<div class=\"command-sh\">\n<pre>&lt;?php\r\nphpinfo();\r\n?&gt;<\/pre>\n<\/div>\n<div class=\"space1\"><\/div>\n<p><span style=\"color: #000000;\">Save and exit the editor.<\/span><\/p>\n<p><span style=\"color: #000000;\"><strong>Step 6<\/strong> \u2013 Now open your web browser again and try accessing that file :<\/span><\/p>\n<div class=\"space1\"><\/div>\n<div class=\"command-sh\">\n<pre>http:\/\/x.x.x.x\/info.php<\/pre>\n<\/div>\n<div class=\"space1\"><\/div>\n<p><span style=\"color: #000000;\"><strong>Step 7<\/strong> \u2013 You should now see detailed PHP information page. If u got a blank page, Then it means the .php file you\u2019ve just created is not rendered and PHP is not working properly. Now install this additional <a href=\"https:\/\/cpanelplesk.com\/wp62\/how-to-enable-apache-mod_rewrite-module-in-ubuntu\/\">php module <\/a>:<\/span><\/p>\n<div class=\"space1\"><\/div>\n<div class=\"command-sh\">\n<pre>apt-get install libapache2-mod-php<\/pre>\n<\/div>\n<div class=\"space1\"><\/div>\n<p><span style=\"color: #000000;\">Now restart apache2 service and try it again on your browser<\/span><\/p>\n<div class=\"space1\"><\/div>\n<div class=\"command-sh\">\n<pre>service apache2 restart<\/pre>\n<\/div>\n<div class=\"space1\"><\/div>\n<p><span style=\"color: #000000;\">That\u2019s all. Now your server is basically ready to use. Next you can simply create virtual hosts file to add your website on it. We already discuss that in another article. If you want, you can simply read my previous similar article about but that same thing was done on older Ubuntu version.<\/span><\/p>\n<p><span style=\"color: #000000;\">That\u2019s all \u00a0you have to do, now you know how its simple to setup a working apache server on Ubuntu 16.04. \u00a0You also like to know\u00a0<\/span><a href=\"https:\/\/cpanelplesk.com\/wp62\/install-webuzo-cp-ubuntu-15-04-vps\/\">How To Install Webuzo CP On Ubuntu 15.04 VPS<\/a>\u00a0<span style=\"color: #000000;\">. Please check my previous article on this and also give your opinion below if you experience any issues or to discuss your ideas and experiences.<\/span><\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this article I will guide you How to setup a working Apache server on Ubuntu 16.04. We will have Apache, MariaDB, and definitely the fastest version of PHP, the PHP 7 \u2013 this setup is known as LAMP Stack. [&#8230;]<\/p>\n<p><a class=\"understrap-read-more-link\" href=\"https:\/\/cpanelplesk.com\/wp62\/setup-working-apache-server-ubuntu-16-04\/\">Continue Reading&#8230;<\/a><\/p>\n","protected":false},"author":2,"featured_media":3482,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[14],"tags":[],"class_list":["post-5527","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 setup a working Apache server on Ubuntu 16.04 - 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\/setup-working-apache-server-ubuntu-16-04\/\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:title\" content=\"How to setup a working Apache server on Ubuntu 16.04 - cPanel Plesk\" \/>\n<meta name=\"twitter:description\" content=\"In this article I will guide you How to setup a working Apache server on Ubuntu 16.04. We will have Apache, MariaDB, and definitely the fastest version of PHP, the PHP 7 \u2013 this setup is known as LAMP Stack. [...]Continue Reading...\" \/>\n<meta name=\"twitter:image\" content=\"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2016\/02\/ubuntu-e1454918560726.png\" \/>\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=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/setup-working-apache-server-ubuntu-16-04\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/setup-working-apache-server-ubuntu-16-04\/\"},\"author\":{\"name\":\"Seemab Saleem\",\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/73d573cc7eaaf6625cf0dbd72191a648\"},\"headline\":\"How to setup a working Apache server on Ubuntu 16.04\",\"datePublished\":\"2016-11-02T06:48:46+00:00\",\"dateModified\":\"2021-02-02T05:53:48+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/setup-working-apache-server-ubuntu-16-04\/\"},\"wordCount\":625,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/c78ae1cf9451a09592fb9697d69c0c13\"},\"image\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/setup-working-apache-server-ubuntu-16-04\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2016\/02\/ubuntu-e1454918560726.png\",\"articleSection\":[\"Linux\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/setup-working-apache-server-ubuntu-16-04\/\",\"url\":\"https:\/\/cpanelplesk.com\/wp62\/setup-working-apache-server-ubuntu-16-04\/\",\"name\":\"How to setup a working Apache server on Ubuntu 16.04 - cPanel Plesk\",\"isPartOf\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/setup-working-apache-server-ubuntu-16-04\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/setup-working-apache-server-ubuntu-16-04\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2016\/02\/ubuntu-e1454918560726.png\",\"datePublished\":\"2016-11-02T06:48:46+00:00\",\"dateModified\":\"2021-02-02T05:53:48+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/setup-working-apache-server-ubuntu-16-04\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/cpanelplesk.com\/wp62\/setup-working-apache-server-ubuntu-16-04\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/setup-working-apache-server-ubuntu-16-04\/#primaryimage\",\"url\":\"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2016\/02\/ubuntu-e1454918560726.png\",\"contentUrl\":\"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2016\/02\/ubuntu-e1454918560726.png\",\"width\":200,\"height\":200},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/setup-working-apache-server-ubuntu-16-04\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/cpanelplesk.com\/wp62\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to setup a working Apache server on Ubuntu 16.04\"}]},{\"@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 setup a working Apache server on Ubuntu 16.04 - 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\/setup-working-apache-server-ubuntu-16-04\/","twitter_card":"summary_large_image","twitter_title":"How to setup a working Apache server on Ubuntu 16.04 - cPanel Plesk","twitter_description":"In this article I will guide you How to setup a working Apache server on Ubuntu 16.04. We will have Apache, MariaDB, and definitely the fastest version of PHP, the PHP 7 \u2013 this setup is known as LAMP Stack. [...]Continue Reading...","twitter_image":"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2016\/02\/ubuntu-e1454918560726.png","twitter_misc":{"Written by":"Seemab Saleem","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/cpanelplesk.com\/wp62\/setup-working-apache-server-ubuntu-16-04\/#article","isPartOf":{"@id":"https:\/\/cpanelplesk.com\/wp62\/setup-working-apache-server-ubuntu-16-04\/"},"author":{"name":"Seemab Saleem","@id":"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/73d573cc7eaaf6625cf0dbd72191a648"},"headline":"How to setup a working Apache server on Ubuntu 16.04","datePublished":"2016-11-02T06:48:46+00:00","dateModified":"2021-02-02T05:53:48+00:00","mainEntityOfPage":{"@id":"https:\/\/cpanelplesk.com\/wp62\/setup-working-apache-server-ubuntu-16-04\/"},"wordCount":625,"commentCount":0,"publisher":{"@id":"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/c78ae1cf9451a09592fb9697d69c0c13"},"image":{"@id":"https:\/\/cpanelplesk.com\/wp62\/setup-working-apache-server-ubuntu-16-04\/#primaryimage"},"thumbnailUrl":"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2016\/02\/ubuntu-e1454918560726.png","articleSection":["Linux"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/cpanelplesk.com\/wp62\/setup-working-apache-server-ubuntu-16-04\/","url":"https:\/\/cpanelplesk.com\/wp62\/setup-working-apache-server-ubuntu-16-04\/","name":"How to setup a working Apache server on Ubuntu 16.04 - cPanel Plesk","isPartOf":{"@id":"https:\/\/cpanelplesk.com\/wp62\/#website"},"primaryImageOfPage":{"@id":"https:\/\/cpanelplesk.com\/wp62\/setup-working-apache-server-ubuntu-16-04\/#primaryimage"},"image":{"@id":"https:\/\/cpanelplesk.com\/wp62\/setup-working-apache-server-ubuntu-16-04\/#primaryimage"},"thumbnailUrl":"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2016\/02\/ubuntu-e1454918560726.png","datePublished":"2016-11-02T06:48:46+00:00","dateModified":"2021-02-02T05:53:48+00:00","breadcrumb":{"@id":"https:\/\/cpanelplesk.com\/wp62\/setup-working-apache-server-ubuntu-16-04\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/cpanelplesk.com\/wp62\/setup-working-apache-server-ubuntu-16-04\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cpanelplesk.com\/wp62\/setup-working-apache-server-ubuntu-16-04\/#primaryimage","url":"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2016\/02\/ubuntu-e1454918560726.png","contentUrl":"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2016\/02\/ubuntu-e1454918560726.png","width":200,"height":200},{"@type":"BreadcrumbList","@id":"https:\/\/cpanelplesk.com\/wp62\/setup-working-apache-server-ubuntu-16-04\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/cpanelplesk.com\/wp62\/"},{"@type":"ListItem","position":2,"name":"How to setup a working Apache server on Ubuntu 16.04"}]},{"@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\/5527","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=5527"}],"version-history":[{"count":0,"href":"https:\/\/cpanelplesk.com\/wp62\/wp-json\/wp\/v2\/posts\/5527\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/cpanelplesk.com\/wp62\/wp-json\/wp\/v2\/media\/3482"}],"wp:attachment":[{"href":"https:\/\/cpanelplesk.com\/wp62\/wp-json\/wp\/v2\/media?parent=5527"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/cpanelplesk.com\/wp62\/wp-json\/wp\/v2\/categories?post=5527"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/cpanelplesk.com\/wp62\/wp-json\/wp\/v2\/tags?post=5527"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}