Home » Categories » Multiple Categories |
How To Install Linux, Apache, MySQL, PHP (LAMP) stack on Arch Linux |
Article Number: 213 | Rating: Unrated | Last Updated: Sun, Jan 5, 2014 at 8:08 PM
|
About LAMPThe LAMP stack is a group of open source software used to get web servers up and running. The acronym stands for Linux, Apache, MySQL, and PHP. Arch Linux uses the powerful Pacman installer which can download all of the most recent, required packages for each program with one command.Set UpThe steps in this tutorial require the user to have root privileges. You can see how to set that up here in steps 3 and 4.Step One—Install ApacheApache is a free open source software that runs over 50% of the world’s web servers.Before installing any of the LAMP programs, we should update the package manager: sudo pacman -SyuOnce the update is complete, we can install Apache: sudo pacman -S apacheAfter Apache is installed, we need to make a couple of changes in the configuration. Open up the apache configuration file: sudo nano /etc/httpd/conf/httpd.confComment out the unique_id_module (you can use ctrl w to find it quickly): #LoadModule unique_id_module modules/mod_unique_id.soRestart Apache: sudo systemctl restart httpdDuring the apache restart, you may get a notice that says the following: httpd: apr_sockaddr_info_get() failed for panel1 httpd: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1 for ServerName [DONE]Although this alert does not interfere with the apache launch, you can easily eliminate it if you like by adding your hostname to your configuration. Open up the hosts file: sudo nano /etc/hostsAdd your hostname to the end of the line beginning with 127.0.0.1: 127.0.0.1 localhost.localdomain localhost panel1Subsequent restarts of Apache will no longer display that message. With that, Apache is now installed on your server. Directing your browser to your server’s IP address (http://12.34.56.789) will display an auto-index directory. You can quickly try out a sample page by adding an index.html file to Arch’s document root directory, located within "srv/http”: sudo nano /srv/http/index.html <html> <title>Welcome</title> <body> <h2>Hello, Welcome to Arch</h2> </body> </html>You can visit the placeholder page by going to your server’s IP address in your browser. How to Find your Server’s IP addressYou can run the following command to reveal your server’s IP address.curl -s icanhazip.com Step Two—Install MySQLMySQL is a powerful database management system used for organizing and retrieving data.Since March 2013, MariaDB has become the default implementation of MySQL in Arch repositories. Installing the package "mysql" will automatically drop in MariaDB as a replacement. See the original announcement for more details. To install MySQL, open terminal and type in these commands: sudo pacman -S mysqlHit enter if it asks you anything, unless you know you don't want the defaults. Once you have installed MySQL, start it running sudo systemctl start mysqldFinish up by running the MySQL set up script: sudo mysql_secure_installationThe process will ask you for your current MySQL root password (not to be confused with your server password) and, since it has not yet been set, simply press enter. When prompted, "Set root password?” type Y, and afterwards enter in your new MySQL root password. After that it’s easiest just to say Yes to all the options. At the end, MySQL will reload and implement the new changes. By default, a MySQL installation has an anonymous user, allowing anyone to log into MySQL without having to have a user account created for them. This is intended only for testing, and to make the installation go a bit smoother. You should remove them before moving into a production environment. Remove anonymous users? [Y/n] y ... Success! Normally, root should only be allowed to connect from 'localhost'. This ensures that someone cannot guess at the root password from the network. Disallow root login remotely? [Y/n] y ... Success! By default, MySQL comes with a database named 'test' that anyone can access. This is also intended only for testing, and should be removed before moving into a production environment. Remove test database and access to it? [Y/n] y - Dropping test database... ... Success! - Removing privileges on test database... ... Success! Reloading the privilege tables will ensure that all changes made so far will take effect immediately. Reload privilege tables now? [Y/n] y ... Success! Cleaning up...Once you're done installing MySQL, finish the LAMP stack by installing PHP. Step Three—Install PHPPHP is an open source web scripting language that is widely used to build dynamic webpages.To install PHP, open terminal and type in this command. sudo pacman -S php php-apachePHP should also be added to the apache configuration file: sudo nano /etc/httpd/conf/httpd.confPaste in this text block within the config. # Use for PHP 5.x: LoadModule php5_module modules/libphp5.so AddHandler php5-script php Include conf/extra/php5_module.conf Step Four—See your PHP Config and Add Programs to StartupAfter LAMP is completely installed, we can take a look and see the PHP details by creating a quick php info pageTo set this up, first create a new blank file: sudo nano /srv/http/info.phpAdd in the following line: <?php phpinfo(); ?>Then Save and Exit. Restart apache so that all of the changes take effect: sudo systemctl restart httpdVisit your php info page (make sure you replace the example ip address with your correct one): http://12.34.56.789/info.php To close out the LAMP installation, open up the configuration file of Arch’s innitscripts and add the apache server and MySQL daemons to the list of programs that run upon server startup: sudo systemctl enable mysqld httpdCongratulations, you have now installed the LAMP server on Arch Linux! |
Attachments
There are no attachments for this article.
|
How To Create Data Queries in PostgreSQL By Using the Select Command
Viewed 14374 times since Mon, Dec 30, 2013
What is FTP and How Is It Used?
Viewed 2371 times since Fri, Dec 27, 2013
How To Install (LEMP) nginx, MySQL, PHP stack on Arch Linux
Viewed 13593 times since Sun, Dec 29, 2013
How To Use SuExec in Apache to run CGI Scripts on an Ubuntu
Viewed 3570 times since Mon, Dec 30, 2013
Initial Server Setup with Debian 7
Viewed 3677 times since Fri, Dec 27, 2013
How To Set Up an NFS Mount on Ubuntu 12.04
Viewed 10300 times since Tue, Dec 24, 2013
How To Use Arch Linux Package Management
Viewed 2607 times since Thu, Dec 26, 2013
How To Install Wordpress on Ubuntu 12.04
Viewed 2610 times since Tue, Dec 24, 2013
How To Use HAProxy to Set Up MySQL Load Balancing
Viewed 8195 times since Thu, Dec 26, 2013
How To Set Up a Postfix Email Server with Dovecot: Dynamic Maildirs and LMTP
Viewed 3595 times since Mon, Dec 30, 2013
|