PHP web application on a LAMP Stack using IBM Bluemix
This solution walks you through the creation of an Ubuntu Linux virtual server, with Apache web server, MySQL, and PHP (the LAMP stack). To see the LAMP server in action, you will install and configure the WordPress open source application.
Time to complete: 15 minutes
{: pre}
sudo ssh root@<Public-IP-Address>
Run the following command to update Ubuntu package sources and reinstall Apache, MySQL, and PHP with latest versions.
sudo apt update && sudo apt install lamp-server^
Note the caret (^) at the end of the command.
Verify Apache, MySQL, and PHP running on Ubuntu image.
{: pre}
apache2 -v
{: pre}
sudo netstat -ntlp | grep LISTEN
{: pre}
mysql -V
{: pre}
mysql_secure_installation
{: pre}
mysql -u root -p
\q
.Check the version of PHP using the following command:
PHP -v
{: pre}
{: pre}
sudo sh -c 'echo "<?php phpinfo(); ?>" > /var/www/html/info.php'
If you want to try your LAMP stack, install a sample app. As an example, the following steps install the open source WordPress platform to create websites and blogs. For more information and settings for production installation, see the WordPress documentation.
Run the following command to install WordPress:
sudo apt install wordpress
{: pre}
Configure WordPress to use MySQL and PHP. Run the following command to open a text editor and create the file /etc/wordpress/config-localhost.php
sudo sensible-editor /etc/wordpress/config-localhost.php
{: pre}
{: pre}
<?php
define('DB_NAME', 'wordpress');
define('DB_USER', 'wordpress');
define('DB_PASSWORD', 'yourPassword');
define('DB_HOST', 'localhost');
define('WP_CONTENT_DIR', '/usr/share/wordpress/wp-content');
?>
{: pre}
sudo sensible-editor wordpress.sql
{: pre}
CREATE DATABASE wordpress;
GRANT SELECT,INSERT,UPDATE,DELETE,CREATE,DROP,ALTER ON wordpress.*
TO wordpress@localhost
IDENTIFIED BY 'yourPassword';
FLUSH PRIVILEGES;
{: pre}
cat wordpress.sql | sudo mysql --defaults-extra-file=/etc/mysql/debian.cnf
{: pre}
sudo ln -s /usr/share/wordpress /var/www/html/wordpress
sudo mv /etc/wordpress/config-localhost.php /etc/wordpress/config-default.php
To point your domain to the LAMP server, simply point the A record to the server public IP address.
You can get the server public IP address from the dashboard.
The correct monitoring must be in place for any production application. Below we will explore the options available to monitor a LAMP stack server and understand the usage of the server at any given time.
There are two basic monitoring types SERVICE PING and SLOW PING.
Service ping is added by default so let’s add Slow ping. To add Slow ping monitoring, follow the steps below:
Add the SLOW PING monitoring option and then click on Add Monitoring, for the IP address select your Public IP address.
Note duplicate monitors with the same configurations wont be allowed, only 1 monitor per configuration can be created.
Done, with that in place, you should now receive notification alert to your IBM Cloud account email address.
With IBM Cloud Virtual Servers, you have several security options like vulnerability scanner and add-on firewalls.
The vulnerability scanner scans the server for any vulnerabilities related to the server. To run a vulnerability scan on the server follow the steps below.
Click on the Scan complete button to view the report. View the report for any vulnerabilities. Expand on each of the results by clicking on the -+ buttons on the right.
The report should look like the image below:
Another way to secure the server is by adding firewall to the server. With IBM Cloud Virtual Servers, you have several firewall options that provide an essential security layer. The firewall options are provisioned on demand, without service interruptions. The firewall services prevent unwanted traffic from hitting your servers, reducing the likelihood of an attack and allowing your server resources to be dedicated for their intended use.
Firewalls are available as an add-on feature for all servers on the Infrastructure public network. As part of the ordering process, you can select device-specific hardware or a software firewall to provide protection. Alternatively, you can deploy dedicated firewall appliances to the environment and deploy the virtual server to a protected VLAN.
Learn more on firewalls here.
In this tutorial, you deployed a LAMP server using IBM Cloud. You learned how to:
Advance to the next tutorial to learn how to: