Ads

Showing posts with label vps. Show all posts
Showing posts with label vps. Show all posts

Sunday, October 11, 2015

Free VPS Servers Windows & Linux no credit card

How about a Free VPS Hosting Server which provides you unlimited disk space, unlimited monthly traffic, Unlimited Bandwidth, Unlimited email accounts, free control panel and No ads. Well, finding such a server is not only hard but next to impossible because there is hosting provider who provides everything unlimited in a free VPS hosting.  Being a VPS expert we worked hard and find out few VPS Hosting providers which offer a free virtual private server hosting with decent server configuration. They might not give you a VPS with everything unlimited for free but the server they will provide you will suffice your basic need. You will also get an option to upgrade your server to a higher configuration by paying a small amount of money.

The free VPS comes with your favorite operating system i.e Windows, CENT OS, Ubuntu, Fedora, Debian etc. You can also get the latest version of your favorite operating system or can choose an older version based on the availability with the VPS Hosting provider.
As you must know that a Virtual Private Server or VPS is basically a Virtual Machine that allows you to run a copy of your own operating system and use 100% of resources without sharing with anyone. The virtual machine allows you to install any software you want and gives you root level access which you otherwise gets with a dedicated server. Virtual hosting offers you all dedicated server alike features with almost 1/4th or even lesser cost.
Popular Operating System Available With Free VPS Hosting
  • Windows 2008
  • Ubuntu 14.04
  • Ubuntu 13.10
  • Ubuntu 12.04
  • Ubuntu 12.10
  • Debian 7
  • Debian 6
  • Fedora 20
  • Fedora 19
  • Fedora 18
  • CentOS 7
  • CentOS 6

#1 Interserver Top Free VPS Hosting Provider

Interserver is one of the most trusted 15 years old web hosting company located in United States and known for it’s quality and affordable web hosting services. Interserver offers a 30 Days free VPS hosting to all of their new customers and renew it at a very cheap price of $6 per month. Interserver offers the widest array of OS with their VPS hosting i.e Windows, CENT OS, Fedora, Debian, Ubuntu etc. So if you want a VPS that comes with a higher up time and human support, we suggest you to give Interserver a try.

 Try IT

#2 Photon VPS Top Free VPS Hosting Provider

Photon VPS is another low cost quality VPS hosting provider. The hosting company doesn’t give you any free VPS hosting but they will charge only $5 per month for the their minimum plan to cover up their running cost. This kind of hosting is always recommended because it comes with certain up time guarantee and customer support.

Try IT

Saturday, August 1, 2015

How to Install VestaCP on VPS?

HI!
Today I'm going to share a trick for VPS.
Learn : How to install VestaCP on Centos,Debian,Ubuntu etc.
VestaCP is simple Web Hosting Control Panel which allows you to manage your website easily.
You can install it by using the following commands.

 $   wget http://vestacp.com/pub/vst-install.sh   
 $    vst-install.sh                                                 

After staring the setup, follow the instructions on the screen.

Wednesday, July 15, 2015

How to install Roundcube on VPS?

Hello friends!
To install roundcube on VPS, Please follow these steps...
Step 1 : Download Roundcube

$ wget http://sourceforge.net/projects/roundcubemail/files/roundcubemail/1.0.3/roundcubemail-1.0.3.tar.gz

Step 2 Extract Roundcbe Archive

$ tar -zxvf roundcubemail-1.0.3.tar.gz

Step 3 Rename the Folder Name

$ mv roundcubemail-1.0.3.tar.gz mail

Step 4 Now move mail directory to you public_html
/var/www/html/ is default directory in Centos

$ mv mail /var/www/html/

Step 5
Open Your browser and goto your IP address and Install Roundcube.

How to install Xampp on Centos?

Hello Friends!
In this post, I'm going to describe How to Install XAMPP on Centos?
Follow these steps...
Step 1 :
Download Xampp for Linux

$ wget http://downloads.sourceforge.net/project/xampp/XAMPP%20Linux/1.8.1/xampp-linux-1.8.1.tar.gz -O xampp-linux-1.8.1.tar.gz

Step 2 :
Make Directory named opt.

$ mkdir /opt

Step 3 :
Extract the archive.

$ tar -zxvf xampp-linux-1.8.1.tar.gz -C /opt/

Start Xampp Services

$ /opt/lampp/lampp start

Note : Please Stop Apache,MySQL and FTP Services before starting Xampp!

Tuesday, July 14, 2015

How to Install and configure Vsftpd on Centos

Hello friends!
In this post, I'm going to describe How to Install and Configure vsftpd on centos?.
Vsftpd is a FTP Server which allows you to manage your server files remotely.
Please Use the following commands to install vsftpd on centos.
Step 1 :
 

$ yum -y install vsftpd nano

Step 2 :
Edit the vsftpd configuration file

$ nano /etc/vsftpd/vsftpd.conf

Now edit line as

anonymous=NO
ascii_upload_enable=YES
ascii_download_enable=YES
chroot_local_user=YES
chroot_list_enable=YES
chroot_list_file=/etc/vsftpd/chroot_list
ls_recurse_enable=YES
#Now add this line
local_root=/var/www/html

Step 3 :

$ echo "admin" >> /etc/vsftpd/chroot_list

Replace admin with your username.
Step 4 :

$ service vsftpd start
$ chkconfig vsftpd on

Congratulations! VSFTPS Server has been successfuly installed on your Centos.