Apache is an open-source multi-platform web server. It provides a full range of web server features including CGI, SSL and virtual domains.
To install Apache, enter the following command from your terminal:
Test Apache:
Open your web browser and navigate to http://localhost/ or http://server-ip-address/
Install MySQL
MySQL is a relational database management system (RDBMS) that runs as a server providing multi-user access to a number of databases, though SQLite probably has more total embedded deployments
During installation, you’ll be asked to setup the MySQL root user password. Enter the password and click Ok.
Now, MySQL server has been installed.
You can verify the MySQL server status using command:
Sample output:
Note: If you want to use MariaDB instead of MySQL, then follow these steps.
Install MariaDB
MariaDB is a drop in replacement for MySQL. It is a robust, scalable and reliable SQL server that comes rich set of enhancements.
First you have to remove existing MySQL packages if any. To completely uninstall MySQL along with its configuration files, enter the following command:
Run the following command to remove unwanted packages.
After removing MySQL, run the following command to install MariaDB.
Alternatively, you can install it from MariaDB repository if you want to try most recent version of MariaDB. Run the following commands to add PPA. As of writing this, MariaDB PPA is not yet updated to Ubuntu 14.10. However, we can use the repository of Ubuntu 14.04 instead.
Update the software sources list and install MariaDB using following commands:
During installation you will be asked to set mysql ‘root’ user password.
Check if mariadb is running or not, using the following command:
Sample output:
Install PHP
PHP (recursive acronym for PHP: Hypertext Preprocessor) is a widely used open-source general purpose scripting language that is especially suited for web development and can be embedded into HTML.
Install PHP with following command:
To test PHP, create a sample “testphp.php” file in Apache document root folder.
Add the following lines.
Restart apache2 service:
Navigate to http://server-ip-address/testphp.php. It will display all the details about php such as version, build date and commands etc.
If you want to install all php modules, enter the command sudo apt-get install php* and restart the apache2 service. To verify the modules, open web browser and navigate to http://server-ip-address/testphp.php. You will able to see all installed php modules.
Manage MySQL Databases (Optional)
Install phpMyAdmin
phpMyAdmin is a free open-source web interface tool used to manage your MySQL databases. It is available in the Official Debian repositories. So install it with command:
Select the Web server you use. In my case, it is apache2.
Success, phpMyAdmin installation has been completed now.
Access phpMyAdmin Web Console
Now, you can access the phpmyadmin console by navigating to http://server-ip-address/phpmyadmin/ from your browser.
Enter your MySQL username and password which you have given in previous steps. In my case its “root” and “ubuntu”.
You will be redirected to PhpMyAdmin main web interface.
Now, you can manage your MySQL databases from phpMyAdmin web interface.
That’s it. Your LAMP server is up and running now.
ไม่มีความคิดเห็น:
แสดงความคิดเห็น