Here is a Video Guide on How To Install WordPress on HP Cloud With Nginx PHP5-FPM MariaDB on Ubuntu 14.04. We Have Kept The New Users in Mind. So the steps are shown in a way so that, they can follow the guide without much issue. We have added the components which will be useful for optimizing Nginx PHP5-FPM in future. This is basic installation guide.
Preparation To Install WordPress on HP Cloud Video Guide
For HP Cloud, it is very important to configure the router first. You can watch the video for creating instance on HP Cloud. This guide to Install WordPress on HP Cloud Video Guide can be taken as the continuation of the previous guide.
Obviously, you should use either iTerm2 or Terminal (OS X or GNU/Linux) or PuTTY in case of Microsoft Windows.
---
Preparation To Install WordPress on HP Cloud Video Guide
We have used these two commands (which has shown on the video) for PHP5-FPM part :
1 2 3 | apt-get install php5-common php5-mysqlnd php5-xmlrpc php5-curl php5-gd php5-cli php5-fpm php-pear php5-dev php5-imap php5-mcrypt apt-get install snmp php5-mysql php5-curl php5-intl php-pear php5-imagick php5-imap php5-mcrypt php5-memcache php5-ming php5-ps php5-pspell php5-recode php5-snmp php5-sqlite php5-tidy php5-xmlrpc php5-xsl php5-xcache libssh2-php |
and for creating the database, we used these commands :
1 2 3 4 5 6 | mysql -u root -h localhost -p CREATE DATABASE Abhishek2011; CREATE USER 'ahishek2014'@'localhost' IDENTIFIED BY 'password'; GRANT ALL PRIVILEGES ON Abhishek2011.* TO 'ahishek2014'@'localhost'; FLUSH PRIVILEGES; |
Installing WordPress on HP Cloud has been written in step by step commands has been written on the articles published before to install WordPress.
As you are a new user, you might feel uneasy with any of the stuffs, to make it easy for you, you can think the installation process in this simple way :
Installing WordPress is very easy. For the new users it takes a bit time to get used with command line interface. That is the age old, gold standard way to connect and work on server.