Installing WordPress on Free Cloud VPS from Host1Free


Installing WordPress on Free VPS from Host1Free will follow the same principle as installing on any server with root access from Command Line Interface. By principle its the same like we did for Installing WordPress on Rackspace Cloud Server. Host1Free is proving Cloud VPS for free of cost and you can install some softwares or can host a website if you want.

 

Installing WordPress on Free Cloud VPS from Host1Free : Preface

 

We applied for the account to writing the guide Installing WordPress on Free Cloud VPS from Host1Free, we have not mentioned our intention neither we any relationship with Host1Free. The process is easy, simply got to :

 

http://www.host1free.com/free-hosting/

 

Click Sign up Button, you will get 4 options of Server OS to choose from. We applied for Debian Squeeze x86, that is Debian 6 and there is no x64. There is reason for choosing Debian. As the RAM is 128 MB, its good to use Debian apart from the stability as we will get most repo by simply running commands. We used CentOS for for Installing WordPress on Rackspace Cloud Server guide.

You will get your free Cloud VPS account within few hours, activate the account and go the control panel :

 

Installing WordPress on Free Cloud VPS from Host1Free

 

You can set the Hostname from control panel and the I.P. address is there. Your password will be sent via email. A Free Cloud VPS can not be compared with Rackspace’s 32 GB VPS or Amazon’s VPS. But yes, its far better than many paid VPS. It supports API.

In the screen-shot you can see the name thecustomizewindows – its the name of the server we have chosen for our branding. It has nothing to do with domain name.  Copy the I.P. Address from the control panel to any text editor like Notepad. Change your Server’s password from Control Panel. If you are using Windows OS, download PuTTY, else use Terminal in Mac OS X or .

As most users uses Windows, we will show Installing WordPress on Free Cloud VPS using PuTTY, the commands will be essentially the same for Terminal.

 

Steps for Installing WordPress on Free Cloud VPS from Host1Free

 

So download PuTTY and double click to run it. Copy Paste the I.P. Address and Hit Open, no change of settings is required. It will load with :

 

login as :

 

Type root and hit Enter or Return from Keyboard. The password is your set password if you changed it, else its the password sent via email. Type the password, you will not see anything, just hit enter after typing the password rightly. You have to accept the key, a prompt will pop up. So, I have logged in :

 

 

Free Cloud VPS from Host1Free

 

We will perform a typical Apache Server installation. You can use nginx as server software. ngnix is lighter and faster and its easy to use with Debian. You can use nginx for Installing WordPress on Free Cloud VPS, simply follow the commands of this tutorial.


Update the repo :

 

apt-get update

 

It will take a bit time. Check the update :

 

apt-get upgrade --show-upgraded

 

As the RAM is very small in amount, it is the major problem to update it. Install Apache 2 :

 

apt-get install apache2

 

It will show you upgrade message, accept it with typing Y :

 

Apache2

 

 

Type :

 

a2enmod rewrite

 

Its for mod rewrite. We will need it for using WordPress’s .htaccess mod rewrite features.

 

We are taking that, you already have a domain. So change your position to :

 

cd /etc/apache2/sites-available/

 

Taking your domain is domain.com, create these folders :

 

mkdir -p /srv/www/domain.com/public_
mkdir /srv/www/domain.com/logs

 

From the control panel, the virtual host should be set , still look and check there. If you have set your domain as domain.com, the, open the named file with nano or vi and edit it, the location should be :

 

/etc/apache2/sites-available/domain.com

 

The server is basically weak on RAM, you might face hanged condition. Reboot from Control Panel in such case. This is a typical example of the virtual host configuration :

 

<VirtualHost *:80>
 ServerAdmin webmaster@domain.com
 ServerName yourservername
 ServerAlias www.domain.com
 DocumentRoot /srv/www/domain.com/public_html/
 ErrorLog /srv/www/domain.com/logs/error.log
 CustomLog /srv/www/domain.com/logs/access.log combined
</VirtualHost>

 

Add the connection :

 

a2ensite domain.com

 

Restart Apache :

 

/etc/init.d/apache2 reload

 

Install mySQL :

 

apt-get install mysql-server

 

Then :

 

mysql_secure_installation

 

 

Login :

 

mysql -u root -p

 

Now create a  by typing -

create  wordpress;

 

Then :
Type -

create user ‘wordpress’@'localhost’ identified by ‘password’;

 

then -

grant all privileges on ‘.’ to ‘wordpress’@'localhost’ with grant options;

 

Type quit to quit.

 

apt-get install 5 -pear 5-suhosin 5-mysql

 

Restart Apache :

 

/etc/init.d/apache2 restart

 

Go to your public Directory :

 

CD /srv/www/domain.com/public_html

 

Download WordPress :

 

wget http://wordpress.org/latest.tar.gz

 

Untar it :

 

tar -xzvf latest.tar.gz

 

Move all files from WordPress sub directory to root :

 

mv /wordpress* .

 

Note the dot.

 

Point your browser to :

 

http://yourdomain.com/wp-admin/install.php

 

It will say that there is no configuration file, create it and use the database you entered above and we have completed Installing WordPress on Free Cloud VPS from Host1Free.

 

Signature


0saves
If you enjoyed this post, please consider leaving a comment or subscribing to the RSS feed to have future articles delivered to your feed reader.

Leave Lame Behind - Get Engaged

Here’s what we’ve got for you:

Contact Us Today for Smarter Marketing of Knowledge

See each of the premium resources below:

For Publishers and Content Owners

Do you want to optimize your available content?

Do you want to increase the visibility of your content?

Do you want to increase your reliability as an Author?

Do you want your next or existing project to be technically planned?

If your answer to any of these is YES contact us with your approximate budget.

Contact Us Today

For the Media Companies and Advertisers

You must be seeking a publisher website like ours with real content to give an exposure to your client's business?

We provide Industry's Standard opportunities for advertisement.

All comes with proper invoicing, SLA on per annum basis.

If your answer is YES contact us today for a quote.

Contact Us Today for Quote

Mentions

  1. Installing WordPress on Free Cloud VPS says:

    [...] Installing WordPress on Free Cloud VPS from Host1Free [...]

Leave a Reply

Your email address will not be published. Required fields are marked *

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>