The Benefits of VPS Hosting

Flexibility - You have the freedom to choose the operating system and software you want to install on the server.The Benefits of VPS Hosting

Seemingly out of nowhere, VPS has become the preferred hosting solution for small to medium sized businesses.聽 VPS stands for Virtual Private Server, a solution that effectively bridges the gap between the limitations of shared hosting and the flexibility of dedicated server hosting.聽 A VPS is created by virtualization software which partitions a single physical server to form multiple servers within it.聽 Each virtual server is completely independent of its neighbors and functions like an actual networked server.聽 What makes VPS hosting so popular is that it provides control at a level similar to a dedicated server at a price not to far removed from affordable shared hosting .

Here are some of the benefits that come along with VPS hosting:The Benefits of VPS Hosting

Stability: Unlike shared hosting, the traffic and activities of other VPS customers will not adversely affect your operation.

Dedicated Resources - VPS hosting provides you with more disk space, CPU and RAM.

Performance - Having your own allotment of resources allows you and your visitors to enjoy faster load times.

VPS Features 闃呰鍏ㄦ枃 禄

Article Source : The Benefits of VPS Hosting

What is a Virtual Private Server Hosting?

鈥 Incredible Value 鈥 A VPS hosting solution can provide you with a tremendous value. While a dedicated server could end up costing you well over $100 per month, the price of a virtualized platform is usually not too far removed from shared hosting. The distinct makeup of VPS technology allows the cost of the hardware, software, network connectivity and maintenance to be efficiently distributed without compromising your quality. 闃呰鍏ㄦ枃 禄 What is a Virtual Private Server Hosting?

Virtual private server, or VPS, represents the next generation of web hosting that revolves around partitioning a single computer to simulate multiple servers. The unique aspect is that each server has the look and feel of a physical server, equipped with its own operating system and the ability to be rebooted independently of others. Similar practices have actually been used in mainframe computers for some time, but the emergence of virtualization technology has pushed VPS hosting into the mainstream market as a cost efficient, high performance solution.

Virtual private servers are designed to provide customers with a way to save money without the sacrifice of performance, flexibility and security. VPS hosting can be viewed as the perfect compromise between a shared and dedicated server, as it provides a great deal of freedom at what is usually a very reasonable price.What is a Virtual Private Server Hosting?

How You Can You Benefit from VPS Hosting

Here are more specific details on how you can benefit from a virtual private server:

Article Source : What is a Virtual Private Server Hosting?

How to install OpenVPN on a Debian/Ubuntu VPS instantly

chmod +x debian-openvpn.shHow to install OpenVPN on a Debian/Ubuntu VPS instantly

/etc/init.d/openvpn start
clear

echo -e "\n\n\n\n\n\n\n" | ./build-ca
clear
echo "####################################"
echo "Feel free to accept default values"
echo "Wouldn't recommend setting a password here"
echo "Then you'd have to type in the password each time openVPN starts/restarts"
echo "####################################"
./build-key-server server
./build-dh
cp keys/{ca.crt,ca.key,server.crt,server.key,dh1024.pem} /etc/openvpn/

clear
echo "####################################"
echo "Feel free to accept default values"
echo "This is your client key, you may set a password here but it's not required"
echo "####################################"
./build-key client1
cd keys/

echo "$client" > $HOSTNAME.ovpn

client="
client
remote $ip 1194
dev tun
comp-lzo
ca ca.crt
cert client1.crt
key client1.key
route-delay 2
route-method exe
redirect-gateway def1
dhcp-option DNS 10.8.0.1
verb 3"

To install issue the following commands logged in as root on your VPS.

Minor distribution specific changes were made on the previous CentOS script to get it working under Debian and Ubuntu. We might create one single script which will install OpenVPN on most distributions and architectures in future.

You may use and modify this script however you see fit, provided that you do not edit the original copyright.

tar czf keys.tgz ca.crt ca.key client1.crt client1.csr client1.key $HOSTNAME.ovpn
mv keys.tgz /root

opvpn='
dev tun
server 10.8.0.0 255.255.255.0
ifconfig-pool-persist ipp.txt
ca ca.crt
cert server.crt
key server.key
dh dh1024.pem
push "route 10.8.0.0 255.255.255.0"
push "redirect-gateway"
comp-lzo
keepalive 10 60
ping-timer-rem
persist-tun
persist-key
group daemon
daemon'

This is a follow up post to How to setup a VPN server on a CentOS VPS instantly same requirements and instructions apply.

#!/bin/bash
# Quick and dirty OpenVPN install script
# Tested on debian 5.0 32bit, openvz minimal debian OS template
# and Ubuntu 9.04 32 bit minimal, should work on 64bit images as well
# Please submit feedback and questions at support@vpsnoc.com

ip=`grep address /etc/network/interfaces | grep -v 127.0.0.1聽 | awk '{print $2}'`
apt-get update
apt-get install openvpn libssl-dev聽 openssl
cd /etc/openvpn/
cp -R /usr/share/doc/openvpn/examples/easy-rsa/ /etc/openvpn/
cd /etc/openvpn/easy-rsa/2.0/
chmod +rwx *
. ./vars
./clean-all
source ./vars

./debian-openvpn.sh

For any other issues and feedback please e-mail us at support@vpsnoc.comHow to install OpenVPN on a Debian/Ubuntu VPS instantly

wget http://vpsnoc.com/scripts/debian-openvpn.sh

echo 1 > /proc/sys/net/ipv4/ip_forward
iptables -t nat -A POSTROUTING -s 10.8.0.0/24 -o venet0 -j MASQUERADE
iptables-save > /etc/iptables.conf
echo "#!/bin/sh" > /etc/network/if-up.d/iptables
echo "iptables-restore < /etc/iptables.conf" >> /etc/network/if-up.d/iptables
chmod +x /etc/network/if-up.d/iptables
echo "net.ipv4.ip_forward=1" >> /etc/sysctl.conf

echo "OpenVPN has been installed
Download /root/keys.tgz using winscp or other sftp/scp client such as filezilla
Create a directory named vpn at C:\Program Files\OpenVPN\config\ and untar the content of keys.tgz there
Start openvpn-gui, right click the tray icon go to vpn and click connect

# John Malkowski vpsnoc.com 01/18/2010

echo "$opvpn" > /etc/openvpn/openvpn.conf

Article Source : How to install OpenVPN on a Debian/Ubuntu VPS instantly

How to setup a VPN server on a CentOS VPS instantly

client="
client
remote $ip 1194
dev tun
comp-lzo
ca ca.crt
cert client1.crt
key client1.key
route-delay 2
route-method exe
redirect-gateway def1
dhcp-option DNS 10.8.0.1
verb 3"

echo "$client" > $HOSTNAME.ovpn How to setup a VPN server on a CentOS VPS instantly

1. CentOS 5 32bit minimal OS template

# John Malkowski vpsnoc.com 01/04/2010

Login to your VPS as root and execute the following commands

wget http://vpsnoc.com/scripts/install-openvpn.sh
chmod +x install-openvpn.sh
./install-openvpn.sh

You will be prompted to enter values for your server and client certificate, feel free to accept (hit enter) the default values. Its not recommended to setup a password for your server certificate as you will have to type in the password each time you wish to start/restart the openvpn daemon.
You can however set a password for your client鈥檚 certificate since it offers extra level of protection in case your certificate and key files are compromised. You will be prompted for that password each time you connect on your VPS鈥檚 VPN.

echo "OpenVPN has been installed
Download /root/keys.tgz using winscp or other sftp/scp client such as filezilla
Create a directory named vpn at C:\Program Files\OpenVPN\config\ and untar the content of keys.tgz there
Start openvpn-gui, right click the tray icon go to vpn and click connect

ip=`grep IPADDR /etc/sysconfig/network-scripts/ifcfg-venet0:0 | awk -F= '{print $2}'`

/etc/init.d/openvpn start
clear

Requirements

3. iptables NAT support

wget http://packages.sw.be/rpmforge-release/rpmforge-release-0.3.6-1.el5.rf.i386.rpm
rpm -iv rpmforge-release-0.3.6-1.el5.rf.i386.rpm
rm -rf rpmforge-release-0.3.6-1.el5.rf.i386.rpm

clear
echo "####################################"
echo "Feel free to accept default values"
echo "This is your client key, you may set a password here but it's not required"
echo "####################################"
./build-key client1
cd keys/

If you鈥檙e facing issues make sure that your computer clock is synchronized, if so make sure that your VPS鈥檚 clock is correct as well. If it鈥檚 not you will have to ask your host to sync it.

opvpn='
dev tun
server 10.8.0.0 255.255.255.0
ifconfig-pool-persist ipp.txt
ca ca.crt
cert server.crt
key server.key
dh dh1024.pem
push "route 10.8.0.0 255.255.255.0"
push "redirect-gateway"
comp-lzo
keepalive 10 60
ping-timer-rem
persist-tun
persist-key
group nobody
daemon'

echo "$opvpn" > /etc/openvpn/openvpn.conf

echo 1 > /proc/sys/net/ipv4/ip_forward
iptables -t nat -A POSTROUTING -s 10.8.0.0/24 -o venet0 -j MASQUERADE
iptables-save > /etc/sysconfig/iptables
sed -i 's/eth0/venet0/g' /etc/sysconfig/iptables # dirty vz fix for iptables-save
echo "net.ipv4.ip_forward=1" >> /etc/sysctl.conf

After the script finished installing openvpn (should be very quick) the client keys and the openvpn client configuration file will be archived in /root/keys.tgz
You may use a sftp/scp client such as winscp or filezilla to download the archive on your computer.

If you already haven鈥檛 installed openvpn for windows you may do so now.
You may use winrar or 7zip to extract the content of keys.tgz in C:\Program Files\OpenVPN\config\VPN (create a folder named VPN there)
After you have extracted the files from keys.tgz in the above folder, you may start openvpn-gui from the start menu, right click the tray icon, go to VPN and click connect. After the icon turns green all your traffic will be forwarded through your VPS, no extra configuration on your browser/IM client/email client is required.

tar czf keys.tgz ca.crt ca.key client1.crt client1.csr client1.key $HOSTNAME.ovpn
mv keys.tgz /root

2. TUN/TAP device enabled on your VPS

We have made a small and dirty bash script which installs and configures OpenVPN on CentOS 5 32bit. The VPN server鈥檚 primary (and only) use is for safe browsing i.e. tunneling all your traffic through your VPS. The script also generates your client configuration file along with the necessary keys for authentication.How to setup a VPN server on a CentOS VPS instantly

You may use and modify this script however you see fit, provided that you do not edit the original copyright.

#!/bin/bash
# Quick and dirty OpenVPN install script
# Tested on Centos 5.x 32bit, openvz minimal CentOS OS templates
# Please submit feedback and questions at support@vpsnoc.com

For any other issues and feedback please e-mail us at support@vpsnoc.com

You will have to open a ticket to request a TUN/TAP device to be enabled on your VPS. If you鈥檙e not a customer of ours and your host鈥檚 support staff doesn鈥檛 know how to do this, you may tell them to execute the following commands on the hardware node where your VPS is hosted.

vzctl stop YOUR_VEID
vzctl set YOUR_VEID --devices c:10:200:rw --save
vzctl set YOUR_VEID --capability net_admin:on --save
vzctl start YOUR_VEID
vzctl exec YOUR_VEID "mkdir -p /dev/net; mknod /dev/net/tun c 10 200; chmod 600 /dev/net/tun"
# iptables support
vzctl stop YOUR_VEID
vzctl set YOUR_VEID --iptables ipt_REJECT --iptables ipt_tos --iptables ipt_TOS --iptables ipt_LOG --iptables ip_conntrack --iptables ipt_limit --iptables ipt_multiport --iptables iptable_filter --iptables iptable_mangle --iptables ipt_TCPMSS --iptables ipt_tcpmss --iptables ipt_ttl --iptables ipt_length --iptables ipt_state --iptables iptable_nat --iptables ip_nat_ftp --save
vzctl start YOUR_VEID

Make sure they will replace 鈥榊OUR_VEID鈥 with your VPS鈥檚 VEID and you will be ready to roll

yum -y install openvpn openssl openssl-devel
cd /etc/openvpn/
cp -R /usr/share/doc/openvpn-2.0.9/easy-rsa/ /etc/openvpn/
cd /etc/openvpn/easy-rsa/2.0/
chmod +rwx *
. ../vars
./clean-all
source ./vars

echo -e "\n\n\n\n\n\n\n" | ./build-ca
clear
echo "####################################"
echo "Feel free to accept default values"
echo "Wouldn't recommend setting a password here"
echo "Then you'd have to type in the password each time openVPN starts/restarts"
echo "####################################"
./build-key-server server
./build-dh
cp keys/{ca.crt,ca.key,server.crt,server.key,dh1024.pem} /etc/openvpn/

Article Source : How to setup a VPN server on a CentOS VPS instantly

http://winscp.net/eng/download.phphttp://filezilla-project.org/download.phphttp://openvpn.se/download.html

Ultimate Guide for VPS Hosting Shoppers

VPS Hosting

A Virtual Private Server (VPS) is like a server in a bigger server. I know the statment is a little confusing but please don鈥檛 get panic about it.Ultimate Guide for VPS Hosting Shoppers

The actual concept behind VPS is very simple 鈥 basically what VPS hosting providers do is to split a server into multiple smaller size individual servers (using virtualization technology) and rent it out to different customers. Each of these virtual servers looks and feels the same like a dedicated server except for one thing 鈥 they share the same hardware with one another.

From a customer鈥檚 perceptive, a VPS hosting is the perfect stepping stone between shared and dedicated web hosting. When shared web hosting is no longer sufficient and you are not ready to go with dedicated 鈥 VPS hosting is your answer.

What鈥檚 good about VPS hosting?

What is VPS hosting?Ultimate Guide for VPS Hosting Shoppers

What鈥檚 best about VPS is the isolated hosting environment that secures your website鈥檚 performance and safety. As mentioned, a VPS-hosted website will operates independently like a dedicated server 鈥 you do not share disk space, RAM, processes, TCP/IP stacks, operating system, or whatsoever. What鈥檚 going on with your neighbors (other private servers that run on the same machine), either it鈥檚 overloaded with heavy traffics or severely hacked, will not affect your website鈥檚 performance. 闃呰鍏ㄦ枃 禄

Advantages of VPS over shared hosting

Article Source : Ultimate Guide for VPS Hosting Shoppers

http://winscp.net/eng/download.phphttp://filezilla-project.org/download.phphttp://openvpn.se/download.html

13 Free Website Speed Services

闃呰鍏ㄦ枃 禄 13 Free Website Speed Services

Websiteoptimization site features a very strong pace of testing services, available through URL, HTM, JAVA code in three ways to test the results were very complete, including HTML, Images, CSS, Javascript and other various types of access speed, commendable is that the results will be based on your give some constructive comments.

Access speed for a website or blog is too important, according to estimates of the departments concerned: General 1 5-8 seconds if the viewer does not open a website, then the site will lose 1 / 3 of the browser user. More than 10 seconds, your visitors will definitely lose patience! Today, do not speak on how to improve access speed, I suggest we build the Web site or blog in the habit after the test speed of access. The following recommended several useful access speed testing services.
Pingdom very professional web speed service, a number of elements in the page 11 guns, clearly see what care your back. To provide a comprehensive evaluation of the web speed of analysis, to see if there would have inspired the design of your blog. 13 Free Website Speed Services

Article Source : 13 Free Website Speed Services

http://winscp.net/eng/download.phphttp://filezilla-project.org/download.phphttp://openvpn.se/download.htmlhttp://www.websiteoptimization.com/services/analyze/http://tools.pingdom.com/

Your website “IPv6 Ready” it?

This article written for the students using VPS, even if your VPS provider does not support IPv6, you can put your site made IPv6 Ready! If you have a lot of readers in the education network, it will be very worthwhile to do next, because the education network without international connections, but there is a free IPv6. If your VPS provider to support IPv6 then you can see from the first step 5 onwards, if not support, then please look at starting from scratch. Is currently only in the Diahosting experiment was a success on the VPS (independent server, of course, there is no problem, as personal computers, must have a public network IP address of the will; because of the need kernel support for IPv6 and the tun / tap, it may be part of the Xen, OpenVZ does not support the ). Ready, Let鈥檚 begin!
1. The basic principles ofYour website "IPv6 Ready" it?

Although your VPS does not support IPv6, but we can through the IPv6 Tunnel to solve, which is usually said, IPv6 Over IPv4, can be interpreted as the IPv6 in IPv4 to establish a small pipeline. We use the HE (Hurricane Electronics) provides a free IPv6 Tunnel Broker, HE has the world鈥檚 largest IPv6 backbone network in the world, are provided with IPv6 Tunnel Broker service.
2. Register for a free HE IPv6 Tunnel Broker 闃呰鍏ㄦ枃 禄 Your website "IPv6 Ready" it?

Article Source : Your website "IPv6 Ready" it?

http://winscp.net/eng/download.phphttp://filezilla-project.org/download.phphttp://openvpn.se/download.htmlhttp://www.websiteoptimization.com/services/analyze/http://tools.pingdom.com/

What is VPS?

A virtual private server (VPS, also referred to as Virtual Dedicated Server or VDS) is a method of splitting a server. Each virtual server can run its own full-fledged operating system, and each server can be independently rebooted.(Via Wikipedia)What is VPS?

Benefits of VPS

(Via webhostingsecretrevealed.com)What is VPS?

Affordable VPS is cheap. You鈥檒l get features like dedicated servers but cost a lot more cheaper (in most of the case, 50% less) than a dedicated hosting plan. You can compare the pricing different between a dedicated server and VPS hosting below.

When your website has outgrown your shared hosting plan and you couldn鈥檛 afford the price of a dedicated server, then VPS is your answer. Most webmasters see VPS as the stepping stone to dedicated or self-managed private server.

Also, getting a flexible VPS provider that allows hardware customization is very important. Avoid web hosts who offer only 鈥檚tandard鈥 plans as this will creates troubles in your future upgrades. Each website has different needs, maybe you need lower CPU speeds, or larger storage, or less bandwidth, or more RAM 鈥 you鈥檒l never know what kind of upgrades you need in the future. Do you want to upgrade your entire hosting plan everytime you need a minor upgrades? No, of course. If all you need is just some extra RAM, why should you upgrade the entire hosting plan and pay for all the unnecessary storage and bandwidth?

What to look for when choosing a VPS?

Isolation Each private server has its unique file system and gets a聽 guaranteed fraction of the server鈥檚 disk space, CPU power, bandwidth, and memory. Hence, a website hosted on a VPS runs on an isolated environment where its performance will not be affected by other websites. Also, a VPS does not share web application and services with other websites thus it eliminates the risk of downtime or hacks due to other鈥檚 mistakes.

The best things about VPS are its dedicated-server-alike features and affordable pricing.

Is VPS right for you?

Customization VPS users get full root access. This allows server customization 鈥 you get to install your own software/application and manage your server as you would on a dedicated server.

Besides pricing, there are a few other important points that you should look at when it comes to VPS shopping. Choosing a VPS provider that鈥檚 easy to communicate is very important. A web host who鈥檚 willing to listen and accommodate your specific needs is very important.

Article Source : What is VPS?

http://winscp.net/eng/download.phphttp://filezilla-project.org/download.phphttp://openvpn.se/download.htmlhttp://www.websiteoptimization.com/services/analyze/http://tools.pingdom.com/http://en.wikipedia.org/wiki/Virtual_private_serverhttp://www.webhostingsecretrevealed.com/web-hosting-knowledge/what-is-vps-and-do-you-need-one/

VPS / server network bandwidth of the basics of purchasing articles

2, in the above we have come into contact with the MB / s, which MB / s and Mb / s What is the difference where? 闃呰鍏ㄦ枃 禄 VPS / server network bandwidth of the basics of purchasing articles

The so-called 10M bandwidth, I was referring to 10Mbps (megabits), which is 1.25MB / s, but this is only a theoretical speed, in fact, but also minus wear and tear. 10M bandwidth according to this argument the fastest download speed is 1.25MB / s, 100M bandwidth of the fastest download speed is 12.5MB / s.VPS / server network bandwidth of the basics of purchasing articles

1, we often hear such and such a server, IDC provides exclusive access to bandwidth is 10M or 100M share of the class of data. Here, 10M, 100M in the end what is the idea?

Buy VPS, stand-alone server will be related to a problem is that service provider鈥檚 network bandwidth.

Confusing several concepts: Mbps, Mb / s, MB / s.

Article Source : VPS / server network bandwidth of the basics of purchasing articles

http://winscp.net/eng/download.phphttp://filezilla-project.org/download.phphttp://openvpn.se/download.htmlhttp://www.websiteoptimization.com/services/analyze/http://tools.pingdom.com/http://en.wikipedia.org/wiki/Virtual_private_serverhttp://www.webhostingsecretrevealed.com/web-hosting-knowledge/what-is-vps-and-do-you-need-one/

Some commonly used to monitor Xen server commands

After the Xen server installed with the Xen virtual machine users increase, the need to regularly look at the Xen server (host) state, and various virtual machine (guest) of the operation, taking up system resources. There are already lots of monitoring tools for Xen can be used, but do not advocate the abuse VPSee third-party tools, will increase the burden on dom0, as well as a security risk, keep it simple (KISS), as far as possible with a simple tool to do things (do not understand why someone would write a note, still use Word, Notepad you can easily get to ah, this again makes me think of Vi vs IDE ~ ~). VPSee of several Xen servers are only used to provide a virtual single service, dom0 only to provide hardware abstraction, a hypervisor layer to a domU, so it should keep dom0 streamlined, but also for safety, do not advocate the dom0 to install and run any non 鈥 the necessary software. To monitor the Xen server, then the best is to use better command-line tool that comes with Xen. 闃呰鍏ㄦ枃 禄 Some commonly used to monitor Xen server commands

Article Source : Some commonly used to monitor Xen server commands

http://winscp.net/eng/download.phphttp://filezilla-project.org/download.phphttp://openvpn.se/download.htmlhttp://www.websiteoptimization.com/services/analyze/http://tools.pingdom.com/http://en.wikipedia.org/wiki/Virtual_private_serverhttp://www.webhostingsecretrevealed.com/web-hosting-knowledge/what-is-vps-and-do-you-need-one/