{"id":2181,"date":"2013-10-11T17:26:18","date_gmt":"2013-10-11T22:26:18","guid":{"rendered":"https:\/\/www.rosehosting.com\/blog\/?p=2181"},"modified":"2022-06-03T03:52:15","modified_gmt":"2022-06-03T08:52:15","slug":"how-to-set-up-lamp-linux-apache-mariadb-php-stack-on-debian-wheezy","status":"publish","type":"post","link":"https:\/\/www.rosehosting.com\/blog\/how-to-set-up-lamp-linux-apache-mariadb-php-stack-on-debian-wheezy\/","title":{"rendered":"How to set up LAMP (Linux, Apache, MariaDB, PHP) stack on Debian Wheezy"},"content":{"rendered":"<div id=\"bsf_rt_marker\"><\/div><p><a href=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2013\/09\/how-to-set-up-lamp-linux-apache-mariadb-php-stack-on-debian-wheezy.png\"><img decoding=\"async\" class=\"size-full wp-image-2203 alignleft\" src=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2013\/09\/how-to-set-up-lamp-linux-apache-mariadb-php-stack-on-debian-wheezy.png\" alt=\"how-to-set-up-lamp-linux-apache-mariadb-php-stack-on-debian-wheezy\" width=\"250\" height=\"250\" srcset=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2013\/09\/how-to-set-up-lamp-linux-apache-mariadb-php-stack-on-debian-wheezy.png 250w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2013\/09\/how-to-set-up-lamp-linux-apache-mariadb-php-stack-on-debian-wheezy-150x150.png 150w\" sizes=\"(max-width: 250px) 100vw, 250px\" \/><\/a>LAMP usually refers to a full featured stack containing the Apache web server, the popular database server MySQL and the well known web programming language &#8211; PHP, set up on a Linux Operating System.<\/p>\n<p>But, as of lately we&#8217;ve seen a lot of open-source communities and some of the largest internet giants as Google switched to the use of MySQL&#8217;s open source drop-in replacement &#8211; the MariaDB database server, which is what are we going to install today instead of MySQL.<\/p>\n<p>In the following step-by-step set up manual we will explain how to install a LAMP (Linux, Apache, MariaDB, PHP) stack on your <a title=\"Debian VPS Hosting\" href=\"https:\/\/www.rosehosting.com\/debian-hosting.html\" target=\"_blank\" rel=\"noopener noreferrer\">Debian Wheezy VPS. <\/a>Let&#8217;s begin:<\/p>\n<p><!--more--><\/p>\n<p>First, we need to make sure the system is <strong>up-to-date<\/strong>:<\/p>\n<p><span style=\"color: #ff0000;\"># apt-get update <\/span><\/p>\n<p><span style=\"color: #ff0000;\"># apt-get upgrade -y<\/span><\/p>\n<p>Now we can begin isntalling the necessary <strong>packages<\/strong>. We will start by installing the <strong>webserver<\/strong>:<\/p>\n<p><span style=\"color: #ff0000;\"># apt-get install apache2<\/span><\/p>\n<p>add it to system startup and start it up:<\/p>\n<p><span style=\"color: #ff0000;\"># update-rc.d apache2 enable <\/span><\/p>\n<p><span style=\"color: #ff0000;\"># service apache2 start<\/span><\/p>\n<p>Now, the Apache webserver is installed and started. Its default page is accessible at <span style=\"text-decoration: underline;\">http:\/\/yourdomain.tld<\/span><\/p>\n<p>Next, type the following command to install <strong>PHP5<\/strong> along with the <strong>Apache PHP5 module<\/strong> and the <strong>MySQL php module<\/strong>:<\/p>\n<p><span style=\"color: #ff0000;\"># apt-get install php5 libapache2-mod-php5 php5-mysql<\/span><\/p>\n<p>and<\/p>\n<p><span style=\"color: #ff0000;\"># service apache2 restart<\/span><\/p>\n<p>to restart the Apache service.<\/p>\n<p>Test the <strong>php<\/strong> support by creating an <strong>index.php<\/strong> file inside the webserver&#8217;s default\u00a0 <strong>document root<\/strong> &#8211; the\u00a0 &#8216;<strong>\/var\/www\/<\/strong>&#8216; &#8211; directory with the following contents:<\/p>\n<p><span style=\"color: #008000;\">&lt;?php<\/span><br \/>\n<span style=\"color: #008000;\"> phpinfo();<\/span><br \/>\n<span style=\"color: #008000;\"> ?&gt;<\/span><\/p>\n<p>After a successful verification that php is installed and working, in our next step we will add the required <strong>repository<\/strong> and after that install and configure the <strong>MariaDB database server<\/strong>.<\/p>\n<p><span style=\"color: #ff0000;\"># apt-get install python-software-properties<\/span><br \/>\n<span style=\"color: #ff0000;\"> # apt-key adv &#8211;recv-keys &#8211;keyserver keyserver.ubuntu.com 0xcbcb082a1bb943db<\/span><br \/>\n<span style=\"color: #ff0000;\"> # add-apt-repository &#8216;deb http:\/\/mirror.stshosting.co.uk\/mariadb\/repo\/10.0\/debian wheezy main&#8217;<\/span><br \/>\n<span style=\"color: #ff0000;\"> # apt-get update<\/span><br \/>\n<span style=\"color: #ff0000;\"> # apt-get install mariadb-server<\/span><\/p>\n<p>Follow the on-screen instructions to set up a <strong>root password<\/strong> for the Mariadb server.<\/p>\n<p>With all of these steps we have successfully installed a <strong>LAMP stack<\/strong> on your <strong>Wheezy server<\/strong>.<\/p>\n<p>In order to provide easier access and managing of your Mariadb <strong>databases<\/strong> we will additionally install <strong>phpMyadmin<\/strong>:<\/p>\n<p><span style=\"color: #ff0000;\"># apt-get install phpmyadmin<\/span><\/p>\n<p>and answer the questions as follows:<\/p>\n<p>1. Web server to reconfigure automatically: <strong>answer &#8216;apache2&#8217;<\/strong>.<br \/>\n2. Configure database for phpmyadmin with dbconfig-common? &#8211; <strong>answer &#8216;NO&#8217;<\/strong>.<\/p>\n<p>And that&#8217;s it. You have successfully installed a full LAMP stack with Mariadb and phpMyadmin. Now you can visit <span style=\"text-decoration: underline;\">http:\/\/yourdomain.tld\/phpmyadmin\/<\/span> and login using &#8216;<strong>root<\/strong>&#8216; as username and the previously set <strong>root password<\/strong>.<\/p>\n<p>Of course, you don\u2019t have to do any of this if you use one of our <a title=\"Linux VPS Hosting\" href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting.html\" target=\"_blank\" rel=\"noopener noreferrer\">Linux VPS Hosting<\/a> services, in which case you can simply ask our expert Linux admins to install this for you. They are available 24\u00d77 and will take care of your request immediately. For updates, you can refer to <a href=\"https:\/\/www.rosehosting.com\/blog\/how-to-install-lamp-linux-apache-mysql-php-on-debian-9\/\">How to Install LAMP (Linux, Apache, MySQL, PHP) on Debian 9<\/a>.<\/p>\n<p><strong><span style=\"color: #ff0000;\">PS<\/span><\/strong>. If you liked this post please share it with your friends on the social networks using the buttons on the left or simply leave a reply below. Thanks.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>LAMP usually refers to a full featured stack containing the Apache web server, the popular database server MySQL and the &#8230; <\/p>\n<p class=\"read-more-container\"><a title=\"How to set up LAMP (Linux, Apache, MariaDB, PHP) stack on Debian Wheezy\" class=\"read-more button\" href=\"https:\/\/www.rosehosting.com\/blog\/how-to-set-up-lamp-linux-apache-mariadb-php-stack-on-debian-wheezy\/#more-2181\" aria-label=\"Read more about How to set up LAMP (Linux, Apache, MariaDB, PHP) stack on Debian Wheezy\">Read More<\/a><\/p>\n","protected":false},"author":4,"featured_media":2203,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1702,1700,13,1712,1707],"tags":[37,79,297,144,91,27,177,296,50,1152,235],"class_list":["post-2181","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-databases","category-debian","category-tutorials","category-web-frameworks","category-web-servers","tag-apache","tag-debian-vps","tag-how-to","tag-howto","tag-lamp","tag-linux","tag-linux-vps","tag-mariadb","tag-php","tag-rosehosting","tag-wheezy","generate-columns","tablet-grid-50","mobile-grid-100","grid-parent","grid-33"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.2 (Yoast SEO v27.3) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>How to set up LAMP (Linux, Apache, MariaDB, PHP) stack on Debian Wheezy | RoseHosting<\/title>\n<meta name=\"description\" content=\"How to set up LAMP (Linux, Apache, MariaDB, PHP) stack on Debian Wheezy | RoseHosting\" \/>\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.rosehosting.com\/blog\/how-to-set-up-lamp-linux-apache-mariadb-php-stack-on-debian-wheezy\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to set up LAMP (Linux, Apache, MariaDB, PHP) stack on Debian Wheezy\" \/>\n<meta property=\"og:description\" content=\"How to set up LAMP (Linux, Apache, MariaDB, PHP) stack on Debian Wheezy | RoseHosting\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.rosehosting.com\/blog\/how-to-set-up-lamp-linux-apache-mariadb-php-stack-on-debian-wheezy\/\" \/>\n<meta property=\"og:site_name\" content=\"RoseHosting\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/RoseHosting\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/rosehosting.helpdesk\" \/>\n<meta property=\"article:published_time\" content=\"2013-10-11T22:26:18+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-06-03T08:52:15+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2013\/09\/how-to-set-up-lamp-linux-apache-mariadb-php-stack-on-debian-wheezy.png\" \/>\n\t<meta property=\"og:image:width\" content=\"250\" \/>\n\t<meta property=\"og:image:height\" content=\"250\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Jeff Wilson\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@rosehosting\" \/>\n<meta name=\"twitter:site\" content=\"@rosehosting\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Jeff Wilson\" \/>\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:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-set-up-lamp-linux-apache-mariadb-php-stack-on-debian-wheezy\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-set-up-lamp-linux-apache-mariadb-php-stack-on-debian-wheezy\\\/\"},\"author\":{\"name\":\"Jeff Wilson\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/person\\\/7ce77a842fa6a9a7f8efa186f2353713\"},\"headline\":\"How to set up LAMP (Linux, Apache, MariaDB, PHP) stack on Debian Wheezy\",\"datePublished\":\"2013-10-11T22:26:18+00:00\",\"dateModified\":\"2022-06-03T08:52:15+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-set-up-lamp-linux-apache-mariadb-php-stack-on-debian-wheezy\\\/\"},\"wordCount\":518,\"commentCount\":2,\"publisher\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-set-up-lamp-linux-apache-mariadb-php-stack-on-debian-wheezy\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2013\\\/09\\\/how-to-set-up-lamp-linux-apache-mariadb-php-stack-on-debian-wheezy.png\",\"keywords\":[\"apache\",\"debian vps\",\"how-to\",\"howto\",\"lamp\",\"Linux\",\"linux vps\",\"mariadb\",\"php\",\"rosehosting\",\"wheezy\"],\"articleSection\":[\"Databases\",\"Debian\",\"Tutorials\",\"Web Frameworks\",\"Web Servers\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-set-up-lamp-linux-apache-mariadb-php-stack-on-debian-wheezy\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-set-up-lamp-linux-apache-mariadb-php-stack-on-debian-wheezy\\\/\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-set-up-lamp-linux-apache-mariadb-php-stack-on-debian-wheezy\\\/\",\"name\":\"How to set up LAMP (Linux, Apache, MariaDB, PHP) stack on Debian Wheezy | RoseHosting\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-set-up-lamp-linux-apache-mariadb-php-stack-on-debian-wheezy\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-set-up-lamp-linux-apache-mariadb-php-stack-on-debian-wheezy\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2013\\\/09\\\/how-to-set-up-lamp-linux-apache-mariadb-php-stack-on-debian-wheezy.png\",\"datePublished\":\"2013-10-11T22:26:18+00:00\",\"dateModified\":\"2022-06-03T08:52:15+00:00\",\"description\":\"How to set up LAMP (Linux, Apache, MariaDB, PHP) stack on Debian Wheezy | RoseHosting\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-set-up-lamp-linux-apache-mariadb-php-stack-on-debian-wheezy\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-set-up-lamp-linux-apache-mariadb-php-stack-on-debian-wheezy\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-set-up-lamp-linux-apache-mariadb-php-stack-on-debian-wheezy\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2013\\\/09\\\/how-to-set-up-lamp-linux-apache-mariadb-php-stack-on-debian-wheezy.png\",\"contentUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2013\\\/09\\\/how-to-set-up-lamp-linux-apache-mariadb-php-stack-on-debian-wheezy.png\",\"width\":250,\"height\":250,\"caption\":\"how-to-set-up-lamp-linux-apache-mariadb-php-stack-on-debian-wheezy\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-set-up-lamp-linux-apache-mariadb-php-stack-on-debian-wheezy\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to set up LAMP (Linux, Apache, MariaDB, PHP) stack on Debian Wheezy\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/\",\"name\":\"RoseHosting.com\",\"description\":\"Premium Linux Tutorials Since 2001\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#organization\",\"name\":\"RoseHosting\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/03\\\/android-chrome-192x192-1.png\",\"contentUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/03\\\/android-chrome-192x192-1.png\",\"width\":192,\"height\":192,\"caption\":\"RoseHosting\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/RoseHosting\",\"https:\\\/\\\/x.com\\\/rosehosting\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/rosehosting\\\/\"],\"description\":\"RoseHosting is a leading Linux hosting provider, serving thousands of clients world-wide since 2001.\",\"email\":\"info@rosehosting.com\",\"telephone\":\"(314) 275-0414\",\"legalName\":\"Rose Web Services LLC\",\"foundingDate\":\"2001-04-02\",\"numberOfEmployees\":{\"@type\":\"QuantitativeValue\",\"minValue\":\"11\",\"maxValue\":\"50\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/person\\\/7ce77a842fa6a9a7f8efa186f2353713\",\"name\":\"Jeff Wilson\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g\",\"caption\":\"Jeff Wilson\"},\"description\":\"An experienced Linux veteran with many years of experience. Helping other Linux admins with frequent Linux and business-related blog posts on the RoseHosting blog. Techie by choice. Loving nature and travel. Happily married and father of two lovely children.\",\"sameAs\":[\"https:\\\/\\\/www.rosehosting.com\",\"https:\\\/\\\/www.facebook.com\\\/rosehosting.helpdesk\"],\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/author\\\/jwilson\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How to set up LAMP (Linux, Apache, MariaDB, PHP) stack on Debian Wheezy | RoseHosting","description":"How to set up LAMP (Linux, Apache, MariaDB, PHP) stack on Debian Wheezy | RoseHosting","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.rosehosting.com\/blog\/how-to-set-up-lamp-linux-apache-mariadb-php-stack-on-debian-wheezy\/","og_locale":"en_US","og_type":"article","og_title":"How to set up LAMP (Linux, Apache, MariaDB, PHP) stack on Debian Wheezy","og_description":"How to set up LAMP (Linux, Apache, MariaDB, PHP) stack on Debian Wheezy | RoseHosting","og_url":"https:\/\/www.rosehosting.com\/blog\/how-to-set-up-lamp-linux-apache-mariadb-php-stack-on-debian-wheezy\/","og_site_name":"RoseHosting","article_publisher":"https:\/\/www.facebook.com\/RoseHosting","article_author":"https:\/\/www.facebook.com\/rosehosting.helpdesk","article_published_time":"2013-10-11T22:26:18+00:00","article_modified_time":"2022-06-03T08:52:15+00:00","og_image":[{"width":250,"height":250,"url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2013\/09\/how-to-set-up-lamp-linux-apache-mariadb-php-stack-on-debian-wheezy.png","type":"image\/png"}],"author":"Jeff Wilson","twitter_card":"summary_large_image","twitter_creator":"@rosehosting","twitter_site":"@rosehosting","twitter_misc":{"Written by":"Jeff Wilson","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-set-up-lamp-linux-apache-mariadb-php-stack-on-debian-wheezy\/#article","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-set-up-lamp-linux-apache-mariadb-php-stack-on-debian-wheezy\/"},"author":{"name":"Jeff Wilson","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713"},"headline":"How to set up LAMP (Linux, Apache, MariaDB, PHP) stack on Debian Wheezy","datePublished":"2013-10-11T22:26:18+00:00","dateModified":"2022-06-03T08:52:15+00:00","mainEntityOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-set-up-lamp-linux-apache-mariadb-php-stack-on-debian-wheezy\/"},"wordCount":518,"commentCount":2,"publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-set-up-lamp-linux-apache-mariadb-php-stack-on-debian-wheezy\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2013\/09\/how-to-set-up-lamp-linux-apache-mariadb-php-stack-on-debian-wheezy.png","keywords":["apache","debian vps","how-to","howto","lamp","Linux","linux vps","mariadb","php","rosehosting","wheezy"],"articleSection":["Databases","Debian","Tutorials","Web Frameworks","Web Servers"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.rosehosting.com\/blog\/how-to-set-up-lamp-linux-apache-mariadb-php-stack-on-debian-wheezy\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-set-up-lamp-linux-apache-mariadb-php-stack-on-debian-wheezy\/","url":"https:\/\/www.rosehosting.com\/blog\/how-to-set-up-lamp-linux-apache-mariadb-php-stack-on-debian-wheezy\/","name":"How to set up LAMP (Linux, Apache, MariaDB, PHP) stack on Debian Wheezy | RoseHosting","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-set-up-lamp-linux-apache-mariadb-php-stack-on-debian-wheezy\/#primaryimage"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-set-up-lamp-linux-apache-mariadb-php-stack-on-debian-wheezy\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2013\/09\/how-to-set-up-lamp-linux-apache-mariadb-php-stack-on-debian-wheezy.png","datePublished":"2013-10-11T22:26:18+00:00","dateModified":"2022-06-03T08:52:15+00:00","description":"How to set up LAMP (Linux, Apache, MariaDB, PHP) stack on Debian Wheezy | RoseHosting","breadcrumb":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-set-up-lamp-linux-apache-mariadb-php-stack-on-debian-wheezy\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.rosehosting.com\/blog\/how-to-set-up-lamp-linux-apache-mariadb-php-stack-on-debian-wheezy\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-set-up-lamp-linux-apache-mariadb-php-stack-on-debian-wheezy\/#primaryimage","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2013\/09\/how-to-set-up-lamp-linux-apache-mariadb-php-stack-on-debian-wheezy.png","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2013\/09\/how-to-set-up-lamp-linux-apache-mariadb-php-stack-on-debian-wheezy.png","width":250,"height":250,"caption":"how-to-set-up-lamp-linux-apache-mariadb-php-stack-on-debian-wheezy"},{"@type":"BreadcrumbList","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-set-up-lamp-linux-apache-mariadb-php-stack-on-debian-wheezy\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.rosehosting.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to set up LAMP (Linux, Apache, MariaDB, PHP) stack on Debian Wheezy"}]},{"@type":"WebSite","@id":"https:\/\/www.rosehosting.com\/blog\/#website","url":"https:\/\/www.rosehosting.com\/blog\/","name":"RoseHosting.com","description":"Premium Linux Tutorials Since 2001","publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.rosehosting.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.rosehosting.com\/blog\/#organization","name":"RoseHosting","url":"https:\/\/www.rosehosting.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png","width":192,"height":192,"caption":"RoseHosting"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/RoseHosting","https:\/\/x.com\/rosehosting","https:\/\/www.linkedin.com\/in\/rosehosting\/"],"description":"RoseHosting is a leading Linux hosting provider, serving thousands of clients world-wide since 2001.","email":"info@rosehosting.com","telephone":"(314) 275-0414","legalName":"Rose Web Services LLC","foundingDate":"2001-04-02","numberOfEmployees":{"@type":"QuantitativeValue","minValue":"11","maxValue":"50"}},{"@type":"Person","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713","name":"Jeff Wilson","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g","caption":"Jeff Wilson"},"description":"An experienced Linux veteran with many years of experience. Helping other Linux admins with frequent Linux and business-related blog posts on the RoseHosting blog. Techie by choice. Loving nature and travel. Happily married and father of two lovely children.","sameAs":["https:\/\/www.rosehosting.com","https:\/\/www.facebook.com\/rosehosting.helpdesk"],"url":"https:\/\/www.rosehosting.com\/blog\/author\/jwilson\/"}]}},"_links":{"self":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/2181","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/comments?post=2181"}],"version-history":[{"count":3,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/2181\/revisions"}],"predecessor-version":[{"id":36686,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/2181\/revisions\/36686"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media\/2203"}],"wp:attachment":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media?parent=2181"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/categories?post=2181"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/tags?post=2181"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}