<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.openvz.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Vvs</id>
	<title>OpenVZ Virtuozzo Containers Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.openvz.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Vvs"/>
	<link rel="alternate" type="text/html" href="https://wiki.openvz.org/Special:Contributions/Vvs"/>
	<updated>2026-04-11T01:14:07Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.31.1</generator>
	<entry>
		<id>https://wiki.openvz.org/index.php?title=User:Aatanasov&amp;diff=23435</id>
		<title>User:Aatanasov</title>
		<link rel="alternate" type="text/html" href="https://wiki.openvz.org/index.php?title=User:Aatanasov&amp;diff=23435"/>
		<updated>2022-11-07T17:38:12Z</updated>

		<summary type="html">&lt;p&gt;Vvs: Creating user page for new user.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;a long time linux user - circa 1994, C addict - sometimes i write small C helpers in /tmp/1.c because it is faster for me than doing it in shell, ham radio operator, skier, drone pilot, hiker, swimmer, e-scooter rider, goKart driver.&lt;/div&gt;</summary>
		<author><name>Vvs</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.openvz.org/index.php?title=User:Roksoliana.ben&amp;diff=23434</id>
		<title>User:Roksoliana.ben</title>
		<link rel="alternate" type="text/html" href="https://wiki.openvz.org/index.php?title=User:Roksoliana.ben&amp;diff=23434"/>
		<updated>2022-11-07T17:37:33Z</updated>

		<summary type="html">&lt;p&gt;Vvs: Creating user page for new user.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;My name is Roksoliana, and I am a technical writer. I need this account to update this website, mainly to update the icon according to https://jira.sw.ru/browse/PSBM-142071&lt;/div&gt;</summary>
		<author><name>Vvs</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.openvz.org/index.php?title=File:Kernel_patches_stats.png&amp;diff=23424</id>
		<title>File:Kernel patches stats.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.openvz.org/index.php?title=File:Kernel_patches_stats.png&amp;diff=23424"/>
		<updated>2022-03-28T05:47:03Z</updated>

		<summary type="html">&lt;p&gt;Vvs: Vvs uploaded a new version of File:Kernel patches stats.png&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category: Development]]&lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
&lt;br /&gt;
This graph shows how many patches from OpenVZ developers were merged into mainstream Linux kernel, per each kernel version.&lt;br /&gt;
&lt;br /&gt;
It is drawn by gnuplot using the data set obtained from kernel git repository.&lt;br /&gt;
&lt;br /&gt;
== Source code ==&lt;br /&gt;
=== Collect data ===&lt;br /&gt;
Here is the script to produce the data for the graph, called &amp;lt;code&amp;gt;count&amp;lt;/code&amp;gt;:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;small&amp;gt;&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
&lt;br /&gt;
# Whose patches to count&lt;br /&gt;
#PAT='@openvz.org|@parallels.com|@sw.ru|@swsoft.com|@sw.com.sg|kuznet@'&lt;br /&gt;
#PAT='@openvz.org|@parallels.com|@sw.ru|@swsoft.com|@sw.com.sg|adobriyan@|kuznet@|gorcunov@'&lt;br /&gt;
PAT='@openvz.org|@parallels.com|@sw.ru|@swsoft.com|@sw.com.sg|@virtuozzo.com|kuznet@|gorcunov@'&lt;br /&gt;
&lt;br /&gt;
# Return the date of the given tag, in a format usable by gnuplot&lt;br /&gt;
get_tag_date() {&lt;br /&gt;
	echo $(git show $1 | egrep ^Date: | head -n1) | &lt;br /&gt;
		sed 's/^Date: ... \(.*\) [-+]....$/\1/' |&lt;br /&gt;
		sed 's/ ..:..:..//' | sed 's/ /-/g'&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
# Count the number of patches whose authors match $PAT,&lt;br /&gt;
# for the period between two given git tags&lt;br /&gt;
count_patches() {&lt;br /&gt;
	git log --pretty=short --no-merges $1..$2 |&lt;br /&gt;
		egrep '^Author: ' | egrep $PAT | wc -l&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
count_total_patches() {&lt;br /&gt;
	git log --pretty=short --no-merges $1..$2 | grep -c '^commit '&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
# Latest 3.x kernel&lt;br /&gt;
#latest3=$(git tag | grep -v -- -rc | tail -n1 | sed -e 's/^.*\.\(.*\)$/\1/')&lt;br /&gt;
latest3=$(git tag | grep -v -- -rc | grep -F 'v3.' | \&lt;br /&gt;
		awk -F . '{print $2}' | sort -n | tail -n1)&lt;br /&gt;
# Latest 2.6.x kernel&lt;br /&gt;
latest26=39&lt;br /&gt;
&lt;br /&gt;
# Find out if number of patches for HEAD is much more&lt;br /&gt;
# than for latest -rc. If yes, use HEAD, otherwise -rc.:&lt;br /&gt;
last_rc=$(git describe --abbrev=0)&lt;br /&gt;
HEAD=$last_rc&lt;br /&gt;
if ! test -z &amp;quot;$last_rc&amp;quot;; then&lt;br /&gt;
	much_more=10&lt;br /&gt;
	count_head=$(count_patches v3.$latest3 HEAD)&lt;br /&gt;
	count_rc=$(count_patches v3.$latest3 $last_rc)&lt;br /&gt;
	if test $count_head -gt $((count_rc+much_more)); then&lt;br /&gt;
		HEAD=&amp;quot;HEAD   &amp;quot;&lt;br /&gt;
	fi&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
pv=''&lt;br /&gt;
for v in $(git for-each-ref --sort='*authordate' --format='%(tag)' refs/tags |\&lt;br /&gt;
		 grep -v -E -- '-rc|-tree|v2.6.11') HEAD; do&lt;br /&gt;
	if [ -z &amp;quot;$pv&amp;quot; ]; then&lt;br /&gt;
		pv=$v&lt;br /&gt;
		continue&lt;br /&gt;
	fi&lt;br /&gt;
&lt;br /&gt;
	pd=$(get_tag_date $pv)&lt;br /&gt;
	d=$(get_tag_date $v)&lt;br /&gt;
	count_ours=$(count_patches $pv $v)&lt;br /&gt;
	count_total=$(count_total_patches $pv $v)&lt;br /&gt;
	if test &amp;quot;$count_ours&amp;quot; -gt 0; then&lt;br /&gt;
		echo $d $v &amp;quot; &amp;quot; $count_ours $count_total&lt;br /&gt;
	fi&lt;br /&gt;
	pv=$v&lt;br /&gt;
done | sed 's/ /\t/g'&lt;br /&gt;
&amp;lt;/source&amp;gt;&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Draw the graph ===&lt;br /&gt;
&lt;br /&gt;
Here is the script to produce the graph. Note it calls the previous script under the name 'count'.&lt;br /&gt;
&amp;lt;small&amp;gt;&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
&lt;br /&gt;
REPO=~/git/linux/.git&lt;br /&gt;
COUNT=$(pwd)/count&lt;br /&gt;
OUT=$(pwd)/time.dat&lt;br /&gt;
export GDFONTPATH=/usr/share/fonts/microsoft&lt;br /&gt;
export GIT_DIR=$REPO&lt;br /&gt;
&lt;br /&gt;
if test &amp;quot;$1&amp;quot; != &amp;quot;-f&amp;quot;; then&lt;br /&gt;
	echo &amp;quot;== Previous (old) stats ==&amp;quot;&lt;br /&gt;
	tail -n 2 $OUT&lt;br /&gt;
	# Update the repo and count new stats&lt;br /&gt;
	(cd $REPO &amp;amp;&amp;amp; cd .. &amp;amp;&amp;amp; git pull) &amp;amp;&amp;amp; sh $COUNT &amp;gt; $OUT&lt;br /&gt;
	echo &amp;quot;== New stats ==&amp;quot;&lt;br /&gt;
	tail -n 2 $OUT&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
DATE=$(tail -n 1 $OUT | cut -f 1 | awk -F- '{print $2,$1,$3}')&lt;br /&gt;
MAXY=$(awk 'BEGIN {max=0}; ($3 &amp;gt; max) {max=$3}; END {print max+80}' &amp;lt; time.dat)&lt;br /&gt;
# GNU date is powerful!&lt;br /&gt;
MAXX=$(date +%b-1-%Y --date='+2 months')&lt;br /&gt;
&lt;br /&gt;
cat &amp;lt;&amp;lt; EOF | gnuplot &amp;gt; plot.png&lt;br /&gt;
set terminal png enhanced font &amp;quot;verdana,13&amp;quot; size 1600,1200&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
set title &amp;quot;OpenVZ team kernel patches progress as of ${DATE}&amp;quot;&lt;br /&gt;
&lt;br /&gt;
unset xlabel&lt;br /&gt;
set xdata time&lt;br /&gt;
set timefmt &amp;quot;%b-%d-%Y&amp;quot;&lt;br /&gt;
set format x &amp;quot;%b\n%Y&amp;quot;&lt;br /&gt;
set grid xtics mxtics noytics&lt;br /&gt;
&lt;br /&gt;
set xrange [ : &amp;quot;${MAXX}&amp;quot; ]&lt;br /&gt;
set yrange [ 0 : ${MAXY} ]&lt;br /&gt;
set ylabel &amp;quot;Number of patches from OpenVZ team,\n per kernel release, accepted into mainstream&amp;quot;&lt;br /&gt;
&lt;br /&gt;
set border 3		# no lines at right and top&lt;br /&gt;
set xtics nomirror	# no tics at top&lt;br /&gt;
set ytics nomirror	# no tics at right&lt;br /&gt;
&lt;br /&gt;
plot '${OUT}' using 1:3 with linespoints pt 6 ps 1 lw 2 lt 2 notitle, \&lt;br /&gt;
	''	using 1:3:2 with labels left offset 0,5.5 rotate notitle, \&lt;br /&gt;
	''	using 1:3:3 with labels left offset 0.7,0 notitle&lt;br /&gt;
&lt;br /&gt;
EOF&lt;br /&gt;
&amp;lt;/source&amp;gt;&amp;lt;/small&amp;gt;&lt;/div&gt;</summary>
		<author><name>Vvs</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.openvz.org/index.php?title=Hosting_providers&amp;diff=23398</id>
		<title>Hosting providers</title>
		<link rel="alternate" type="text/html" href="https://wiki.openvz.org/index.php?title=Hosting_providers&amp;diff=23398"/>
		<updated>2021-06-10T05:51:30Z</updated>

		<summary type="html">&lt;p&gt;Vvs: alphabetically sorted&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''OpenVZ is free and open implementation of Virtuozzo containers for Linux.&lt;br /&gt;
Don't forget to keep [[testimonials|testimonial]] and [[donate]] to OpenVZ.'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
OpenVZ makes for a great hosting platform for VPS hosting. The providers below offer VPS services using OpenVZ.&lt;br /&gt;
&lt;br /&gt;
[[File:UsageLocation.svg]]&lt;br /&gt;
&lt;br /&gt;
= OpenVZ hosting providers =&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- @@@@@@@@@@@@@@@@@@@@@@@&lt;br /&gt;
&lt;br /&gt;
IF YOU EDIT THIS PAGE,  PLEASE OBEY TO THE FOLLOWING RULES:&lt;br /&gt;
&lt;br /&gt;
1. Keep your record on ONE line&lt;br /&gt;
2. Keep the list of providers alphabetically sorted, DO NOT insert your record on top.&lt;br /&gt;
3. Keep the list of countries alphabetically sorted as well.&lt;br /&gt;
&lt;br /&gt;
     @@@@@@@@@@@@@@@@@@@@@@@@ --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Andorra ==&lt;br /&gt;
* [https://www.actiu.net/pro/ Actiu informatica] amb servidors dins i fora del principat.&lt;br /&gt;
&lt;br /&gt;
== Argentina ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.fulltech.com.ar/ Full Tech Solutions] Specializes in the virtualization of OpenVZ &amp;amp; Virtuozzo containers, installed in the Full Tech Solutions Data Center located in Villa Elisa, Entre Rios Argentina.  It also offers services hosted in the United States, Netherlands and Germany&lt;br /&gt;
* [http://www.g2khosting.com/ G2K Hosting] offer OpenVZ containers with high level hardware technology from 25 US with Control Panel, various Linux Dists and full support.&lt;br /&gt;
* [https://hostingplus.com.ar/ HostingPlus Argentina] provide OpenVZ containers at our own datacenter in South America with triple internet provider. Starting from  us20/month&lt;br /&gt;
* [https://ibumu.com/ Ibumu] Best containers for wordpress starting from $5.5.&lt;br /&gt;
* [http://www.ihserver.net/ IHServer] Specialized virtualization on OpenVZ containers at Gigared datacenter. We have in Argentina one of the better fiber connection to the US, but also provides services from LSTN in Texas.&lt;br /&gt;
* [https://www.infranetworking.com.ar/ Infranetworking] All our Cloud VPS container solutions for Argentine customers are powered by the all mighty OpenVZ virtualization software.&lt;br /&gt;
* [https://www.neolo.com/ Neolo] provide OpenVZ containers at our own datacenter in South America with double internet provider. Choose your Linux OS and apps. Full support.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [http://www.wiredhosting.com.ar/ WiredHosting] offer XEN and OpenVZ containers with SSD drives, cloudflare security and weekly backups to protect your information. Phone and Helpdesk support. &lt;br /&gt;
&lt;br /&gt;
== Australia == &lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.auhost4u.com/ AUHost4u] - VPS Solutions provided from our D.C. in Sydney.&lt;br /&gt;
* [https://www.conetix.com.au/ Conetix Hosting] Specialising in business grade, fully managed Virtuozzo containers with Virtuzzo Cloud Storage. 100% Australian owned and operated. Brisbane based DC with Enterprise Dell servers.&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides self-managed OpenVZ based SSD VPS located at Equinix SY3 in Sydney, one of the best and well-connected datacenters in the region.&lt;br /&gt;
* [http://www.vpsfast.us/australia-cloud-server VPSFast] - VPS Provider with good prices in Australia.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Austria ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
* [https://kapper.net/ kapper.net] kapper.net offers OpenVZ and Virtuozzo (and other HyperVisors) based server-solutions with kind support and 24x7 maintenance.&lt;br /&gt;
* [https://mdhost.eu/vserver.php MDHost.eu] New Hosting Provider with nice Prices and many Server locations. Austria, Germany, France and more.&lt;br /&gt;
* [https://www.snb.at/ SNB] offers OpenVZ containers and support's also existing vm's in customers environment&lt;br /&gt;
* [https://www.waveride.at/ Waveride] Waveride, an EDIS company, offers budget full gigabit OpenVZ + solusVM VPS in Austria, USA and the Netherlands&lt;br /&gt;
* [http://www.vpsfast.us/austria-cloud-server VPSFast] - VPS Provider with good prices in Austria.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Brazil ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.datacorporate.com.br/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [http://www.globalmedia.com.br/ GlobalMedia] We offers OpenVZ containers hosted on a very fast network with fast setup. Ubuntu, Debian, CentOS.&lt;br /&gt;
* [http://www.host1plus.com.br/ Host1Plus] Servers hosted in São Paulo. We offering reliable and secure OpenVZ VPS Servers with 99.99% up-time, starting from $5.00 per month.&lt;br /&gt;
* [http://www.ipdeck.net/ IPDECK] VPS Linux server from R$15,00/month! Fully customizable according to your needs.&lt;br /&gt;
* [https://www.quantivehost.com.br/ QuantiveHost] VPS Linux with 99.99% uptime. Prices starting from R$ 29,35.&lt;br /&gt;
* [https://www.elevahost.com.br/ Eleva host] Server hosted in Brazil. The best support.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [https://www.ferenz.com.br/ Ferenz Networks] VPS Linux with best support. Prices starting from R$ 29,90.&lt;br /&gt;
&lt;br /&gt;
== Bulgaria ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.cloudhostinghub.com Offshore VPS Hsoting] CloudHostingHub.com is an [https://www.cloudhostinghub.com Cloud Offshore VPS Hosting] located in Buglaria. They provide both OpenVZ and KVM virtualization. CloudHostingHub.com is known for the high privacy protection , performance and stability.&lt;br /&gt;
* [https://www.cyberhour.com CyberHour.com] CyberHour.com is an [https://www.cyberhour.com offshore VPS hosting] provider located in Europe. The provide blazing fast servers and premium Bandwidth of 200Mbps. With high privacy protection.&lt;br /&gt;
* [https://www.linuxssdvps.com Bulgaria VPS] Linux SSD VPS is an [https://www.linuxssdvps.com offshore VPS hosting] provider located in Sofia, Bulgaria. Privacy is very respected and anonymous registrations are allowed, as well as payments via Bitcoin / PayPal.&lt;br /&gt;
* [http://www.webuzo.net Bulgaria VPS] Webuzo Network is an offshore SSD VPS hosting provider located in Bulgaria. Privacy is very respected and anonymous registrations are allowed, as well as payments via Bitcoin / PayPal.&lt;br /&gt;
* [https://vpsbg.eu/en Bulgaria VPS] VPSBG.eu is an offshore SSD VPS hosting provider located in Sofia, Bulgaria. Privacy is very respected and anonymous registrations are allowed, as well as payments via Bitcoin.&lt;br /&gt;
* [http://www.bul.net/ Bul.net] Provides OpenVZ based VPS, perfect user/VPS management via [http://ispsystem.com VDSManager]. Instant creation after online payment. Debian/Ubuntu/CentOS with ISPManager Control panel. Optimal price policy.&lt;br /&gt;
* [http://www.cointech.eu/vps-hosting/ CoInTech] provides OpenVZ based VPS containers, free webmin managment. Containers can be CentOS, Slackware, Ubuntu, custom or our special [http://www.mandriva.com Mandriva Linux] container with own [http://mandriva.cointech.net repository].&lt;br /&gt;
* [http://www.rax.bg/ RAX.bg] Offers OpenVZ based VPS, hosted on a clustered infrastructure and redundant network. Easy to use user management, Instant setup, CentOS (OS).&lt;br /&gt;
* [http://www.jump.bg/ Jump.bg] Provides OpenVZ VPS servers hosted on a redundant network which provides a very easy to manage platform for all clients which gain instant access to their OS ( Ubuntu, CentOS , Debian etc ... )&lt;br /&gt;
* [https://www.fitvps.com/ FitVPS.com] Offers affordable and reliable OpenVZ based VPS in Varna, Bulgaria. Own data center, own multihomed network, with SLA. Instant automatic setup, SolusVM control panel.&lt;br /&gt;
* [http://www.qhoster.com/ QHoster.com] Instant activation OpenVZ VPS in UK, USA, Germany, France and Switzerland. Both 32/64 bit OpenVZ OS VPS templates : CentOS 5/6, Debian 6/7, Ubuntu 12/13.&lt;br /&gt;
* [https://www.verdina.net Verdina.NET] Verdina.net offers dedicated hosting services, provided by powerful dell hardware. Servers are located in Telepoint Datacenter, a Tier 3 DC located in Sofia, Bulgaria.&lt;br /&gt;
* [https://www.vps.ag/ VPS.AG] Affordable and reliable OpenVZ VPS based in Sofia, Bulgaria. Instant setup and 24/7 support.&lt;br /&gt;
* [http://www.vpsfast.us/bulgaria-vps VPSFast] - VPS Provider with good prices in Bulgaria.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Canada ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://4goodhosting.com/linux-vps-hosting 4GooodHosting] - Canadian OpenVZ VPS Servers, Starting from  $18.99/month SSD,. Canada VPS hosting in three different Canadian Data Centers with nightly backups.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [https://whc.ca/canadian-cloud-servers Web Hosting Canada Cloud Servers] - Powerful Cloud servers powered by OpenVZ and located in Canadian datacenters, with fast RAID-10 storage, fully managed with cPanel.&lt;br /&gt;
* [http://compevo.com compevo Clustered VPS Server Hosting Provider] - We offer clustered VPS Servers to avoid downtime and dataloss. Our network and service is second to none and is used by businesses around the world.&lt;br /&gt;
* [http://www.datacorporate.ca/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [https://www.delimiter.com/storage-vps/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [https://www.miditech.com/ MidiTech Hosting Canada] VPS hosting offered by MidiTech Canada are powered by VMware, . Fully Managed VPS with control panels&lt;br /&gt;
* [http://www.gotekky.com Gotekky Cloud VPS Hosting] High quality Cloud VPS packages powered by our own infrastructure and network in Toronto. Scalable from our $5/mo plan all the way to your own dedicated cloud server. Based on OpenVZ and our own proprietary panel.&lt;br /&gt;
* [https://gigebox.com GIGEBOX.COM] GIGEBOX are expert providers of secure business hosting services, we operate high-performance professional servers, specially designed for businesses, powered by the Intel(R) Xeon(R) Hexa-Core CPU Processors and 128 GB DDR3 minimum RAM. Enjoy high availability, performance and security for multiple uses.&lt;br /&gt;
* [http://www.letstalkdigital.com/index.php?option=com_content&amp;amp;view=article&amp;amp;id=73&amp;amp;Itemid=65 LetsTalkDigital VPS Hosting] LetsTalkDigital.com offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from $14.99. Virtual Private Server (VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://secure.media-hosts.com/link.php?id=7 Media-Hosts.com] Provides Quality and Scalable OpenVZ based Virtual Private Servers. 100% network uptime guaranteed. Located in Montreal Quebec with 5 Tier1 upstream providers.&lt;br /&gt;
* [http://www.openvz.ca OpenVZ.ca] Canadian Budget VPS Servers on OpenVZ Platform. &lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [http://protoserver.com ProtoServer] Advanced VPS Hosting from $4.95/month. Many pre-installed VPS Templates available (CMS, E-commerce, Web development, Online community, Media streaming, etc.) No bundles or service plans - mix VPS resources as needed and change VPS configuration anytime. Also offering DNS Hosting, E-mail hosting, Domains Registration.&lt;br /&gt;
* [http://www.vistapages.com/vps Vistapages VPS] - IBM &amp;amp; Dell Hardware. MCI/Verizon Backbone. Distros: Centos, Fedora, Debian &amp;amp; more. Full management available. Located in Toronto.&lt;br /&gt;
* [http://vpsville.ca/ VPSVille] - Good network. Good CPU. Good choice of distros: Centos, Fedora, Debian, Ubuntu, Slackware, Gentoo, OpenSUSE, CERN. My favorite OpenVZ provider. [mailto:jak@isp2dial.com John Kelly]&lt;br /&gt;
* [http://solib.ca/services-offerts/hebergement-haute-vitesse/serveurs-vps/ SOLIB Logiciel Libre Québec] Our company offers DDoS protected server solutions including OpenVZ containers. Very high availability and reliability, all our VPS are located in Quebec, Canada.&lt;br /&gt;
* [https://www.host-stage.net/linux-vps/ HostStage - Linux VPS] - Simple, Reliable OpenVZ VPS packed with 1 GBPS port speed, RAID 10 SSD, Intel Xeon CPU, DDoS Protection from $4.95/month&lt;br /&gt;
* [https://undergroundprivate.com/russiaoffshorevps.html  UndergroundPrivate.com] - OpenVZ with highly privacy, offshore , DMCA ignored , high confidence, SolusVM and cPanel, managed and non managed service.&lt;br /&gt;
* [http://www.vpsfast.us/canada-vps VPSFast] - VPS Provider with good prices in Canada.&lt;br /&gt;
* [https://websavers.ca/canadian-vps-hosting Websavers Inc in Halifax] - VZ containers priced by the resource. Resource changes entirely client-level.&lt;br /&gt;
* [https://www.yoorshop.fr/hosting-ssd-vps-usa-canada.php YOORshop SAS] - High performance NVMe SSD Linux VPS in Canada, daily backup included. Starting from €7,49 /month&lt;br /&gt;
&lt;br /&gt;
== Colombia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.datacorporate.co/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [http://www.soficol.com/ Soficol] Offers Enterprise OpenVZ based VPS, hosted on a clustered infrastructure and redundant network. Easy to use user management and instant setup.&lt;br /&gt;
* [https://www.hostingplus.com.co/ Hosting Plus Colombia] provide OpenVZ containers at our own datacenter in South America with triple internet provider. Starting from  us20/month&lt;br /&gt;
* [https://ibumu.com/ Ibumu] Best containers for wordpress starting from $5.5.&lt;br /&gt;
&lt;br /&gt;
== Czech Republic ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://4smart.cz 4Smart.cz] - prepaid, you are charged only by the system resources you use, therefore you can run a VPS for as little as  1 EUR a month if your vps is not resource hungry. Even if you pay  0,50 EUR  month, you still have 3 GB of RAM and 8 cores available to you VPS.&lt;br /&gt;
* [http://www.freecloud.cz FREECLOUD.CZ] - Free OpenVZ VPS Server - own IP, 800Mhz CPU, 512MB RAM, 50Mbits LAN, 10GB HDD, 100GB Traffic - Debian, Ubuntu, Gentoo, Slackware, Fedora, Centos&lt;br /&gt;
* [http://www.hukot.cz Hukot.cz] - OpenVZ VPS Servers starting from 2.92 €, XEON, 1 Gbps uplink, unlimited traffic. Debian, Ubuntu, CentOS, Scientific, SuSe, Fedora, Elastix.&lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [http://www.ultimatehosting.eu UltimateHosting.eu] - OpenVZ VPS Servers starting from $8 with custom configuration - up to 100 GB HDD, 2048 MB RAM, 2 GHz CPU, and unlimited traffic.&lt;br /&gt;
* [http://www.mujhost.net MUJHOST.NET] - OpenVZ VPS Servers starting from 160 Kč, 100Mbps / 1 Gbps uplink, unlimited traffic. Debian, Ubuntu, CentOS ...&lt;br /&gt;
&lt;br /&gt;
== Chile ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.1h.cl/ 1h.cl Vps - Chile] - VPS High Performance with OpenVZ in Chile&lt;br /&gt;
* [http://www.1hosting.cl/ 1hosting Virtual servers - Chile] - VPS Professional with OpenVZ&lt;br /&gt;
* [http://www.dch.cl/ DCH] - DCH.cl Hosting Chile - High Performance VPS Servers with OpenVZ &lt;br /&gt;
* [https://www.dominioweb.net/ Dominioweb] - Premium Hosting and domain registration&lt;br /&gt;
* [http://ecohosting.cl/ EcoHosting.cl Santiago - Chile] - VPS with OpenVZ in Chile&lt;br /&gt;
* [http://www.host.cl/ Host.cl] - Cloud Computing&lt;br /&gt;
* [https://www.hostingplus.cl/ HostingPlus Internet Limitada] - High Performance Vps provider in Chile&lt;br /&gt;
* [https://www.hostingnet.cl/ Telecomunicaciones Hostingnet SPA] - VPS Reliable Provider in Chile&lt;br /&gt;
* [https://www.hostname.cl/ Hostname Ltda] - VPS Hosting with Datacenter in Chile&lt;br /&gt;
* [https://www.inc.cl/ INC Internet Limitada] - VPS Hosting provider in Chile&lt;br /&gt;
&lt;br /&gt;
== Denmark ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.vpsfast.us/denmark-cloud-server VPSFast] - VPS Provider with good prices in Denmark.&lt;br /&gt;
&lt;br /&gt;
== Ecuador ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.dedi.space/ DediSpace Telecom] - VPS Servers in Ecuador - USA, France, Germany, Ecuador Datacenter.&lt;br /&gt;
&lt;br /&gt;
== Estonia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://cspacehostings.com CSpace Hostings] Tallinn, Estonia Hosted SSD and Storage VPS based on OpenVZ (OVZ) 7.&lt;br /&gt;
&lt;br /&gt;
== France ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.BargainVPS.co.uk/ BargainVPS] - UK / US / EU Instant setup VPS - We have some great Linux &amp;amp; Windows Bargain VPS packages on offer for you here all available Fully Managed.&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in France from 1.88EUR/month.&lt;br /&gt;
* [http://www.fixweb.com Fixweb] Great managed hosting provider with strong anti ddos solution - openvz only - leader in managed openvz solution with horizontal scaling and high availability&lt;br /&gt;
* [http://www.Freaksol.com/ FreaKs VPS Hosting] Self reliant hosted on independent networks &amp;amp; DC low ping,No restrictions on file types,Unlimited resources,high ram servers &lt;br /&gt;
* [http://www.harmony-hosting.com Harmony-Hosting] A high performance VPS hosting - The leader in France&lt;br /&gt;
* [https://www.delimiter.com/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [http://www.lws.fr/serveur_dedie_linux.php LWS - Linux VPS ] - Linux VPS Hosting - Only 9.99€/month, Affordable and Secure OpenVZ VPS Servers with 99.99% up-time, web hosting control panel Included. French datacenter&lt;br /&gt;
* [http://www.ovh.co.uk/vps/ OVH VPS] linux from 3€/month, [http://www.ovh.co.uk/vps/vps-cloud.xml windows] from 12€/month.&lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [https://VPSZ.FR VPSZ] VPS Hosting in France. Starting from 2,99€, Unlimited traffic.&lt;br /&gt;
* [http://www.1euro-hosting.eu BEST EU VPS - 1€ Hosting] - Providing reliable and secure OpenVZ VPS Servers with 99.99% up-time, starting from 8€&lt;br /&gt;
* [https://www.shape.host/linux-vps/ Shape Host - Linux VPS] - OpenVZ virtual servers, Instant Linux VPS&lt;br /&gt;
* [https://undergroundprivate.com/russiaoffshorevps.html  UndergroundPrivate.com] - OpenVZ with highly privacy, offshore , DMCA ignored , high confidence, SolusVM and cPanel, managed and non managed service.&lt;br /&gt;
* [https://www.host-stage.net/linux-vps/ HostStage - Linux VPS] - Simple, Reliable OpenVZ VPS packed with 1 GBPS port speed, RAID 10 SSD, Intel Xeon CPU from $4.95/month&lt;br /&gt;
* [https://www.yoorshop.hosting/hosting-vps-ssd-europe YOORshop SAS] - High performance NVMe SSD OpenVZ 7 VPS within 13 countries in Europe, Canada and Singapore. Daily backup included. From €5,95/month&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Germany ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://afterburst.com Afterburst (Previously FanaticalVPS)]: affordable unmetered, unmanaged VPS servers in Germany.&lt;br /&gt;
* [http://www.b2b-hosting.de/vps/ B2B Hosting]: Professional virtual servers for business applications. Performance and reliability at a fair price. Made with OpenVZ.&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in Germany from 1.88EUR/month.&lt;br /&gt;
* [https://www.delimiter.com/dedicated-servers/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [http://hostmist.com/openvz-vps-germany.html Host Mist]: features budget OpenVZ VPS hosting in Germany.&lt;br /&gt;
* [http://www.host1plus.com/ Host1Plus] Servers based in Frankfurt am Main. Offering reliable OpenVZ based VPS servers in Germany starting from $2.50 per month.&lt;br /&gt;
* [http://www.hostingjuice.com/ HostingJuice] The Superioum VPS and Web Hosting provider, low prices - Premium packages.&lt;br /&gt;
* [http://www.ingate.de/managed-server.html Ingate] offers managed servers with openVZ virtualization. located in germany, great support.&lt;br /&gt;
* [http://linevast.de/angebote/linux-openvz-vserver-mieten.html Linevast] Reliable OpenVZ based VPS with fast support, located in germany&lt;br /&gt;
* [https://cp.myvirtualserver.com/?affid=42 MyVirtualServer]: Cheap VPS (OpenVZ/KVM, 5TB Traffic, 10Gigabit), servers located in Frankfurt (best ping, starting 1.99€) good support (en/de) //New Design!&lt;br /&gt;
* [https://www.nogics.com Nogics Technologies]: Affordable VPS based in Germany. Starts from $5.96/mo.&lt;br /&gt;
* [http://www.plambee.de/vserver.php Plambee.de Webhosting]: Powerfull OpenVZ based VPS servers at low cost with hosting in Germany&lt;br /&gt;
* [https://rackset.com/ Rackset Hosting] Managed Dedicated / VPS and Website Hosting services since 2004.&lt;br /&gt;
* [http://www.serverbiz.de/vserver Serverbiz] Powerful VPS at very low prices.&lt;br /&gt;
* [http://www.synapseglobal.com/voip_vps.html SynapseGlobal.com] Elastix, Trixbox, PBX in a Flash and Asterisk VPS - OpenVZ based Asterisk VOIP servers located in Munich Germany.&lt;br /&gt;
* [http://www.vStarVPS.com vStarVPS]: Reliable VPS Hosting at lowest prices, with 99.9% uptime, Premium Unmetered Bandwidth and Custom HDD/RAM of your choice. Instant and FREE Setup. RapidLeech Allowed.&lt;br /&gt;
* [http://whynotavps.com WhyNOTaVPS]: Instant activated VPS SERVERS!!&lt;br /&gt;
* [http://squote.de/index.php?ref=1421485383 SQuote]: SQuote VPS Hosting and more. VPS 1 Core, 1.024MB RAM, 512MB RAM SWAP, 50 GB HDD, 1x IPv4. 3,89EUR/month. For the best VPS SQuote.de&lt;br /&gt;
* [http://www.vpsfast.us/germany-vps VPSFast] - VPS Provider with good prices in Germany.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Guatemala ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.globalnetcafe.com/gnc/menu/hospedaje.htm Global Net Cafe]: Servicios de hospedaje, reseller, vps, colocacion y servidores. Incluyendo OpenVZ.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Hong Kong ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [https://hostus.us HostUS] features unmanaged and managed OpenVZ VPS in Hong Kong as well as 3 USA locations. Unparalleled connectivity to the Asia Pacific. Enjoy 15% off with coupon VPS15OFF.&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides self-managed OpenVZ based SSD VPS in Hong Kong, located at the Pacnet datacenter. &lt;br /&gt;
* [http://vps.timway.com/linux_vps.html Timway VPS Hosting] - Quality, non-oversold hosting provider focused on being security conscious and offering a positive client experience.   Centos, Debian, Fedora, OpenSuse and Ubuntu Containers are available.&lt;br /&gt;
* [http://www.vpsfast.us/hong-kong-cloud-server VPSFast] - VPS Provider with good prices in Hong Kong.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Hungary ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://elin.hu/index.php?menu=8&amp;amp;nyelv=hu&amp;amp;cim=Virtualis-szerver Virtual server] OpenVZ server: 2xX5650 Intel Xeon, 32GB RAM, 15.000rpm SAS disks, 100Mbit/s, unlimited bandwith.&lt;br /&gt;
* [https://www.ivirtual.co/vps-hosting/ iVirtual.co ] OpenVZ Master Server: 2x Intel Xeon @ 3.0GHZ, 64 GB ECC Ram, 15k RPM SAS HDD's, 1Gbit/s Network, Unlimited bandwith.&lt;br /&gt;
&lt;br /&gt;
== Iceland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
&lt;br /&gt;
== Ireland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== India ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://cspacewebsolutions.com/ CSpace Web Solutions Pvt.Ltd] Mumbai Datacenter connected to DE-CIX India Hosted VPS based on OpenVZ (OVZ) 7 and OpenVZ (OVZ) 6.&lt;br /&gt;
* [https://cochinwebhost.in/budget-vps-hosting/ Low Cost VPS Hosting] Fast SSD VPS Server for Hosting Solutions at budget prices with 24x7 Technical Support.&lt;br /&gt;
* [https://www.cyberhost.in/ Cyberhost] - Affordable OpenVZ containers on high performance quality Servers. Wide choice of virtual dedicated servers with Full management available.&lt;br /&gt;
* [http://www.datacorporate.in/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
*[http://www.fastwebhost.in/vps-hosting.html fastwebhost VPS Hosting] VPS hosting offered by fastwebhost are powered by ''VPS hosting, virtual server hosting and Linux VPS hosting services''. Fully Managed VPS with control panels.&lt;br /&gt;
* [http://www.Freaksol.com/ Freaksol VPS Hosting] Self reliant hosted on independent networks &amp;amp; DC low ping to India,No restrictions on file types,Unlimited resources,high ram servers&lt;br /&gt;
* [https://www.geniushost.in Genius Host] Fully managed [https://www.geniushost.in SSD Web Hosting] offered by Genius Host are powered by ''OpenVZ'' With LiteSpeed Web Server &amp;amp; Mariadb.&lt;br /&gt;
* [http://www.hioxindia.com/virtual-private-server.php VPS Hosting] Reliable and quality VPS Virtual Private Server Hosting&lt;br /&gt;
* [https://hostingspell.com/ HostingSpell] - Hostingspell is a leading web hosting company in India and now serving over 40+ countries our the globe. We guarantee 99.9% uptime and 7 days full money-back guarantee so you can't go wrong :)&lt;br /&gt;
* [https://hostitbro.in/ HostItBro] - HostItBro does not compromise on speed. With us, you get the fastest loading websites.&lt;br /&gt;
* [http://www.hostitsmart.com/ Host IT Smart] - One of the best VPS Hosting Provider in India with 24X7X365 Customer support.&lt;br /&gt;
* [http://www.hosticon.com/ HostIcon.com] - Linux Shared hosting | Windows Shared Hostig | Managed VPS | Domain | Email Hosting.&lt;br /&gt;
* [http://www.hostmines.com/ HostMines.com] - SSD Cloud Shared Hosting for Less than $1/mo | Free Domain | Free SSL | Cpanel | Fully Manged.&lt;br /&gt;
* [https://www.hostnamaste.com HostNamaste] is your high-performance [https://www.hostnamaste.com/openvz-vps.php OpenVZ VPS Hosting] Provider. Get your perfect [https://www.hostnamaste.com/openvz-vps.php VPS Hosting] account today! Available in [https://www.hostnamaste.com/datacenter-losangeles.php Los Angeles], [https://www.hostnamaste.com/datacenter-dallas.php Dallas], [https://www.hostnamaste.com/datacenter-jacksonville.php Jacksonville], USA,  [https://www.hostnamaste.com/datacenter-france.php France], Europe, [https://www.hostnamaste.com/datacenter-mumbai-pune.php Mumbai], India and [https://www.hostnamaste.com/openvz-vps-moscow-russia.php Moscow], Russia.&lt;br /&gt;
* [https://www.hostsoch.in/windows-hosting.html HostSoch Windows Hosting] Windows hosting offered by HostSoch are powered by ''Windows 2012, ASP.NET, MVC, IIS, PHP and More''. 99.9% Uptime, 24/7 Dedicated support guaranteed. &lt;br /&gt;
* [https://mainvps.net/ovz-vps/ [MainVPS] - offers the cheap OpenVZ VPS hosting with Powerful Hardware, 99.99% Uptime Guarantee &amp;amp; 100% uptime Service Level Agreement.&lt;br /&gt;
* [https://www.miditech.co.in/ MidiTech VPS Hosting] VPS hosting offered by MidiTech are powered by ''VMware, ''. Fully Managed VPS with control panels. &lt;br /&gt;
* [http://www.milesweb.com/vps-hosting.php Milesweb VPS Hosting] VPS hosting offered by Milesweb are powered by ''VMware, OpenVZ''. Fully Managed VPS with control panels. &lt;br /&gt;
* [https://www.nogics.com/web/vps-hosting/ Nogics Technologies] Instant provisioning of VPS, VPS starts from $5.96/mo. 30+ OS templates.&lt;br /&gt;
* [http://overlineindia.net/vpshosting-p-62.html Overline India VPS Hosting] Fully managed cPanel Installed VPS Hosting with 24x7x365 Live Chat Tech support, powered by OpenVZ&lt;br /&gt;
* [http://www.prohosterz.com/linux-vps.php ProHosterZ VPS Hosting] Reliable and quality Virtual Dedicated Servers | Virtual Private Servers | XEN VPS | OpenVZ VPS | Virtual Hosting&lt;br /&gt;
* [http://pve.proxmox.com/wiki/User:Apmuthu Ap.Muthu] sponsored by [http://www.gnuacademy.org GNUAcademy], [http://www.planettel.com.sg PlaNetTel] and [http://www.sacollege.net S A College] creates OpenVZ Templates for the Open Source Community and provides hosting in datacenters of clients choice or on site.&lt;br /&gt;
* [http://www.servers.co.in/vps/vps_hosting.php Server Web Hosting] Offers Fully Managed OpenVZ VPS Web hosting in India/US/UK at affordable and cheap rates with best hardware quality and customer service 24/7/365 days&lt;br /&gt;
* [http://touchstone.hosting/ Touchstone Solutions Private Limited] High-performance Enterprise VPS Hosting in India. One of the highest performing VPS Servers available with cPanel Installed.&lt;br /&gt;
* [http://vpsbeach.com VpsBeach Managed Hosting] Fully managed cPanel Installed VPS Hosting with 24x7x365 Live Chat Tech support, powered by OpenVZ&lt;br /&gt;
* [http://www.vpsfast.us/india-vps VPSFast] - VPS Provider with good prices in India.&lt;br /&gt;
* [http://www.vpshostingindia.net/ VPS Hosting India, Fully Managed Server] A Committed Fully Managed VPS Server for Hosting solution in India, Complete Technical Support assistance with commitment of fast, clustered and most supportive DataCenters.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Indonesia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.herza.id/vps-murah/ Herza.ID] Low Cost OpenVZ Virtual Server, starting from IDR 50.000 / Month with RAID 10 SSD, Unlimited Bandwidth with 1 Gbps IIX &amp;amp; OIXP Connection, and 24/7 Technical Support.&lt;br /&gt;
* [https://www.kucingweb.co.id/hosting/vps/ Kucingweb Indonesia] High Performance VPS service with the best choice.&lt;br /&gt;
&lt;br /&gt;
== Iran==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.ehost.ir EHost.ir] - OpenVZ Servers , DUAL XEON Cpus , 12 Gb Ram , 100Mbit Dedicated Connection , SAS HardDisk&lt;br /&gt;
* [https://www.irpower.com IRPOWER Webhostings &amp;amp; Domain] - OpenVZ Servers Since 2005!&lt;br /&gt;
* [http://www.vpsfa.com VPSFa.com] - OpenVZ Servers , DUAL XEON Cpus -  , 24Gb Ram , 1000Mbit Dedicated Connection , SAS HardDisk&lt;br /&gt;
* [https://webramz.com Webramz Host] - With more than 15 years experience in Managed Hosting, Webramz was first vps provider in Iran which used to setup OpenVZ servers. Nowadays we provide wide range of services including CloudLinux based OpenVZ and Managed Vps Servers.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Italy ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
* [http://www.hosting-italia.net hosting italia] - OpenVZ Servers and panel enduser Virtualizor Intel® Core™ i7-920 Quad-Core 48 GB DDR3 RAM - Guaranteed Bandwidth 200 Mbit/s&lt;br /&gt;
* [http://www.vpsfast.us/italy-vps VPSFast] - VPS Provider with good prices in Italy.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Liechtenstein ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
&lt;br /&gt;
== Lithuania ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.cloudlix.com/ CloudLix.com] - Managed and unmanaged OpenVZ virtual servers based on 2.6.32 kernel. Up to 20GHz (Intel SandyBridge) CPU and 10GB RAM. Located in Vilnius and Siauliai.&lt;br /&gt;
* [http://www.databank.lt/ databank.lt] - high-quality professional OpenVZ hosting with cloud computing solutions.&lt;br /&gt;
* [https://www.hostens.com/vps-hosting/ Hostens] - Unmanaged VPS hosting for the great price: clear deals, no hidden conditions, quality service from the heart of Europe. &lt;br /&gt;
* [https://www.lavavps.lt/ lavavps.lt] - Professional high-quality OpenVZ containers (VPS servers) affordable for everyone. Powerful control panel for VPS management.&lt;br /&gt;
* [https://monovm.com/ monovm.com] - High Quality VPS Hosting Provider&lt;br /&gt;
* [http://www.serveriai.lt/ Serveriai.lt] - Affordable OpenVZ containers on quality HP hardware. Wide choice of virtual dedicated servers up to 8 CPU cores and 8 GB RAM. Full management available. Located in Vilnius.&lt;br /&gt;
* [https://www.time4vps.com/?affid=1359 Time4VPS] - Powerful cloud technology based infrastructure will let you build custom virtual machine and pay only for what you really need. Located in Vilnius city.(0.99€/month(2Yr) 512mbRAM, 1TB Traffic// 4.5€/month(2Yr) StorageVps, 1TB, 10TB Traffic)&lt;br /&gt;
* [https://www.vpsnet.lt/en/ VPSnet.lt] - Powerful and high quality servers for a competitive price in Lithuania (Eastern Europe).&lt;br /&gt;
* [http://www.vpsfast.us/lithuania-vps VPSFast] - VPS Provider with good prices in Lithuania.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Latvia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.altnet.lv/ Altnet] - Hosting and colocation services. Any flawor, you name it. &lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
&lt;br /&gt;
* [http://www.vpsfast.us/latvia-vps VPSFast] - VPS Provider with good prices in Latvia.&lt;br /&gt;
&lt;br /&gt;
== Luxembourg ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.vpsfast.us/luxembourg-vps VPSFast] - VPS Provider with good prices in Luxembourg.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Malaysia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.cubiex.com/ Cubiex] - Malaysia Affordable Web Hosting and Domain Name. Affordable Linux VPS Hosting in Malaysia. OpenVZ based, Quad Core Xeon node. cPanel/WHM and DirectAdmin also available.&lt;br /&gt;
* [https://controlvm.com ControlVM] ControlVM Sdn. Bhd. offering OpenVZ VPS in Singapore, Malaysia, USA and Germany.&lt;br /&gt;
* [https://www.yoorshop.fr/hosting-ssd-vps-singapore-asia.php YOORshop SAS] - High performance SSD Linux VPS In Singapore with daily backup included. Starting from €7,49 /month&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Malta ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.a6it.com/ A6iT] - Stable, quality managed OpenVZ VPSs based in Malta.  Redundant network.&lt;br /&gt;
&lt;br /&gt;
== Morocco ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.belsemtech.com/ BelsemTech.CoM] BelsemTech SARL offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from 300 DH. Virtual Private Server (VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://www.hostoweb.com/ HosToWeb] is the only company providing VPS hosting in Morocco Data Center.&lt;br /&gt;
* [http://www.adk-media.com/ ADK Media] provides affordable managed and unmanaged virtual servers based on OpenVZ, Xen Paravirtualization and Xen HVM platforms. 24/7 Technical Support. Distros: Centos, Fedora, Debian, Ubuntu and more.&lt;br /&gt;
* [http://www.naja7host.com/ Naja7Host.CoM] The Naja7host SARL provides affordable VPS hosting using the OpenVZ platform. Running on Full Quality Nodes of up to 8 CPU and 16 GB RAM. . All VPS's come with Real 24/7/365  Technical Support and cPanel free (if option selected  ). Multiple choice of OS 32/64Bits (Centos, fedora, ubuntu, debian .ect ...)&lt;br /&gt;
* [http://www.lehoster.com/ Le Hoster] offers affordable Virtual Private Servers using the OpenVZ and KVM platform. Backed with our amazing customer support.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Netherlands ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.avanpad.com/ Avanpad] offers OpenVZ VPS hosting with 24\7 online support. Customer can request different control panels or templates for installation on his VPS.&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in Netherlands from 1.88EUR/month.&lt;br /&gt;
* [https://cspacehostings.com CSpace Hostings] Amsterdam, Netherlands Hosted SSD and Storage VPS based on OpenVZ (OVZ) 7.&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
* [http://www.Freaksol.com/ FreaKs VPS Hosting] Self reliant hosted on independent networks &amp;amp; DC low ping around the world,No restrictions on file types,Unlimited resources,high ram servers&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [http://www.HostSailor.com/ HostSailor] Number 1 Netherlands Provider HostSailor provides affordable &amp;amp; high quality services such as VPS (XEN, OpenVZ and KVM) Linux or Windows, Dedicated servers, SSL certificates and domain name services.&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides self-managed OpenVZ SSD VPS in Telecity AMS 5, one of the best datacenters located in the Amsterdam area.&lt;br /&gt;
* [https://iniz.com/ INIZ VPS Hosting] INIZ provides affordable VPS Hosting in Amsterdam, Netherlands with high resources at low prices.&lt;br /&gt;
* [https://www.liteserver.nl/ LiteServer] Looking for a quality and affordable VPS in the center of The Netherlands? We provide SSD, Storage and High Bandwidth VPSes, starting at only €16 per year. We operate AS60404.&lt;br /&gt;
* [https://www.mangelot-hosting.nl/ Mangelot Hosting] Mangelot Hosting, A webhosting company located in the Netherlands, offers budget OpenVZ hosting solutions for maximum scalability en performance.&lt;br /&gt;
* [http://www.osbox.nl OsBoX Dutch Network Engineering] Cheap VPS host as low as $1 per month. Very great uptime and a overall good support. Check the website for the server plans.&lt;br /&gt;
* [https://www.scopehosts.com/openvz-vps/netherlands-vps ScopeHosts.Com] - ScopeHosts Provides OpenVZ VPS in Netherlands, Amsterdam Powered with Pure SSD, 1Gbps Uplink, DDOS Protection, Self-Managed and Managed VPS Solutions&lt;br /&gt;
* [http://www.signet.nl/ Signet VPS Hosting] - Signet delivers VPS hosting plans based on CentOS or Debian templates, including control-panel Virtualmin.&lt;br /&gt;
* [http://simple-webhosting.eu/ Simple-webhosting.eu] - OpenVZ based web hosting starting from €0.98 per month.&lt;br /&gt;
* [https://www.seedvps.com SeedVPS] Provides Powerful &amp;amp; Reliable OVZ/KVM VPS Hosting in The Netherlands&lt;br /&gt;
* [http://www.touchvps.com/ TouchVPS] is a company who offer Support and Managed Services for OpenVZ Servers ,also offer templates for openvz ready to go with cPanel , DirectAdmin , Plesk , Games, IRC Services, Desktop and many more.&lt;br /&gt;
* [https://www.totallyhosted.nl/ TotallyHosted] OpenVZ based Premium VPS services located in the Netherlands @ Serverius DC.&lt;br /&gt;
* [https://undergroundprivate.com/russiaoffshorevps.html  UndergroundPrivate.com] - OpenVZ with highly privacy, offshore , DMCA ignored , high confidence, SolusVM and cPanel, managed and non managed service.&lt;br /&gt;
* [http://www.voipcomplete.com/product-overview/dedicated-vps.html VOIPcomplete] offers dedicated VPS plans based on CentOS including a VPS management interface.&lt;br /&gt;
* [http://www.vpsfast.us/netherlands-vps VPSFast] - VPS Provider with good prices in Netherlands.&lt;br /&gt;
* [https://www.vps9.net/netherlands-vps VPS9.NET] - VPS9 OpenVZ Nodes are located in Naaldwijk, Netherlands. We provide OpenVZ VPS Services at very a affordable cost, powered with 20x Faster SSD on RAID-10 Partition.&lt;br /&gt;
* [https://www.waveride.at/ Waveride] Waveride, an EDIS company, offers budget full gigabit OpenVZ + solusVM VPS in Austria, USA and the Netherlands&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Norway ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.vpsfast.us/norway-vps VPSFast] - VPS Provider with good prices in Norway.&lt;br /&gt;
&lt;br /&gt;
== Pakistan ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://vimzaa.com/ Vimzaa] The best hosting in Pakistan.&lt;br /&gt;
&lt;br /&gt;
== Philippines ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.web.com.ph/vps.php Web.com.ph] - provides OpenVZ virtual servers in the Philippines.&lt;br /&gt;
&lt;br /&gt;
== Perú ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.hn.pe/ Hostname] Hostname offers business OpenVZ containers in Perú&lt;br /&gt;
* [http://www.hostingandino.pe/ Hostingandino Lima - Peru] - VPS with OpenVZ in Peru&lt;br /&gt;
* [http://www.hostingplus.pe/ HostingPlus Internet Limitada] - High Performance Vps provider in Peru&lt;br /&gt;
* [https://www.hostingroup.com/ Hostingroup] Web hosting for small businness in Perú.&lt;br /&gt;
* [https://hostingweb.pe/ Hosting Web] The best hosting in PERU.&lt;br /&gt;
* [https://www.inchosting.pe/ HostingINC SAC] OpenVZ virtualization solutions for business in Perú.&lt;br /&gt;
* [https://www.mejorhosting.pe/ Mejor Hosting Perú] Hosting comparison for peruvian hosting providers.&lt;br /&gt;
* [https://webuniversal.pe/ Web Universal] The best hosting in PERU in the World.&lt;br /&gt;
* [https://alojamientoplus.com/ AlojamientoPlus] Best Hosting and server in Perú.&lt;br /&gt;
&lt;br /&gt;
== Poland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://hosteam.pl/ HosTeam] offers OpenVZ VPS hosting from their DataCenter in Poland. Customer has choice of all major Linux distros (WARNING!!! restoring your backup is VERY expensive and they charge even if it wasn't restored correctly!), NATIVE IPV6 AVAILABLE!&lt;br /&gt;
&lt;br /&gt;
* [http://ultimahost.pl/ UltimaHost] high grade OpenVZ VPS and FreeBSD jail (DC in Łódź, Poland), brand of statnet.pl, SSD available for more expensive packets, NO IPV6 AVAILABLE (but they can load you tun module)&lt;br /&gt;
&lt;br /&gt;
* [http://budgetvps.pl/ BudgetVPS] very cheap, low end grade OpenVZ VPSes (DC in Gdańsk, Poland), brand of HitMe.pl&lt;br /&gt;
&lt;br /&gt;
* [https://hitme.pl/ HitMe.pl] high grade OpenVZ/Xen PV/Xen HVM VPSes, Virtuozzo (DC in Gdańsk, Poland), NATIVE IPV6 AVAILABLE (/64 on demand for free)!&lt;br /&gt;
&lt;br /&gt;
* [http://www.kr-cpd.pl/oferta/serwery-vps/ KR-CPD] Cracow's Center of Data Processing (DC of course in Cracow, Poland)&lt;br /&gt;
&lt;br /&gt;
* [http://livenet.pl Livenet] cheap, middle/low end OpenVZ VPSes (DC in Łódź, Poland)&lt;br /&gt;
&lt;br /&gt;
* [http://slaskdatacenter.pl/ Śląsk Data Center] high/middle grade OpenVZ VPSes (DC in Silesia province, Poland), SSD available for more expensive packets&lt;br /&gt;
&lt;br /&gt;
* [https://www.ionic.pl/ IONIC.pl] VPS OpenVZ with SolusVM control panel, own DC in Cracow&lt;br /&gt;
&lt;br /&gt;
* [https://microvps.pl/ MicroVPS.pl] Middle And low end OpenVZv7 VPS plans. SSD for regular VPS and HHD for storage plans (up to 1TB)&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Portugal ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.ptservidor.pt/ PTServidor] - OpenVZ virtual servers with free management based in Portugal.&lt;br /&gt;
* [http://www.efeito.net/ Weblevel.pt] - OpenVZ virtual servers based in Portugal.&lt;br /&gt;
* [https://www.webtuga.pt/ WebTuga] - Managed/Unmanaged Virtual Private Servers hosted in a Portuguese Datacenter with lots of extras&lt;br /&gt;
* [https://www.cloudfire.pt/ CloudFire] - OpenVZ VPS at very low prices hosted in Portugal&lt;br /&gt;
* [https://www.linxisp.com/ LINXISP] - High Availability &amp;amp; Performance OpenVZ Containers&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] - Build an OpenVZ VPS in 14 locations WordWide From £2.49&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Romania ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://b3hosting.ro/ B3 Hosting] - top Romanian hosting company offering managed/unmanaged OpenVz virtual servers based in Bucharest, Romania, Germany, Netherlands and UK for top prices&lt;br /&gt;
* [http://www.intovps.com IntoVPS] - offers unmanaged OpenVZ virtual servers based in Romania, Netherlands and USA. A lot of resources for decent prices.&lt;br /&gt;
* [http://www.ename.ro/dedicated.html eName] - managed OpenVZ virtual servers in Bucharest, Romania&lt;br /&gt;
* [http://www.ch-center.com/virtual-servers Ch-center] - unmanaged OpenVZ virtual servers, based in Romania in it's own Data Center&lt;br /&gt;
* [http://www.clouds.ro/servere-virtuale/ Clouds] - OpenVZ virtual servers hosted on premium hardware, in Romania&lt;br /&gt;
* [http://www.HostSailor.com/ HostSailor] HostSailor provides affordable &amp;amp; high quality OpenVZ and KVM servers in Romania&lt;br /&gt;
* [https://www.shape.host/linux-vps/ Linux VPS] - OpenVZ virtual servers, Instant Linux VPS&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [https://bmfhost.com/nvme-ssd-vps/ BMF Host] - NVMe SSD VPS, Starting from  €12/month Unlimited traffic. A high-performance VPS Romanian hosting&lt;br /&gt;
&lt;br /&gt;
== Russia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.internoc24.host Internoc24.HOST] is an international [https://www.www.internoc24.host Offshore VPS ] provider with reliable SSD VPS in Moscow, Russia. Focus ist on high privacy protection so they accept several Cryptocurrencies like Bitcoin, Ethereum and others for anonymous payments.&lt;br /&gt;
* [http://www.ihc.ru/vps.html IHC.RU] - VPS hosting in Moscow, Russia starting at $10/month with good set of precreated templates&lt;br /&gt;
* [http://mchost.ru/services/linux-vps/ McHost.ru] - Linux VDS Hosting from McHost.&lt;br /&gt;
* [http://hosting.agava.ru/vps/ AGAVA] - Linux VPS hosting based on OpenVZ.&lt;br /&gt;
* [http://vdsplanet.ru/ VDSPlanet.ru] - unmanaged VDS/VPS hosting starting at 3.99$ a month. Large variety of OS templates and free ISPmanager Lite control panel. Total automation is our goal.&lt;br /&gt;
* [http://www.demos.ru/service/datacenter/vps.html Demos-Internet] - we offer OpenVZ Virtual Private Server based on Linux.  All VPS come with ISPmanager control panel.&lt;br /&gt;
* [http://www.net.ru/service/net9/ www.net.ru] - OpenVZ virtual private servers.&lt;br /&gt;
* [http://www.eurobyte.ru/ Eurobyte.ru] - Linux VDS Hosting from Eurobyte.&lt;br /&gt;
* [https://undergroundprivate.com/russiaoffshorevps.html  UndergroundPrivate.com] - OpenVZ with highly privacy, offshore , DMCA ignored , high confidence, SolusVM and cPanel, managed and non managed service.&lt;br /&gt;
* [http://www.telekom.ru/service/vps.html Elvis Telekom] - OpenVZ hosting with base and cpanel templates from Elvis Telekom.&lt;br /&gt;
* [http://fastvps.ru/vds/ FastVPS] - OpenVZ hosting, ISPmanager, Hetzner, MayFlower.&lt;br /&gt;
* [https://lepus.su/vps.html Lepus] - OpenVZ hosting, SSD, ISPmanager free, Hetzner.&lt;br /&gt;
* [http://www.hts.ru/vds/ HTS] - OpenVZ hosting, ISPmanager, Linux VPS hosting based on OpenVZ in Moscow.&lt;br /&gt;
* [https://selectel.ru/services/vds/ Selectel] - OpenVZ hosting.&lt;br /&gt;
* [https://galaxydata.ru/root-server/ GalaxyData] - Virtuozzo Containers in Cloud Storage.&lt;br /&gt;
* [http://hosterbox.ru/servers/ Hosterbox.ru] - Managed VPS hosting. Based on OpenVZ + SolusVM + ISPmanager.&lt;br /&gt;
* [https://firstvds.ru FirstVDS.ru] - One of the leading hosting companies providing virtual private servers.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Singapore ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://conceptlane.com/?t=hostingservices#ratesvps ConceptLane Pte Ltd] - OpenVZ VPS on dual octa-core AMD Opterons running Debian Wheezy 7, custom control panel with bandwidth graphs, reboot/reinit and web-based VNC access.&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [http://www.qoxy.com/vps QOXY.com] Affordable and Reliable OpenVZ VPS Hosting in a Singapore Data Center.&lt;br /&gt;
* [http://www.secureax.com/ SecureAX Pte Ltd] - Singapore Premium Internet Solution Provider&lt;br /&gt;
* [http://www.planettel.com.sg PlaNetTel] - Affordable and customised OpenVZ containers across 3 data centers - contact Thomas Festus at +65-66936881. [http://pve.proxmox.com/wiki/User:Apmuthu#Squeeze_based_Templates Sponsors OpenVZ Container Template]s for the Open Source community.&lt;br /&gt;
* [http://www.vpsfast.us/singapore-vps VPSFast] - VPS Provider with good prices in Singapore.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Serbia ==&lt;br /&gt;
* [https://www.skyhosting.rs/en/vps-servers SkyHosting] - Fast Linux OpenVZ VPS SSD Hosting with SolusVM control panel.&lt;br /&gt;
* [https://www.ninet.rs/en/vps-servers NiNet Company] - Linux OpenVZ VPS servers. Well known VPS hosting company from Serbia with their own data center&lt;br /&gt;
* [http://www.suonline.net SuOnline.Net ISP] - Linux OpenVZ VPS servers, Docker enabled !!!&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== South Africa ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.host1plus.com/ Host1Plus] - Local South African servers hosted in Johannesburg. OpenVZ VPS servers starting from $3.00 per month.&lt;br /&gt;
* [http://www.vps.co.za/ VPS.CO.ZA] - South Africa's oldest VPS provider. Local South African servers with SolusVM control panel. OpenVZ, Xen and OnApp Cloud.&lt;br /&gt;
* [http://247hosting.co.za/vpshosting.php 247Hosting] - OpenVZ virtual servers locally in South Africa with SolusVM control panel. cPanel option available!&lt;br /&gt;
* [http://www.SoftDux.co.za/ SoftDux] - OpenVZ virtual servers based America &amp;amp; South Africa. All VPS's come with cPanel or Plesk control panels. XEN VPS's also available.&lt;br /&gt;
* [http://www.clickworks.co.za/ Clickworks] - OpenVZ / Xen VPS servers hosted in RSA. Backed by Solusvm control panel.&lt;br /&gt;
* [http://www.elitehost.co.za/ Elite Host] - OpenVZ virtual servers based in America &amp;amp; South Africa. All VPS's come with cPanel and unlimited bandwidth.&lt;br /&gt;
* [http://www.telasera.com/ Telasera] - OpenVZ VPS servers hosted in South Africa. Supermicro Servers powered by Intel Xeon with 24/7 Support.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Spain ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.corpresa.com/servidores-virtuales.html Corpresa Hosting] - Tiene algún proyecto entre manos y un plan de hosting no le hes sufuciente y un servidor dedicado no está dentro de su presupuesto?, una solución de VPS a medida será la que cubrirá todas sus necesidades.&amp;quot;&lt;br /&gt;
* [https://www.datomedia.es Datomedia] - Cloud alta disponibilidad powered by Virtuozzo 6 y Servidores VPS bajo openvz y kvm.&lt;br /&gt;
* [https://www.evidaliahost.com/vps/ EvidaliaHosting] - Servidores VPS totalmente configurados con panel de gestión Plesk 12.5, garantía de devolución de 30 días y posibilidad de discos SSD.&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
* [https://ginernet.com/vps-ssd.php GINERNET] - Servidores VPS alojados en España desde 1.99€/mes.&lt;br /&gt;
* [https://www.hostingplus.com.es Hosting Plus España] provide OpenVZ containers at our own datacenter. Starting from us20/month RAID 10 SSD.&lt;br /&gt;
* [https://www.somtecnologia.com/ Som Tecnologia] - OpenVZ/6 , containers up to Debian 9&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Sweden ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.admax.se/vps/ Admax] - Admax offers enterprise grade virtual servers with great pricing. Custom control panel, API, remote access &amp;amp; more.&lt;br /&gt;
* [https://www.acon.se/vps Acon VPS Server] - VPS Server and Dedicated server provider in Sweden.&lt;br /&gt;
* [https://www.glesys.com/vps.php GleSYS] - VPS Provider with a great control panel and good prices&lt;br /&gt;
* [https://cspacehostings.com CSpace Hostings] Stockholm, Sweden Hosted SSD and Storage VPS based on OpenVZ (OVZ) 7.&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides the highest quality SSD VPS in Stockholm, Sweden. Based on completely pure SSD in RAID-10 and delivering extremely high network &amp;amp; hardware performance along with reliability.&lt;br /&gt;
* [https://www.nametyper.com NameTyper] - VPS and Shared hosting provider. Customize your own OpenVZ Container with 1-12 cores running on SSD and ECC RAM. &lt;br /&gt;
* [https://virtualcenter.se VirtualCenter] - The first Cloud provider with SSD VPS in Sweden. Offer enterprise class hardware and network infrastructure&lt;br /&gt;
* [http://www.vpsfast.us/sweden-vps VPSFast] - VPS Provider with good prices in Sweden.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Switzerland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
* [http://www.vpsfast.us/switzerland-vps VPSFast] - VPS Provider with good prices in Switzerland.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Tanzania==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.aptus.co.tz/ Aptus Solutions] - OpenVZ / SolusVM VPS Servers located in Dar es Salaam - 100meg to TIX. CentOS &amp;amp; Ubuntu.&lt;br /&gt;
&lt;br /&gt;
== UK ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.34sp.com/ 34SP.com] - We're a UK based web hosting company, bridging the gap between sophisticated hosting solutions &amp;amp; affordable prices&lt;br /&gt;
* [http://www.AceShells.com/ AceShells] - Fast, stable, high quality UK based virtual private servers from just £5 a month, operating since 2001&lt;br /&gt;
* [http://www.AtlanticServers.com/ Atlantic Servers] - Affordable VPS, stable, high quality VPS, UK based Data Centre&lt;br /&gt;
* [https://awebhosting.uk/ AWebHosting.uk] VPS hosting offered by [https://awebsolutions.uk/ AWEBSOLUTIONS LIMITED] reliable UK hosting provider located in London, UK and Hosted in UK DataCentre.&lt;br /&gt;
* [http://www.BargainVPS.co.uk/ BargainVPS] - UK / US / EU Instant setup VPS - We have some great Linux &amp;amp; Windows Bargain VPS packages on offer for you here all available Fully Managed.&lt;br /&gt;
* [http://www.cheapvps.co.uk/ CheapVPS] - CheapVPS provide cheap, UK based OpenVZ VPS servers. Hosted on high end hardware, in a top UK datacenter backed up with 24/7/365 support. Choice from a wide range of Linux distros. OpenVZ VPS managed with SolusVM.&lt;br /&gt;
* [http://www.chilliserver.com/ Chilliserver] - Affordable plans starting from just £3.99, not oversold. RHEL6 Kernel with VSwap, TUN/TAP/FUSE and ACL support enabled. SolusVM control panel with custom snapshot system and rescue system. Based in a European data Centre with UK based support.&lt;br /&gt;
* [http://www.chvps.com/ CHVPS] - Switzerland Based VPS, Cheap Pricing with solusVM control panel.&lt;br /&gt;
* [http://www.cislondon.co.uk/virtual-private-servers/ Commercial Internet Solutions] - CIS provides premium hosting at competitive rates, focused on Small Businesses within the M25 orbital. Hosting is on Dual Quad core Intel Xeon supermicro servers in Tier 4 datacenters around London.&lt;br /&gt;
* [http://www.datacorporate.co.uk/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [http://domvps.com/ domVPS] - OpenVZ Virtual Servers in the USA, Germany, France &amp;amp; the Netherlands at a low cost.&lt;br /&gt;
* [http://www.DubHosting.co.uk/ DubHosting] - DubHosting started in 2004 has been providing cost effective hosting to clients world wide. Fully managed OpenVZ servers based in Europe &amp;amp; US are one of their many strong points. They can provide you with a dedicated server and install openvz allowing you to sell your own vps servers. Their servers are located at UKGrid in Manchester with 24/7/365 support&lt;br /&gt;
* [http://www.europhase.net/virtual-private-servers/ Europhase UK Limited, UK VPS] - OpenVZ VPS Hosting, Virtual Dedicated Servers, UK VPS hosted at multiple UK datacentres from £4.99&lt;br /&gt;
* [https://farbyte.uk/vps Farbyte VPS] - UK based OpenVZ VPS and shared web hosting services&lt;br /&gt;
* [http://www.fdqwholesale.co.uk FDQ Wholesale] - UK based hosting services&lt;br /&gt;
* [http://www.gemvps.net/ GemVPS.NET] - UK (Manchester) Based Company, OpenVZ Virtual Servers in the UK &amp;amp; France on Fast nodes.&lt;br /&gt;
* [http://www.hadrill.org.uk Hadrill Online] - Fully managed hosting with unlimited bandwidth. Quotes available through contact form.&lt;br /&gt;
* [http://www.infrenion.com./uk_vps_hosting.html Infrenion Networks UK] Cheap, economical and reliable web hosting solutions, VPS based on the openVZ platform. You can host any YouTube Clone scripts with free FFMPEG setup on our vps servers. Also offers with a choice of selecting DataCenter.&lt;br /&gt;
* [https://www.laws-hosting.co.uk/vps-hosting.php Laws Web Hosting] - Laws Web Hosting offers OpenVZ VPS Hosting with packages starting from £5.50/m that will cater for anyone. We have OpenVZ VPS hosting solutions, and come with moderate DDoS protection.&lt;br /&gt;
* [http://www.letstalkdigital.com/index.php?option=com_content&amp;amp;view=article&amp;amp;id=73&amp;amp;Itemid=65 LetsTalkDigital VPS Hosting] - LetsTalkDigital.com offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from $14.99. Virtual Private Server(VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://www.meteorvps.com/ MeteorVPS] - Professional, Non-Oversold amazing VPS plans pretty cheap using SolusVM management, range from 512MB -&amp;gt; 16GB&lt;br /&gt;
* [http://www.minivps.co.uk miniVPS] miniVPS offers VPS hosting solutions with nodes located in UK, utilising openvz/solusvm with future locations of USA and UK. &lt;br /&gt;
* [https://www.first2host.co.uk First2Host Cheap VPS] - Intel Xeon E5-2630v3 OpenVZ VPS Servers. Don't be defined by a pre-made VPS plan. Create your own VPS Plan by assigning the resources that you require. SATA, SSD or NVMe storage 100 MBPS, 250 MBPS, 500 MBPS, 1GBPS speeds and free cPanel licenses.&lt;br /&gt;
* [http://www.phurix.co.uk/ Phurix] - A UK based web solutions company that provides you with reliable hosting at extremely affordable prices, VPS server virtualization using OpenVZ.&lt;br /&gt;
* [http://www.qualityservers.co.uk Quality Servers] - Affordable OpenVZ virtual servers based in the UK and USA. Choice of control panels and management options.&lt;br /&gt;
* [http://www.rackburst.net/ Rackburst] - UK SSD VPS Hosting with fast UK-based Live Support available from £1.49 per month.&lt;br /&gt;
* [http://www.rshosting.co.uk/vps.html RSHosting UK] - Offering the most secure, reliable, stable and fast UK VPS Web Hosting based on OpenVZ architecture. Our Virtual Dedicated Servers are physically hosted on powerfull Quad Core servers located in multiple UK datacentres.&lt;br /&gt;
* [http://www.sharkserve.rs SharkServers] - Low Cost OpenVZ virtual servers in the UK. Choice of control panels and management options. Own Datacentre.&lt;br /&gt;
* [https://www.ukhost4u.com/ UKHost4u] - A leading provider of VPS solutions for over 19 years!&lt;br /&gt;
* [http://www.vpsfast.us/united-kingdom-vps VPSFast] - VPS Provider with good prices in UK.&lt;br /&gt;
* [http://www.vpsmachine.co.uk/ vpsMachine] Quality openvz hosting platform with a large choice of customer OS templates.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [https://www.webhostuk.co.uk/vps-hosting.html WebHostUK LTD] - Offers Cheap yet Best UK VPS Web Hosting working on OpenVZ Platform.We offers fully Managed UK VPS with true 24/7/365 days support.All our Servers are located in UK London DC.&lt;br /&gt;
* [http://www.webhostinguk.com/vps/vps-hosting.html Web Hosting UK] - Fully managed OpenVZ VPS Hosting offered on fast and reliable and affordable servers in UK &amp;amp; European datacenter with 24x7x365 days lightning fast support.&lt;br /&gt;
* [http://www.weycrest.co.uk/vps-hosting.php Weycrest VPS] - Low Cost, Stable OpenVZ and Parallels' Virtuozzo Virtual Private Server solutions. London UK Hosted at Coreix with a choice of operating systems, and root and control panel options.&lt;br /&gt;
* [http://www.xilo.net/virtual_private_servers-vps/ XILO] - UK-based hosting with UK-based support. VPS services offered with a choice of cPanel, Webmin and other useful applications, VoIP, SIP, VPN to name a few.&lt;br /&gt;
* [http://www.zxvps.co.uk/ ZxVPS VPS Hosting] - Quality, non-oversold VPS based on the openVZ platform, using SolusVM management panel, VPS from 128mb - 2gb, cpanel, direct admin, kloxo, etc.&lt;br /&gt;
&lt;br /&gt;
== Ukraine ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://ekvia.com/ Ekvia] - VDS/VPS based on OpenVZ. Free trial 14 days. Domain registration for VDS/VPS.&lt;br /&gt;
* [http://www.gelihost.com/ Geliar Hosting Solutions] - Fast virtual dedicated servers based on OpenVZ. Geliar Hosting Solutions offering many control panels and other useful services.&lt;br /&gt;
* [http://www.hostpro.ua/ Hostpro.ua] - Full managed OpenVZ servers.&lt;br /&gt;
* [http://www.vpsfast.us/ukraine-vps VPSFast] - VPS Provider with good prices in Ukraine.&lt;br /&gt;
&lt;br /&gt;
== USA ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.a2hosting.com A2 Hosting] is your high-performance [http://a2hosting.com/openvz-vps-hosting OpenVZ VPS Hosting] provider. Design your perfect [http://a2hosting.com/vps-hosting VPS Hosting] account today! Featuring SwiftServers and SSDs with page load speeds up to 300% faster compared to standard drives.&lt;br /&gt;
* [http://www.afterburst.com Afterburst] (Previously FanaticalVPS): affordable unmetered, unmanaged VPS servers in NY.&lt;br /&gt;
* [https://www.asurahosting.com/ AsuraHosting] offers powerful, reliable, and simple OpenVZ VPS to clients. AsuraHosting has a dedicated support team, and quality hosting; Pricing starts at just $5/month!&lt;br /&gt;
* [http://beyondhosting.net BeyondHosting.net] High Performance OpenVZ Virtual Private Servers (VPS)  Tier 1 US Datacenter.&lt;br /&gt;
* [http://buyvm.net BuyVM.net] DDoS Protection, three datacenter locations, Stallion control panel. Affordable quality VPS hosting since 2010!&lt;br /&gt;
* [https://www.binarycpu.com Binary Computer Solutions] has provided OpenVZ based Virtual Private Server hosting for over 5 years.  Network outages are a thing of the past, and oversold services are never heard of here.  Built on solid technology, with infrastructure to match - Binary Computer Solutions will give you hosting you need, without the cost others ask for.  Starting at $30.00/mo.&lt;br /&gt;
* [http://www.bodhost.com/ Bodhost.com] Fast, Reliable and secure web hosting service with 24*7 free customer service.&lt;br /&gt;
* [http://www.buildyourvps.com/ BuildYourVPS.com] mix ‘n’ match your VPS; choose only the bandwidth, RAM, disk capacity, type of IP connection, level server redundancy, and the support/monitoring you want. [http://www.buildyourvps.com/ BuildYourVPS] is the 1st to offer you a highly-customized VPS solution, without making you pay for unused extra features.&lt;br /&gt;
* [https://www.budgetvm.com/openvz-linux-vps.php BudgetVM.com] Each server includes our industry-leading SLA, DDoS protection, 200Gbps networks and 7 * 24-hour customer support.&lt;br /&gt;
* [http://www.byethost.com Byethost.com] offers OpenVZ based VPS Hosting as its main VPS solution, with the hypervm panel. Centos, Debian, Fedora, OpenSuse and Ubuntu Containers are available.&lt;br /&gt;
* [http://cheaperasp.net CheaperASP.Net] provides Quality web hosting on the OpenVZ platform. You also help you get best options at [http://cheaperasp.net/godaddy-1-hosting-free-domain-promo/ affordable] cost.&lt;br /&gt;
* [http://www.chhost.net/vps.htm CH Hosting VPS Hosting] CH Hosting or chhost.net offers OpenVZ based VPS Hosting. 24/7 Support. Upgrade/Downgrade your plan as needed on-the-fly without the risk of downtime. Since 2006. Non-Oversell&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in USA from 1.88EUR/month.&lt;br /&gt;
* [http://www.cloudshards.com Cloud Shards] High Performance, reliable, stable and affordable OpenVZ Virtual Private Servers (VPS) in data centers across the USA.&lt;br /&gt;
* [https://cloudgearhosting.com CloudGear Hosting] - offers OpenVZ hosting in 4 locations across the USA. Including free DDoS Protection and free SSL with cPanel.&lt;br /&gt;
* [https://cspacehostings.com CSpace Hostings LLC] Dallas,TX US Hosted SSD and Storage VPS based on OpenVZ (OVZ) 7.&lt;br /&gt;
* [http://www.datacorporate.com/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [https://www.delimiter.com/storage-vps/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [https://www.cheapdomainnamesdot.com Domain Host SSL] provides Reliable web hosting with OpenVZ platform Since 2003, Located New York city, Atlanta, Los Angeles. &lt;br /&gt;
* [http://www.DubHosting.com/ DubHosting] - DubHosting started in 2004 has been providing cost effective hosting to clients world wide. Fully managed OpenVZ servers based in Europe &amp;amp; US are one of their many strong points. They can provide you with a dedicated server and install openvz allowing you to sell your own vps servers.&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
* [http://www.ethernetservers.com/ Ethernet Servers] A leading provider of OpenVZ Virtual Servers in Los Angeles, Miami and Buffalo with SolusVM.&lt;br /&gt;
* [http://www.evolucix.com/ Evolucix.com] Evolucix offers state of the art, professional, and reliable OpenVZ VPS solutions on top-notch hardware while providing quality support.&lt;br /&gt;
* [http://www.evolvedservers.com Evolvedservers.com] Openvz based vps servers. Hosted in Michigan, USA. 24/7 Support. Hosted in tier-3 and tier-4 datacenter's with multiple redundancies.&lt;br /&gt;
* [http://fastwebhost.com/vps-hosting.html Fastwebhost]: affordable cloud VPS servers using OpenVZ. &lt;br /&gt;
* [http://www.fliphost.net Fliphost.net]: Powerful, affordable instant setup VPS systems. Servers based in Phoenix Az with another location coming soon.&lt;br /&gt;
* [http://www.frontrangehosting.com Front Range Hosting]: SSD Cached KVM &amp;amp; OpenVZ VPS Hosting Prices Start at 2.00/mo, located in Colorado Springs, Colorado.&lt;br /&gt;
* [http://glesys.se GleSYS] is a hosting company specialized in serverhosting. Also offering VPS hosting mainly based on OpenVZ. GleSYS has provided access to server and Cisco hardware for developers from OpenVZ to find problem with VLAN implementation.&lt;br /&gt;
* [http://goodealhosting.com/ GOODEALHOSTING.com] Quality Hosting Solutions! Provides affordable unmanaged/managed VPS based on OpenVZ! start from $10.00, real 24/7 support.&lt;br /&gt;
* [http://gothost.net GotHost.net] Providing OpenVZ based VPS Hosting with SolusVM. All nodes are Quad Core Xeon with RAID-10 for speed and redundancy. Budget plans starting at $7.99.&lt;br /&gt;
* [http://www.greengeeks.com/ GreenGeeks Hosting] VPS Hosting. Dual Intel Xeon 64-Bit CPU's, DDR3 RAM, RAID-10 SSD Storage Arrays. 24/7 Support. cPanel/WHM + more!&lt;br /&gt;
* [http://hostarmor.com HostArmor™] - is best known for low-cost and reliable shared hosting and dedicated servers. Recently the company expanded to offer OpenVZ virtual server plans at 8 worldwide locations, five in the U.S., one in Germany, one in France, and one in the Netherlands. VPS plans start at $13.99/month.&lt;br /&gt;
* [http://www.host4geeks.com Host4Geeks] - Host4Geeks is a premium Fully Managed VPS provider with datacenters across 2 locations in US and in UK. All servers offer a free cPanel license.&lt;br /&gt;
* [http://www.host1plus.com Host1Plus] - OpenVZ based virtual servers in Chicago and Los Angeles. VPS plans start at $2.00 per month.&lt;br /&gt;
* [http://www.hostavps.com HostAVPS] - Providing Fully Managed VPS's on both the West &amp;amp; East Coast.&lt;br /&gt;
* [https://www.hostcapitol.com Host Capitol] offers fast and reliable web hosting services, including OpenVZ VPS Hosting, to clients ranging from small businesses to corporations. Located in Piscataway, New Jersey.&lt;br /&gt;
* [http://www.hostcolor.com Host Color] - OpenVZ based virtual servers hosted in a Tier 4 class data center based out of South Bend, Indiana. Juniper managed, fully-redundant network with uplinks to Level 3, Cogent and Internap.&lt;br /&gt;
* [https://www.hostgalaxy.com HostGalaxy] - OpenVZ based virtual servers. The fastest hosting in the Galaxy!&lt;br /&gt;
* [http://www.hostigation.com Hostigation] - High resource unmanage VPS hosting solutions.&lt;br /&gt;
* [http://www.hostingrails.com Hosting Rails] offers Rails-targeted OpenVZ VPS Hosting and updated Rails-ready OS images.&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [http://www.hostmist.com Host Mist] features budget OpenVZ VPS hosting from four major cities across the US.&lt;br /&gt;
* [http://www.hostrush.com HostRush] Self managed, ssd vps for business and non business. &lt;br /&gt;
* [http://www.dailyhosting.net hostoople] We offer OpenVZ VPS hosting from Dallas Texas, Starting at $29.95/month &lt;br /&gt;
* [https://hostus.us HostUS] provides unmanaged and managed OpenVZ VPS in Atlanta, Dallas and Los Angeles with custom control panel. A large variety of Linux distros are available. Enjoy 15% off with coupon VPS15OFF.&lt;br /&gt;
* [https://www.hostwinds.com Hostwinds] Affordable managed/unmanaged VPS Solutions.&lt;br /&gt;
* [http://hostsia.com Hostsia] With HOSTSIA Web services, you can get an OpenVZ VPS for only $15.00/mo. Each OpenVZ VPS includes multiple free-of-charge bonuses and offers a 99.9% uptime guarantee. You can also use our charge-free Hepsia CP, which is available with each OS – it permits you to host an unmetered number of domains and comprises heaps of handy tools, which will help you better manage your site and your VPS web hosting account.&lt;br /&gt;
* [http://www.infrenion.com./vps_hosting.html Infrenion Networks] Cheap, reliable and secure VPS hosting solutions, based on the openVZ platform. You can host any YouTube Clone scripts with enhanced support quality round the clock.&lt;br /&gt;
* [http://iniz.com/ INIZ VPS Hosting] INIZ provides affordable VPS Hosting in Los Angeles &amp;amp; New York with high resources at low prices.&lt;br /&gt;
* [https://www.interserver.net/ InterServer Web Hosting] Fast &amp;amp; Reliable VPS - 24x7 Support. 99.9% Up-time, Hosting Since 1999!.&lt;br /&gt;
* [http://www.joinvps.com JoinVPS.com] ISPmanager OpenVZ based VPS hosting. 24/7 Technical Support. Free ISPmanager control panel.&lt;br /&gt;
* [http://www.lovevps.com LoveVPS] Budget VPS provider starting at $5.99/month located in the US with Xeon nodes.&lt;br /&gt;
* [http://www.letstalkdigital.com/index.php?option=com_content&amp;amp;view=article&amp;amp;id=73&amp;amp;Itemid=65 LetsTalkDigital VPS Hosting] LetsTalkDigital.com offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from $14.99 Virtual Private Server(VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://lylix.net LYLIX] offers affordable VPS hosting with a choice of eight different Linux distributions, dedicated VPS hosting, and specializes in Asterisk/VOIP based hosting including Trixbox, AsteriskNow, Elastix, and PBX-in-a-Flash.  Popular choice for unmanaged IP-PBX services; entire infrastructure built on a High-availability (HA) network across three regional NOCs.&lt;br /&gt;
* [http://www.micfo.com Micfo.com] offers VPS hosting services for both Linux VPS hosting and Window VPS hosting on affordable price combined with world-class 24x7x365 support.&lt;br /&gt;
* [http://www.neostreams.info/neoshop/cart.php?gid=9 nEo Stream Services] Offer's Top Quality OpenVZ Servers, Starting at $18.95 per month! SolusVM Control panel , 7 day Money Back Guarantee , 24x7 Professional Support.&lt;br /&gt;
* [http://pogiweb.com/vps/ PogiWeb LLC] Instant and free setup. Includes SolusVM control panel and free level 1 support during first month.&lt;br /&gt;
* [http://www.theserverexperts.com TheServerExperts.com] TheServerExperts VPS line is the ideal solution for clients who require the control of a dedicated server matched with the affordability and simplicity of a traditional shared hosting account.&lt;br /&gt;
* [http://thenynoc.com New York NOC] affordable Linux VPS hosting out of New York and Chicago. Plans as low as $5 a month and are backed by a redundant infrastructure and 24/7 support.&lt;br /&gt;
* [http://railsplayground.com RailsPlayground.com] Ruby on Rails VPS with ready to go Rails images with the LxAdmin control panel&lt;br /&gt;
* [http://www.raidlogic.net RaidLogic.NET] RaidLogic.NET offers OpenVZ based Linux VPS out of multiple facilities across the United States, including Miami, Los Angeles, and Chicago. Starting as low as $3.95/month.&lt;br /&gt;
* [http://www.ramhost.us RAM Host] RAM Host offers OpenVZ based Linux VPS out of multiple facilities across the United States, including Atlanta, Kansas City, and Phoenix.&lt;br /&gt;
* [http://www.reconhosting.com Recon Hosting] Recon Hosting offers affordable OpenVZ VPS solutions where you get Quality Hosting at a Fraction of the price. Instant setup with the latest Operating System templates including cPanel.&lt;br /&gt;
* [http://www.rokabear.com Rokabear] Rokabear offers OpenVZ Linux VPS, Dedicated Server, and Colocation. All Hardware setup in High Availability mode including raided drives and redudnant power and network connections. With multiple upstream providers, Rokabear's connectivity is fast and reliable! Rokabear supports LAMP, Openvpn, and Asterisk configurations. VPSes start at $7.99!&lt;br /&gt;
* [https://www.rosehosting.com RoseHosting] offers OpenVZ Linux virtual servers equipped with Enterprise Grade SSD drives. All hosting plans are fully-managed with FREE 24/7 support, FREE website migration, FREE weekly backups and FREE server monitoring included.&lt;br /&gt;
* [http://www.rshosting.com/vps.html RSHosting.com] RSHosting offers the most secure, reliable and stable VPS - Virtual Private Servers based on OpenVZ architecture, powered by the most professional and qualified 24/7 lightening fast support.&lt;br /&gt;
* [http://www.servercomplete.com Server Complete, LLC] Server Complete offers OpenVZ based Linux VPS out of multiple facilities across the United States, including Atlanta, Dallas, and Chicago.&lt;br /&gt;
* [http://www.serverdime.com ServerDime] Offers affordable dedicated servers located in Dallas, TX. &lt;br /&gt;
* [http://www.servergrove.com ServerGrove] uses OpenVZ as the main virtualization platform for its state of the art VPS hosting services.&lt;br /&gt;
* [http://serverswarm.com ServerSwarm] provides stable, affordable, high performance OpenVZ virtual private servers.&lt;br /&gt;
* [http://Sharktech.net Sharktech] provides custom OpenVZ solutions DDOS-protected up to 100Gbps.&lt;br /&gt;
* [http://www.silverrack.com/ SilverRack VPS Hosting] - SilverRack provides affordable VPS hosting using the OpenVZ platform.&lt;br /&gt;
* [http://www.soficol.com/ Soficol] Offers Enterprise OpenVZ based VPS, hosted on a clustered infrastructure and redundant network. Easy to use user management and instant setup.&lt;br /&gt;
* [http://www.spectrohost.com/ Spectro Host] - Offers performance VPS Servers running openvz. Always the most resources and never over committing OpenVZ nodes.&lt;br /&gt;
* [http://www.budgetvds.com/ BudgetVDS] - Offers VPS Servers running openvz we've been in business for 2 years now using openvz platform.&lt;br /&gt;
* [http://www.syera.net/ Syera Networks] Unmetered VPS From $18.88/M, 24/7 Support, OpenVZ/HyperVM, Instant Setup!, Free 1Gbps Upgrade with Coupon: syera1G&lt;br /&gt;
* [http://www.synapseglobal.com/voip_vps.html SynapseGlobal.com] Elastix, Trixbox, PBX in a Flash and Asterisk VPS - OpenVZ based Asterisk VOIP servers with 14 Tier 1 premium bandwidth providers.&lt;br /&gt;
* [http://www.tektonic.net TekTonic] provides VPS hosting services using both Virtuozzo and OpenVZ technology.&lt;br /&gt;
* [http://www.tigerservers.com/ TigerServers] - Provides affordable managed VPS based on OpenVZ. Servers located in Chicago, Illinois&lt;br /&gt;
* [http://www.tocici.com/ TOCICI VPS Hosting Services] Since 1995 TOCICI has offered web hosting services, with 24/7 support commitments and a strong non-oversell policy. Our purpose-built hosting infrastructure has serviced many organizations for over a decade. Offering OpenVZ VPS, data center colocation, and equipment leasing options, visit our website for prices and more details.&lt;br /&gt;
* [http://www.ultravps.com UltraVPS] UltraVPS offers managed and unmanaged OpenVZ-based VPS hosting utilizing dual CPU hardware nodes with redundant, high-performance RAID-10 storage.  UltraVPS offers VPS servers with many popular control panel options and turn-key applications.&lt;br /&gt;
* [http://www.vpsfx.com VPSFX] VPSFX.com offers OpenVZ VPS, data center colocation, and dedicated servers.&lt;br /&gt;
* [http://www.Webhost.US.Com/linuxvps.html US Web Hosting]  Webhost.US.Com offers powerful GUI based VPS management system with full OpenVZ, Xen Paravirtualization and Xen HVM support.All our Virtual Private servers are fully Managed with 99.9% uptime and 24/7 top notch support.&lt;br /&gt;
* [http://unixservice.com Unixservice/unxsVZ] Low cost OpenVZ ONLY hosting we specialize in Mail, DNS and RADIUS multiple container hosting. At the world famous Market St. San Jose, CA Silicon Valley datacenter. Ping times from your containers to local yahoo and google sites guaranteed single digit ms times. Your containers are backed up at 4 local and 2 remote locations. Contact supportgrp at unixservice dot com.&lt;br /&gt;
* [http://www.vogenic.xyz Vogenic: Cloud Services] If you are searching for an upgrade to the shared hosting service, then you should consider our OpenVZ or KVM VPS hosting services.&lt;br /&gt;
* [http://vpslink.com VPSLink.com] provides virtual private server hosting on the OpenVZ platform.&lt;br /&gt;
* [http://www.vpsspeed.com/ VPSSpeed] - VPSSpeed provides unmanaged OpenVZ based VPS hosting with over 50 OS Templates, real 24/7/365 support and fast US servers. No overselling.&lt;br /&gt;
* [http://vpsnoc.com VPSNOC] offers unmanaged vps hosting based in the USA utilizing OpenVZ hypervisor behind an in-house VPS control panel.&lt;br /&gt;
* [https://www.waveride.at/ Waveride] Waveride, an EDIS company, offers budget full gigabit OpenVZ + solusVM VPS in Austria, USA and the Netherlands&lt;br /&gt;
* [http://www.webappcabaret.com WebAppCabaret] provides VPS solutions for hosting applications. We offer OpenVZ with cPanel or Plesk for web site management; and NGASI Universal App Manager for deploying and managing JAVA and RAILS applications.&lt;br /&gt;
* [http://www.wirenine.com/vps-hosting/ WireNine.com VPS Hosting] Low cost fully managed and unmanaged OpenVZ based VPS Hosting with SAS 15k enterprise drives in high-performance RAID-10 storage.&lt;br /&gt;
* [http://www.zoidial.com/ Zoidial Hosting and VPS] - offers VPS and Virtual Dedicated Server solutions utilizing OpenVZ.  In business since 1998, Zoidial Incorporated is a small hosting provider focused on being security conscious, proactive, and offering a positive client experience.&lt;br /&gt;
* [http://zensix.com ZenSix Hosting] Cheap OpenVZ based VPS accounts with the SolusVM control panel.&lt;br /&gt;
* [http://zigothosting.com Zigot Hosting] Affordable and Reliable OpenVZ based VPS's within the SolusVM control panel.&lt;br /&gt;
* [http://www.vpsfast.us/usa-vps VPSFast] - VPS Provider with good prices in USA (Los Angeles, New Jersey, New York, Seattle, Washington, Dallas, Chicago, Atlanta, Ashburn, Miami, Piscataway).&lt;br /&gt;
* [http://www.xarixlite.com Xarix Lite] - offers OpenVZ hosting in Charlotte, SC. OpenVZ plans starting at $2.50/mo&lt;br /&gt;
* [https://www.yourlasthost.com YourLastHost] is your high-performance [https://www.yourlasthost.com/openvz-vps.php OpenVZ VPS Hosting] Provider. Get your perfect [https://www.yourlasthost.com/openvz-vps.php VPS Hosting] account today! Available in Los Angeles, Dallas, Jacksonville, USA and France, Europe.&lt;br /&gt;
&lt;br /&gt;
== Vietnam ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://appvz.com AppVZ.com] (www.appvz.com) is a leading web solution provider offering domain, hosting, reseller and VPS hosting packages from 2009. Just recently, the company has offered discount packages where customers can avail managed and un-managed VPS for only $9.5 per month.&lt;br /&gt;
&lt;br /&gt;
= Hosting providers comparison =&lt;br /&gt;
&lt;br /&gt;
It is hard to compare all virtual private server offers provided by different hosting providers.&lt;br /&gt;
Sites below can help you with it.&lt;br /&gt;
&lt;br /&gt;
* [https://www.cheapvpsservers.co.uk/ Cheap VPS Servers]&lt;br /&gt;
* [https://www.hostingmyths.com/ Hosting Myths]&lt;br /&gt;
* [https://cheapwebhosting.review/ VPS servers comparison]&lt;br /&gt;
* [https://reviewsquirrel.com/web-hosting-reviews/ Review Squirrel]&lt;br /&gt;
* [http://lowendstock.com/ Lowendstock]&lt;br /&gt;
* [https://www.websitehostingrating.com/ Best Web Hosting Services]&lt;br /&gt;
* [https://foxmaya.com/hosting/best-wordpress-hosting-india/ Best Wordpress Hosting Services]&lt;br /&gt;
* [http://serverbear.com/compare?Sort=RAM&amp;amp;Order=asc&amp;amp;Server+Type=VPS&amp;amp;Monthly+Cost=-&amp;amp;HDD=-&amp;amp;RAM=-&amp;amp;Virtualization=OpenVZ Serverbear]&lt;br /&gt;
* [https://www.comparethehosts.com/vps-web-hosting.htm VPS Web Hosting Reviews]&lt;br /&gt;
* [https://thishosting.rocks/best-cheap-managed-vps/ ThisHosting.Rocks - Managed VPS Providers Comparison]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
http://vpscomp.com&lt;br /&gt;
http://reviewsignal.com/webhosting/compare/&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= See also =&lt;br /&gt;
&lt;br /&gt;
* [[Partners]]&lt;br /&gt;
* [[Download mirrors]]&lt;br /&gt;
* [[VPS vs Dedicated]]&lt;/div&gt;</summary>
		<author><name>Vvs</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.openvz.org/index.php?title=File:Kernel_patches_stats.png&amp;diff=23393</id>
		<title>File:Kernel patches stats.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.openvz.org/index.php?title=File:Kernel_patches_stats.png&amp;diff=23393"/>
		<updated>2021-05-08T15:00:47Z</updated>

		<summary type="html">&lt;p&gt;Vvs: Vvs uploaded a new version of File:Kernel patches stats.png&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category: Development]]&lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
&lt;br /&gt;
This graph shows how many patches from OpenVZ developers were merged into mainstream Linux kernel, per each kernel version.&lt;br /&gt;
&lt;br /&gt;
It is drawn by gnuplot using the data set obtained from kernel git repository.&lt;br /&gt;
&lt;br /&gt;
== Source code ==&lt;br /&gt;
=== Collect data ===&lt;br /&gt;
Here is the script to produce the data for the graph, called &amp;lt;code&amp;gt;count&amp;lt;/code&amp;gt;:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;small&amp;gt;&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
&lt;br /&gt;
# Whose patches to count&lt;br /&gt;
#PAT='@openvz.org|@parallels.com|@sw.ru|@swsoft.com|@sw.com.sg|kuznet@'&lt;br /&gt;
#PAT='@openvz.org|@parallels.com|@sw.ru|@swsoft.com|@sw.com.sg|adobriyan@|kuznet@|gorcunov@'&lt;br /&gt;
PAT='@openvz.org|@parallels.com|@sw.ru|@swsoft.com|@sw.com.sg|@virtuozzo.com|kuznet@|gorcunov@'&lt;br /&gt;
&lt;br /&gt;
# Return the date of the given tag, in a format usable by gnuplot&lt;br /&gt;
get_tag_date() {&lt;br /&gt;
	echo $(git show $1 | egrep ^Date: | head -n1) | &lt;br /&gt;
		sed 's/^Date: ... \(.*\) [-+]....$/\1/' |&lt;br /&gt;
		sed 's/ ..:..:..//' | sed 's/ /-/g'&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
# Count the number of patches whose authors match $PAT,&lt;br /&gt;
# for the period between two given git tags&lt;br /&gt;
count_patches() {&lt;br /&gt;
	git log --pretty=short --no-merges $1..$2 |&lt;br /&gt;
		egrep '^Author: ' | egrep $PAT | wc -l&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
count_total_patches() {&lt;br /&gt;
	git log --pretty=short --no-merges $1..$2 | grep -c '^commit '&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
# Latest 3.x kernel&lt;br /&gt;
#latest3=$(git tag | grep -v -- -rc | tail -n1 | sed -e 's/^.*\.\(.*\)$/\1/')&lt;br /&gt;
latest3=$(git tag | grep -v -- -rc | grep -F 'v3.' | \&lt;br /&gt;
		awk -F . '{print $2}' | sort -n | tail -n1)&lt;br /&gt;
# Latest 2.6.x kernel&lt;br /&gt;
latest26=39&lt;br /&gt;
&lt;br /&gt;
# Find out if number of patches for HEAD is much more&lt;br /&gt;
# than for latest -rc. If yes, use HEAD, otherwise -rc.:&lt;br /&gt;
last_rc=$(git describe --abbrev=0)&lt;br /&gt;
HEAD=$last_rc&lt;br /&gt;
if ! test -z &amp;quot;$last_rc&amp;quot;; then&lt;br /&gt;
	much_more=10&lt;br /&gt;
	count_head=$(count_patches v3.$latest3 HEAD)&lt;br /&gt;
	count_rc=$(count_patches v3.$latest3 $last_rc)&lt;br /&gt;
	if test $count_head -gt $((count_rc+much_more)); then&lt;br /&gt;
		HEAD=&amp;quot;HEAD   &amp;quot;&lt;br /&gt;
	fi&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
pv=''&lt;br /&gt;
for v in $(git for-each-ref --sort='*authordate' --format='%(tag)' refs/tags |\&lt;br /&gt;
		 grep -v -E -- '-rc|-tree|v2.6.11') HEAD; do&lt;br /&gt;
	if [ -z &amp;quot;$pv&amp;quot; ]; then&lt;br /&gt;
		pv=$v&lt;br /&gt;
		continue&lt;br /&gt;
	fi&lt;br /&gt;
&lt;br /&gt;
	pd=$(get_tag_date $pv)&lt;br /&gt;
	d=$(get_tag_date $v)&lt;br /&gt;
	count_ours=$(count_patches $pv $v)&lt;br /&gt;
	count_total=$(count_total_patches $pv $v)&lt;br /&gt;
	if test &amp;quot;$count_ours&amp;quot; -gt 0; then&lt;br /&gt;
		echo $d $v &amp;quot; &amp;quot; $count_ours $count_total&lt;br /&gt;
	fi&lt;br /&gt;
	pv=$v&lt;br /&gt;
done | sed 's/ /\t/g'&lt;br /&gt;
&amp;lt;/source&amp;gt;&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Draw the graph ===&lt;br /&gt;
&lt;br /&gt;
Here is the script to produce the graph. Note it calls the previous script under the name 'count'.&lt;br /&gt;
&amp;lt;small&amp;gt;&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
&lt;br /&gt;
REPO=~/git/linux/.git&lt;br /&gt;
COUNT=$(pwd)/count&lt;br /&gt;
OUT=$(pwd)/time.dat&lt;br /&gt;
export GDFONTPATH=/usr/share/fonts/microsoft&lt;br /&gt;
export GIT_DIR=$REPO&lt;br /&gt;
&lt;br /&gt;
if test &amp;quot;$1&amp;quot; != &amp;quot;-f&amp;quot;; then&lt;br /&gt;
	echo &amp;quot;== Previous (old) stats ==&amp;quot;&lt;br /&gt;
	tail -n 2 $OUT&lt;br /&gt;
	# Update the repo and count new stats&lt;br /&gt;
	(cd $REPO &amp;amp;&amp;amp; cd .. &amp;amp;&amp;amp; git pull) &amp;amp;&amp;amp; sh $COUNT &amp;gt; $OUT&lt;br /&gt;
	echo &amp;quot;== New stats ==&amp;quot;&lt;br /&gt;
	tail -n 2 $OUT&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
DATE=$(tail -n 1 $OUT | cut -f 1 | awk -F- '{print $2,$1,$3}')&lt;br /&gt;
MAXY=$(awk 'BEGIN {max=0}; ($3 &amp;gt; max) {max=$3}; END {print max+80}' &amp;lt; time.dat)&lt;br /&gt;
# GNU date is powerful!&lt;br /&gt;
MAXX=$(date +%b-1-%Y --date='+2 months')&lt;br /&gt;
&lt;br /&gt;
cat &amp;lt;&amp;lt; EOF | gnuplot &amp;gt; plot.png&lt;br /&gt;
set terminal png enhanced font &amp;quot;verdana,13&amp;quot; size 1600,1200&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
set title &amp;quot;OpenVZ team kernel patches progress as of ${DATE}&amp;quot;&lt;br /&gt;
&lt;br /&gt;
unset xlabel&lt;br /&gt;
set xdata time&lt;br /&gt;
set timefmt &amp;quot;%b-%d-%Y&amp;quot;&lt;br /&gt;
set format x &amp;quot;%b\n%Y&amp;quot;&lt;br /&gt;
set grid xtics mxtics noytics&lt;br /&gt;
&lt;br /&gt;
set xrange [ : &amp;quot;${MAXX}&amp;quot; ]&lt;br /&gt;
set yrange [ 0 : ${MAXY} ]&lt;br /&gt;
set ylabel &amp;quot;Number of patches from OpenVZ team,\n per kernel release, accepted into mainstream&amp;quot;&lt;br /&gt;
&lt;br /&gt;
set border 3		# no lines at right and top&lt;br /&gt;
set xtics nomirror	# no tics at top&lt;br /&gt;
set ytics nomirror	# no tics at right&lt;br /&gt;
&lt;br /&gt;
plot '${OUT}' using 1:3 with linespoints pt 6 ps 1 lw 2 lt 2 notitle, \&lt;br /&gt;
	''	using 1:3:2 with labels left offset 0,5.5 rotate notitle, \&lt;br /&gt;
	''	using 1:3:3 with labels left offset 0.7,0 notitle&lt;br /&gt;
&lt;br /&gt;
EOF&lt;br /&gt;
&amp;lt;/source&amp;gt;&amp;lt;/small&amp;gt;&lt;/div&gt;</summary>
		<author><name>Vvs</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.openvz.org/index.php?title=Hosting_providers&amp;diff=23382</id>
		<title>Hosting providers</title>
		<link rel="alternate" type="text/html" href="https://wiki.openvz.org/index.php?title=Hosting_providers&amp;diff=23382"/>
		<updated>2021-02-25T14:17:48Z</updated>

		<summary type="html">&lt;p&gt;Vvs: /* India */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''OpenVZ is free and open implementation of Virtuozzo containers for Linux.&lt;br /&gt;
Don't forget to keep [[testimonials|testimonial]] and [[donate]] to OpenVZ.'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
OpenVZ makes for a great hosting platform for VPS hosting. The providers below offer VPS services using OpenVZ.&lt;br /&gt;
&lt;br /&gt;
[[File:UsageLocation.svg]]&lt;br /&gt;
&lt;br /&gt;
= OpenVZ hosting providers =&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- @@@@@@@@@@@@@@@@@@@@@@@&lt;br /&gt;
&lt;br /&gt;
IF YOU EDIT THIS PAGE,  PLEASE OBEY TO THE FOLLOWING RULES:&lt;br /&gt;
&lt;br /&gt;
1. Keep your record on ONE line&lt;br /&gt;
2. Keep the list of providers alphabetically sorted, DO NOT insert your record on top.&lt;br /&gt;
3. Keep the list of countries alphabetically sorted as well.&lt;br /&gt;
&lt;br /&gt;
     @@@@@@@@@@@@@@@@@@@@@@@@ --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Andorra ==&lt;br /&gt;
* [https://www.actiu.net/pro/ Actiu informatica] amb servidors dins i fora del principat.&lt;br /&gt;
&lt;br /&gt;
== Argentina ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.fulltech.com.ar/ Full Tech Solutions] Specializes in the virtualization of OpenVZ &amp;amp; Virtuozzo containers, installed in the Full Tech Solutions Data Center located in Villa Elisa, Entre Rios Argentina.  It also offers services hosted in the United States, Netherlands and Germany&lt;br /&gt;
* [http://www.g2khosting.com/ G2K Hosting] offer OpenVZ containers with high level hardware technology from 25 US with Control Panel, various Linux Dists and full support.&lt;br /&gt;
* [https://hostingplus.com.ar/ HostingPlus Argentina] provide OpenVZ containers at our own datacenter in South America with triple internet provider. Starting from  us20/month&lt;br /&gt;
* [https://ibumu.com/ Ibumu] Best containers for wordpress starting from $5.5.&lt;br /&gt;
* [http://www.ihserver.net/ IHServer] Specialized virtualization on OpenVZ containers at Gigared datacenter. We have in Argentina one of the better fiber connection to the US, but also provides services from LSTN in Texas.&lt;br /&gt;
* [https://www.infranetworking.com.ar/ Infranetworking] All our Cloud VPS container solutions for Argentine customers are powered by the all mighty OpenVZ virtualization software.&lt;br /&gt;
* [https://www.neolo.com/ Neolo] provide OpenVZ containers at our own datacenter in South America with double internet provider. Choose your Linux OS and apps. Full support.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [http://www.wiredhosting.com.ar/ WiredHosting] offer XEN and OpenVZ containers with SSD drives, cloudflare security and weekly backups to protect your information. Phone and Helpdesk support. &lt;br /&gt;
&lt;br /&gt;
== Australia == &lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.auhost4u.com/ AUHost4u] - VPS Solutions provided from our D.C. in Sydney.&lt;br /&gt;
* [https://www.conetix.com.au/ Conetix Hosting] Specialising in business grade, fully managed Virtuozzo containers with Virtuzzo Cloud Storage. 100% Australian owned and operated. Brisbane based DC with Enterprise Dell servers.&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides self-managed OpenVZ based SSD VPS located at Equinix SY3 in Sydney, one of the best and well-connected datacenters in the region.&lt;br /&gt;
* [http://www.vpsfast.us/australia-cloud-server VPSFast] - VPS Provider with good prices in Australia.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Austria ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
* [https://kapper.net/ kapper.net] kapper.net offers OpenVZ and Virtuozzo (and other HyperVisors) based server-solutions with kind support and 24x7 maintenance.&lt;br /&gt;
* [https://mdhost.eu/vserver.php MDHost.eu] New Hosting Provider with nice Prices and many Server locations. Austria, Germany, France and more.&lt;br /&gt;
* [https://www.snb.at/ SNB] offers OpenVZ containers and support's also existing vm's in customers environment&lt;br /&gt;
* [https://www.waveride.at/ Waveride] Waveride, an EDIS company, offers budget full gigabit OpenVZ + solusVM VPS in Austria, USA and the Netherlands&lt;br /&gt;
* [http://www.vpsfast.us/austria-cloud-server VPSFast] - VPS Provider with good prices in Austria.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Brazil ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.datacorporate.com.br/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [http://www.globalmedia.com.br/ GlobalMedia] We offers OpenVZ containers hosted on a very fast network with fast setup. Ubuntu, Debian, CentOS.&lt;br /&gt;
* [http://www.host1plus.com.br/ Host1Plus] Servers hosted in São Paulo. We offering reliable and secure OpenVZ VPS Servers with 99.99% up-time, starting from $5.00 per month.&lt;br /&gt;
* [http://www.ipdeck.net/ IPDECK] VPS Linux server from R$15,00/month! Fully customizable according to your needs.&lt;br /&gt;
* [https://www.quantivehost.com.br/ QuantiveHost] VPS Linux with 99.99% uptime. Prices starting from R$ 29,35.&lt;br /&gt;
* [https://www.elevahost.com.br/ Eleva host] Server hosted in Brazil. The best support.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [https://www.ferenz.com.br/ Ferenz Networks] VPS Linux with best support. Prices starting from R$ 29,90.&lt;br /&gt;
&lt;br /&gt;
== Bulgaria ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.cloudhostinghub.com Offshore VPS Hsoting] CloudHostingHub.com is an [https://www.cloudhostinghub.com Cloud Offshore VPS Hosting] located in Buglaria. They provide both OpenVZ and KVM virtualization. CloudHostingHub.com is known for the high privacy protection , performance and stability.&lt;br /&gt;
* [https://www.cyberhour.com CyberHour.com] CyberHour.com is an [https://www.cyberhour.com offshore VPS hosting] provider located in Europe. The provide blazing fast servers and premium Bandwidth of 200Mbps. With high privacy protection.&lt;br /&gt;
* [https://www.linuxssdvps.com Bulgaria VPS] Linux SSD VPS is an [https://www.linuxssdvps.com offshore VPS hosting] provider located in Sofia, Bulgaria. Privacy is very respected and anonymous registrations are allowed, as well as payments via Bitcoin / PayPal.&lt;br /&gt;
* [http://www.webuzo.net Bulgaria VPS] Webuzo Network is an offshore SSD VPS hosting provider located in Bulgaria. Privacy is very respected and anonymous registrations are allowed, as well as payments via Bitcoin / PayPal.&lt;br /&gt;
* [https://vpsbg.eu/en Bulgaria VPS] VPSBG.eu is an offshore SSD VPS hosting provider located in Sofia, Bulgaria. Privacy is very respected and anonymous registrations are allowed, as well as payments via Bitcoin.&lt;br /&gt;
* [http://www.bul.net/ Bul.net] Provides OpenVZ based VPS, perfect user/VPS management via [http://ispsystem.com VDSManager]. Instant creation after online payment. Debian/Ubuntu/CentOS with ISPManager Control panel. Optimal price policy.&lt;br /&gt;
* [http://www.cointech.eu/vps-hosting/ CoInTech] provides OpenVZ based VPS containers, free webmin managment. Containers can be CentOS, Slackware, Ubuntu, custom or our special [http://www.mandriva.com Mandriva Linux] container with own [http://mandriva.cointech.net repository].&lt;br /&gt;
* [http://www.rax.bg/ RAX.bg] Offers OpenVZ based VPS, hosted on a clustered infrastructure and redundant network. Easy to use user management, Instant setup, CentOS (OS).&lt;br /&gt;
* [http://www.jump.bg/ Jump.bg] Provides OpenVZ VPS servers hosted on a redundant network which provides a very easy to manage platform for all clients which gain instant access to their OS ( Ubuntu, CentOS , Debian etc ... )&lt;br /&gt;
* [https://www.fitvps.com/ FitVPS.com] Offers affordable and reliable OpenVZ based VPS in Varna, Bulgaria. Own data center, own multihomed network, with SLA. Instant automatic setup, SolusVM control panel.&lt;br /&gt;
* [http://www.qhoster.com/ QHoster.com] Instant activation OpenVZ VPS in UK, USA, Germany, France and Switzerland. Both 32/64 bit OpenVZ OS VPS templates : CentOS 5/6, Debian 6/7, Ubuntu 12/13.&lt;br /&gt;
* [https://www.verdina.net Verdina.NET] Verdina.net offers dedicated hosting services, provided by powerful dell hardware. Servers are located in Telepoint Datacenter, a Tier 3 DC located in Sofia, Bulgaria.&lt;br /&gt;
* [https://www.vps.ag/ VPS.AG] Affordable and reliable OpenVZ VPS based in Sofia, Bulgaria. Instant setup and 24/7 support.&lt;br /&gt;
* [http://www.vpsfast.us/bulgaria-vps VPSFast] - VPS Provider with good prices in Bulgaria.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Canada ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://4goodhosting.com/linux-vps-hosting 4GooodHosting] - Canadian OpenVZ VPS Servers, Starting from  $18.99/month SSD,. Canada VPS hosting in three different Canadian Data Centers with nightly backups.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [https://whc.ca/canadian-cloud-servers Web Hosting Canada Cloud Servers] - Powerful Cloud servers powered by OpenVZ and located in Canadian datacenters, with fast RAID-10 storage, fully managed with cPanel.&lt;br /&gt;
* [http://compevo.com compevo Clustered VPS Server Hosting Provider] - We offer clustered VPS Servers to avoid downtime and dataloss. Our network and service is second to none and is used by businesses around the world.&lt;br /&gt;
* [http://www.datacorporate.ca/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [https://www.delimiter.com/storage-vps/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [https://www.miditech.com/ MidiTech Hosting Canada] VPS hosting offered by MidiTech Canada are powered by VMware, . Fully Managed VPS with control panels&lt;br /&gt;
* [http://www.gotekky.com Gotekky Cloud VPS Hosting] High quality Cloud VPS packages powered by our own infrastructure and network in Toronto. Scalable from our $5/mo plan all the way to your own dedicated cloud server. Based on OpenVZ and our own proprietary panel.&lt;br /&gt;
* [https://gigebox.com GIGEBOX.COM] GIGEBOX are expert providers of secure business hosting services, we operate high-performance professional servers, specially designed for businesses, powered by the Intel(R) Xeon(R) Hexa-Core CPU Processors and 128 GB DDR3 minimum RAM. Enjoy high availability, performance and security for multiple uses.&lt;br /&gt;
* [http://www.letstalkdigital.com/index.php?option=com_content&amp;amp;view=article&amp;amp;id=73&amp;amp;Itemid=65 LetsTalkDigital VPS Hosting] LetsTalkDigital.com offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from $14.99. Virtual Private Server (VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://secure.media-hosts.com/link.php?id=7 Media-Hosts.com] Provides Quality and Scalable OpenVZ based Virtual Private Servers. 100% network uptime guaranteed. Located in Montreal Quebec with 5 Tier1 upstream providers.&lt;br /&gt;
* [http://www.openvz.ca OpenVZ.ca] Canadian Budget VPS Servers on OpenVZ Platform. &lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [http://protoserver.com ProtoServer] Advanced VPS Hosting from $4.95/month. Many pre-installed VPS Templates available (CMS, E-commerce, Web development, Online community, Media streaming, etc.) No bundles or service plans - mix VPS resources as needed and change VPS configuration anytime. Also offering DNS Hosting, E-mail hosting, Domains Registration.&lt;br /&gt;
* [http://www.vistapages.com/vps Vistapages VPS] - IBM &amp;amp; Dell Hardware. MCI/Verizon Backbone. Distros: Centos, Fedora, Debian &amp;amp; more. Full management available. Located in Toronto.&lt;br /&gt;
* [http://vpsville.ca/ VPSVille] - Good network. Good CPU. Good choice of distros: Centos, Fedora, Debian, Ubuntu, Slackware, Gentoo, OpenSUSE, CERN. My favorite OpenVZ provider. [mailto:jak@isp2dial.com John Kelly]&lt;br /&gt;
* [http://solib.ca/services-offerts/hebergement-haute-vitesse/serveurs-vps/ SOLIB Logiciel Libre Québec] Our company offers DDoS protected server solutions including OpenVZ containers. Very high availability and reliability, all our VPS are located in Quebec, Canada.&lt;br /&gt;
* [https://www.host-stage.net/linux-vps/ HostStage - Linux VPS] - Simple, Reliable OpenVZ VPS packed with 1 GBPS port speed, RAID 10 SSD, Intel Xeon CPU, DDoS Protection from $4.95/month&lt;br /&gt;
* [https://undergroundprivate.com/russiaoffshorevps.html  UndergroundPrivate.com] - OpenVZ with highly privacy, offshore , DMCA ignored , high confidence, SolusVM and cPanel, managed and non managed service.&lt;br /&gt;
* [http://www.vpsfast.us/canada-vps VPSFast] - VPS Provider with good prices in Canada.&lt;br /&gt;
* [https://websavers.ca/canadian-vps-hosting Websavers Inc in Halifax] - VZ containers priced by the resource. Resource changes entirely client-level.&lt;br /&gt;
* [https://www.yoorshop.fr/hosting-ssd-vps-usa-canada.php YOORshop SAS] - High performance NVMe SSD Linux VPS in Canada, daily backup included. Starting from €7,49 /month&lt;br /&gt;
&lt;br /&gt;
== Colombia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.datacorporate.co/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [http://www.soficol.com/ Soficol] Offers Enterprise OpenVZ based VPS, hosted on a clustered infrastructure and redundant network. Easy to use user management and instant setup.&lt;br /&gt;
* [https://www.hostingplus.com.co/ Hosting Plus Colombia] provide OpenVZ containers at our own datacenter in South America with triple internet provider. Starting from  us20/month&lt;br /&gt;
* [https://ibumu.com/ Ibumu] Best containers for wordpress starting from $5.5.&lt;br /&gt;
&lt;br /&gt;
== Czech Republic ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://4smart.cz 4Smart.cz] - prepaid, you are charged only by the system resources you use, therefore you can run a VPS for as little as  1 EUR a month if your vps is not resource hungry. Even if you pay  0,50 EUR  month, you still have 3 GB of RAM and 8 cores available to you VPS.&lt;br /&gt;
* [http://www.freecloud.cz FREECLOUD.CZ] - Free OpenVZ VPS Server - own IP, 800Mhz CPU, 512MB RAM, 50Mbits LAN, 10GB HDD, 100GB Traffic - Debian, Ubuntu, Gentoo, Slackware, Fedora, Centos&lt;br /&gt;
* [http://www.hukot.cz Hukot.cz] - OpenVZ VPS Servers starting from 2.92 €, XEON, 1 Gbps uplink, unlimited traffic. Debian, Ubuntu, CentOS, Scientific, SuSe, Fedora, Elastix.&lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [http://www.ultimatehosting.eu UltimateHosting.eu] - OpenVZ VPS Servers starting from $8 with custom configuration - up to 100 GB HDD, 2048 MB RAM, 2 GHz CPU, and unlimited traffic.&lt;br /&gt;
* [http://www.mujhost.net MUJHOST.NET] - OpenVZ VPS Servers starting from 160 Kč, 100Mbps / 1 Gbps uplink, unlimited traffic. Debian, Ubuntu, CentOS ...&lt;br /&gt;
&lt;br /&gt;
== Chile ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.1h.cl/ 1h.cl Vps - Chile] - VPS High Performance with OpenVZ in Chile&lt;br /&gt;
* [http://www.1hosting.cl/ 1hosting Virtual servers - Chile] - VPS Professional with OpenVZ&lt;br /&gt;
* [http://www.dch.cl/ DCH] - DCH.cl Hosting Chile - High Performance VPS Servers with OpenVZ &lt;br /&gt;
* [https://www.dominioweb.net/ Dominioweb] - Premium Hosting and domain registration&lt;br /&gt;
* [http://ecohosting.cl/ EcoHosting.cl Santiago - Chile] - VPS with OpenVZ in Chile&lt;br /&gt;
* [http://www.host.cl/ Host.cl] - Cloud Computing&lt;br /&gt;
* [https://www.hostingplus.cl/ HostingPlus Internet Limitada] - High Performance Vps provider in Chile&lt;br /&gt;
* [https://www.hostingnet.cl/ Telecomunicaciones Hostingnet SPA] - VPS Reliable Provider in Chile&lt;br /&gt;
* [https://www.hostname.cl/ Hostname Ltda] - VPS Hosting with Datacenter in Chile&lt;br /&gt;
* [https://www.inc.cl/ INC Internet Limitada] - VPS Hosting provider in Chile&lt;br /&gt;
&lt;br /&gt;
== Denmark ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.vpsfast.us/denmark-cloud-server VPSFast] - VPS Provider with good prices in Denmark.&lt;br /&gt;
&lt;br /&gt;
== Ecuador ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.dedi.space/ DediSpace Telecom] - VPS Servers in Ecuador - USA, France, Germany, Ecuador Datacenter.&lt;br /&gt;
&lt;br /&gt;
== Estonia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://cspacehostings.com CSpace Hostings] Tallinn, Estonia Hosted SSD and Storage VPS based on OpenVZ (OVZ) 7.&lt;br /&gt;
&lt;br /&gt;
== France ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.BargainVPS.co.uk/ BargainVPS] - UK / US / EU Instant setup VPS - We have some great Linux &amp;amp; Windows Bargain VPS packages on offer for you here all available Fully Managed.&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in France from 1.88EUR/month.&lt;br /&gt;
* [http://www.fixweb.com Fixweb] Great managed hosting provider with strong anti ddos solution - openvz only - leader in managed openvz solution with horizontal scaling and high availability&lt;br /&gt;
* [http://www.Freaksol.com/ FreaKs VPS Hosting] Self reliant hosted on independent networks &amp;amp; DC low ping,No restrictions on file types,Unlimited resources,high ram servers &lt;br /&gt;
* [http://www.harmony-hosting.com Harmony-Hosting] A high performance VPS hosting - The leader in France&lt;br /&gt;
* [https://www.delimiter.com/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [http://www.lws.fr/serveur_dedie_linux.php LWS - Linux VPS ] - Linux VPS Hosting - Only 9.99€/month, Affordable and Secure OpenVZ VPS Servers with 99.99% up-time, web hosting control panel Included. French datacenter&lt;br /&gt;
* [http://www.ovh.co.uk/vps/ OVH VPS] linux from 3€/month, [http://www.ovh.co.uk/vps/vps-cloud.xml windows] from 12€/month.&lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [https://VPSZ.FR VPSZ] VPS Hosting in France. Starting from 2,99€, Unlimited traffic.&lt;br /&gt;
* [http://www.1euro-hosting.eu BEST EU VPS - 1€ Hosting] - Providing reliable and secure OpenVZ VPS Servers with 99.99% up-time, starting from 8€&lt;br /&gt;
* [https://www.shape.host/linux-vps/ Shape Host - Linux VPS] - OpenVZ virtual servers, Instant Linux VPS&lt;br /&gt;
* [https://undergroundprivate.com/russiaoffshorevps.html  UndergroundPrivate.com] - OpenVZ with highly privacy, offshore , DMCA ignored , high confidence, SolusVM and cPanel, managed and non managed service.&lt;br /&gt;
* [https://www.host-stage.net/linux-vps/ HostStage - Linux VPS] - Simple, Reliable OpenVZ VPS packed with 1 GBPS port speed, RAID 10 SSD, Intel Xeon CPU from $4.95/month&lt;br /&gt;
* [https://www.yoorshop.hosting/hosting-vps-ssd-europe YOORshop SAS] - High performance NVMe SSD OpenVZ 7 VPS within 13 countries in Europe, Canada and Singapore. Daily backup included. From €5,95/month&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Germany ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://afterburst.com Afterburst (Previously FanaticalVPS)]: affordable unmetered, unmanaged VPS servers in Germany.&lt;br /&gt;
* [http://www.b2b-hosting.de/vps/ B2B Hosting]: Professional virtual servers for business applications. Performance and reliability at a fair price. Made with OpenVZ.&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in Germany from 1.88EUR/month.&lt;br /&gt;
* [https://www.delimiter.com/dedicated-servers/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [http://hostmist.com/openvz-vps-germany.html Host Mist]: features budget OpenVZ VPS hosting in Germany.&lt;br /&gt;
* [http://www.host1plus.com/ Host1Plus] Servers based in Frankfurt am Main. Offering reliable OpenVZ based VPS servers in Germany starting from $2.50 per month.&lt;br /&gt;
* [http://www.hostingjuice.com/ HostingJuice] The Superioum VPS and Web Hosting provider, low prices - Premium packages.&lt;br /&gt;
* [http://www.ingate.de/managed-server.html Ingate] offers managed servers with openVZ virtualization. located in germany, great support.&lt;br /&gt;
* [http://linevast.de/angebote/linux-openvz-vserver-mieten.html Linevast] Reliable OpenVZ based VPS with fast support, located in germany&lt;br /&gt;
* [https://cp.myvirtualserver.com/?affid=42 MyVirtualServer]: Cheap VPS (OpenVZ/KVM, 5TB Traffic, 10Gigabit), servers located in Frankfurt (best ping, starting 1.99€) good support (en/de) //New Design!&lt;br /&gt;
* [https://www.nogics.com Nogics Technologies]: Affordable VPS based in Germany. Starts from $5.96/mo.&lt;br /&gt;
* [http://www.plambee.de/vserver.php Plambee.de Webhosting]: Powerfull OpenVZ based VPS servers at low cost with hosting in Germany&lt;br /&gt;
* [https://rackset.com/ Rackset Hosting] Managed Dedicated / VPS and Website Hosting services since 2004.&lt;br /&gt;
* [http://www.serverbiz.de/vserver Serverbiz] Powerful VPS at very low prices.&lt;br /&gt;
* [http://www.synapseglobal.com/voip_vps.html SynapseGlobal.com] Elastix, Trixbox, PBX in a Flash and Asterisk VPS - OpenVZ based Asterisk VOIP servers located in Munich Germany.&lt;br /&gt;
* [http://www.vStarVPS.com vStarVPS]: Reliable VPS Hosting at lowest prices, with 99.9% uptime, Premium Unmetered Bandwidth and Custom HDD/RAM of your choice. Instant and FREE Setup. RapidLeech Allowed.&lt;br /&gt;
* [http://whynotavps.com WhyNOTaVPS]: Instant activated VPS SERVERS!!&lt;br /&gt;
* [http://squote.de/index.php?ref=1421485383 SQuote]: SQuote VPS Hosting and more. VPS 1 Core, 1.024MB RAM, 512MB RAM SWAP, 50 GB HDD, 1x IPv4. 3,89EUR/month. For the best VPS SQuote.de&lt;br /&gt;
* [http://www.vpsfast.us/germany-vps VPSFast] - VPS Provider with good prices in Germany.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Guatemala ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.globalnetcafe.com/gnc/menu/hospedaje.htm Global Net Cafe]: Servicios de hospedaje, reseller, vps, colocacion y servidores. Incluyendo OpenVZ.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Hong Kong ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [https://hostus.us HostUS] features unmanaged and managed OpenVZ VPS in Hong Kong as well as 3 USA locations. Unparalleled connectivity to the Asia Pacific. Enjoy 15% off with coupon VPS15OFF.&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides self-managed OpenVZ based SSD VPS in Hong Kong, located at the Pacnet datacenter. &lt;br /&gt;
* [http://vps.timway.com/linux_vps.html Timway VPS Hosting] - Quality, non-oversold hosting provider focused on being security conscious and offering a positive client experience.   Centos, Debian, Fedora, OpenSuse and Ubuntu Containers are available.&lt;br /&gt;
* [http://www.vpsfast.us/hong-kong-cloud-server VPSFast] - VPS Provider with good prices in Hong Kong.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Hungary ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://elin.hu/index.php?menu=8&amp;amp;nyelv=hu&amp;amp;cim=Virtualis-szerver Virtual server] OpenVZ server: 2xX5650 Intel Xeon, 32GB RAM, 15.000rpm SAS disks, 100Mbit/s, unlimited bandwith.&lt;br /&gt;
* [https://www.ivirtual.co/vps-hosting/ iVirtual.co ] OpenVZ Master Server: 2x Intel Xeon @ 3.0GHZ, 64 GB ECC Ram, 15k RPM SAS HDD's, 1Gbit/s Network, Unlimited bandwith.&lt;br /&gt;
&lt;br /&gt;
== Iceland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
&lt;br /&gt;
== Ireland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== India ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://cspacewebsolutions.com/ CSpace Web Solutions Pvt.Ltd] Mumbai Datacenter connected to DE-CIX India Hosted VPS based on OpenVZ (OVZ) 7 and OpenVZ (OVZ) 6.&lt;br /&gt;
* [https://cochinwebhost.in/budget-vps-hosting/ Low Cost VPS Hosting] Fast SSD VPS Server for Hosting Solutions at budget prices with 24x7 Technical Support.&lt;br /&gt;
* [https://www.cyberhost.in/ Cyberhost] - Affordable OpenVZ containers on high performance quality Servers. Wide choice of virtual dedicated servers with Full management available.&lt;br /&gt;
* [http://www.datacorporate.in/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
*[http://www.fastwebhost.in/vps-hosting.html fastwebhost VPS Hosting] VPS hosting offered by fastwebhost are powered by ''VPS hosting, virtual server hosting and Linux VPS hosting services''. Fully Managed VPS with control panels.&lt;br /&gt;
* [http://www.Freaksol.com/ Freaksol VPS Hosting] Self reliant hosted on independent networks &amp;amp; DC low ping to India,No restrictions on file types,Unlimited resources,high ram servers&lt;br /&gt;
* [https://www.geniushost.in Genius Host] Fully managed [https://www.geniushost.in SSD Web Hosting] offered by Genius Host are powered by ''OpenVZ'' With LiteSpeed Web Server &amp;amp; Mariadb.&lt;br /&gt;
* [http://www.hioxindia.com/virtual-private-server.php VPS Hosting] Reliable and quality VPS Virtual Private Server Hosting&lt;br /&gt;
* [https://hostingspell.com/ HostingSpell] - Hostingspell is a leading web hosting company in India and now serving over 40+ countries our the globe. We guarantee 99.9% uptime and 7 days full money-back guarantee so you can't go wrong :)&lt;br /&gt;
* [https://hostitbro.in/ HostItBro] - HostItBro does not compromise on speed. With us, you get the fastest loading websites.&lt;br /&gt;
* [http://www.hostitsmart.com/ Host IT Smart] - One of the best VPS Hosting Provider in India with 24X7X365 Customer support.&lt;br /&gt;
* [https://www.hostnamaste.com HostNamaste] is your high-performance [https://www.hostnamaste.com/openvz-vps.php OpenVZ VPS Hosting] Provider. Get your perfect [https://www.hostnamaste.com/openvz-vps.php VPS Hosting] account today! Available in [https://www.hostnamaste.com/datacenter-losangeles.php Los Angeles], [https://www.hostnamaste.com/datacenter-dallas.php Dallas], [https://www.hostnamaste.com/datacenter-jacksonville.php Jacksonville], USA,  [https://www.hostnamaste.com/datacenter-france.php France], Europe, [https://www.hostnamaste.com/datacenter-mumbai-pune.php Mumbai], India and [https://www.hostnamaste.com/openvz-vps-moscow-russia.php Moscow], Russia.&lt;br /&gt;
* [https://www.hostsoch.in/windows-hosting.html HostSoch Windows Hosting] Windows hosting offered by HostSoch are powered by ''Windows 2012, ASP.NET, MVC, IIS, PHP and More''. 99.9% Uptime, 24/7 Dedicated support guaranteed. &lt;br /&gt;
* [https://www.miditech.co.in/ MidiTech VPS Hosting] VPS hosting offered by MidiTech are powered by ''VMware, ''. Fully Managed VPS with control panels. &lt;br /&gt;
* [http://www.milesweb.com/vps-hosting.php Milesweb VPS Hosting] VPS hosting offered by Milesweb are powered by ''VMware, OpenVZ''. Fully Managed VPS with control panels. &lt;br /&gt;
* [https://www.nogics.com/web/vps-hosting/ Nogics Technologies] Instant provisioning of VPS, VPS starts from $5.96/mo. 30+ OS templates.&lt;br /&gt;
* [http://overlineindia.net/vpshosting-p-62.html Overline India VPS Hosting] Fully managed cPanel Installed VPS Hosting with 24x7x365 Live Chat Tech support, powered by OpenVZ&lt;br /&gt;
* [http://www.prohosterz.com/linux-vps.php ProHosterZ VPS Hosting] Reliable and quality Virtual Dedicated Servers | Virtual Private Servers | XEN VPS | OpenVZ VPS | Virtual Hosting&lt;br /&gt;
* [http://pve.proxmox.com/wiki/User:Apmuthu Ap.Muthu] sponsored by [http://www.gnuacademy.org GNUAcademy], [http://www.planettel.com.sg PlaNetTel] and [http://www.sacollege.net S A College] creates OpenVZ Templates for the Open Source Community and provides hosting in datacenters of clients choice or on site.&lt;br /&gt;
* [http://www.servers.co.in/vps/vps_hosting.php Server Web Hosting] Offers Fully Managed OpenVZ VPS Web hosting in India/US/UK at affordable and cheap rates with best hardware quality and customer service 24/7/365 days&lt;br /&gt;
* [http://touchstone.hosting/ Touchstone Solutions Private Limited] High-performance Enterprise VPS Hosting in India. One of the highest performing VPS Servers available with cPanel Installed.&lt;br /&gt;
* [http://vpsbeach.com VpsBeach Managed Hosting] Fully managed cPanel Installed VPS Hosting with 24x7x365 Live Chat Tech support, powered by OpenVZ&lt;br /&gt;
* [http://www.vpsfast.us/india-vps VPSFast] - VPS Provider with good prices in India.&lt;br /&gt;
* [http://www.vpshostingindia.net/ VPS Hosting India, Fully Managed Server] A Committed Fully Managed VPS Server for Hosting solution in India, Complete Technical Support assistance with commitment of fast, clustered and most supportive DataCenters.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Indonesia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.herza.id/vps-murah/ Herza.ID] Low Cost OpenVZ Virtual Server, starting from IDR 50.000 / Month with RAID 10 SSD, Unlimited Bandwidth with 1 Gbps IIX &amp;amp; OIXP Connection, and 24/7 Technical Support.&lt;br /&gt;
* [https://www.kucingweb.co.id/hosting/vps/ Kucingweb Indonesia] High Performance VPS service with the best choice.&lt;br /&gt;
&lt;br /&gt;
== Iran==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.ehost.ir EHost.ir] - OpenVZ Servers , DUAL XEON Cpus , 12 Gb Ram , 100Mbit Dedicated Connection , SAS HardDisk&lt;br /&gt;
* [https://www.irpower.com IRPOWER Webhostings &amp;amp; Domain] - OpenVZ Servers Since 2005!&lt;br /&gt;
* [http://www.vpsfa.com VPSFa.com] - OpenVZ Servers , DUAL XEON Cpus -  , 24Gb Ram , 1000Mbit Dedicated Connection , SAS HardDisk&lt;br /&gt;
* [https://webramz.com Webramz Host] - With more than 15 years experience in Managed Hosting, Webramz was first vps provider in Iran which used to setup OpenVZ servers. Nowadays we provide wide range of services including CloudLinux based OpenVZ and Managed Vps Servers.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Italy ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
* [http://www.hosting-italia.net hosting italia] - OpenVZ Servers and panel enduser Virtualizor Intel® Core™ i7-920 Quad-Core 48 GB DDR3 RAM - Guaranteed Bandwidth 200 Mbit/s&lt;br /&gt;
* [http://www.vpsfast.us/italy-vps VPSFast] - VPS Provider with good prices in Italy.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Liechtenstein ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
&lt;br /&gt;
== Lithuania ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.cloudlix.com/ CloudLix.com] - Managed and unmanaged OpenVZ virtual servers based on 2.6.32 kernel. Up to 20GHz (Intel SandyBridge) CPU and 10GB RAM. Located in Vilnius and Siauliai.&lt;br /&gt;
* [http://www.databank.lt/ databank.lt] - high-quality professional OpenVZ hosting with cloud computing solutions.&lt;br /&gt;
* [https://www.hostens.com/vps-hosting/ Hostens] - Unmanaged VPS hosting for the great price: clear deals, no hidden conditions, quality service from the heart of Europe. &lt;br /&gt;
* [https://www.lavavps.lt/ lavavps.lt] - Professional high-quality OpenVZ containers (VPS servers) affordable for everyone. Powerful control panel for VPS management.&lt;br /&gt;
* [https://monovm.com/ monovm.com] - High Quality VPS Hosting Provider&lt;br /&gt;
* [http://www.serveriai.lt/ Serveriai.lt] - Affordable OpenVZ containers on quality HP hardware. Wide choice of virtual dedicated servers up to 8 CPU cores and 8 GB RAM. Full management available. Located in Vilnius.&lt;br /&gt;
* [https://www.time4vps.com/?affid=1359 Time4VPS] - Powerful cloud technology based infrastructure will let you build custom virtual machine and pay only for what you really need. Located in Vilnius city.(0.99€/month(2Yr) 512mbRAM, 1TB Traffic// 4.5€/month(2Yr) StorageVps, 1TB, 10TB Traffic)&lt;br /&gt;
* [https://www.vpsnet.lt/en/ VPSnet.lt] - Powerful and high quality servers for a competitive price in Lithuania (Eastern Europe).&lt;br /&gt;
* [http://www.vpsfast.us/lithuania-vps VPSFast] - VPS Provider with good prices in Lithuania.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Latvia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.altnet.lv/ Altnet] - Hosting and colocation services. Any flawor, you name it. &lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
&lt;br /&gt;
* [http://www.vpsfast.us/latvia-vps VPSFast] - VPS Provider with good prices in Latvia.&lt;br /&gt;
&lt;br /&gt;
== Luxembourg ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.vpsfast.us/luxembourg-vps VPSFast] - VPS Provider with good prices in Luxembourg.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Malaysia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.cubiex.com/ Cubiex] - Malaysia Affordable Web Hosting and Domain Name. Affordable Linux VPS Hosting in Malaysia. OpenVZ based, Quad Core Xeon node. cPanel/WHM and DirectAdmin also available.&lt;br /&gt;
* [https://controlvm.com ControlVM] ControlVM Sdn. Bhd. offering OpenVZ VPS in Singapore, Malaysia, USA and Germany.&lt;br /&gt;
* [https://www.yoorshop.fr/hosting-ssd-vps-singapore-asia.php YOORshop SAS] - High performance SSD Linux VPS In Singapore with daily backup included. Starting from €7,49 /month&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Malta ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.a6it.com/ A6iT] - Stable, quality managed OpenVZ VPSs based in Malta.  Redundant network.&lt;br /&gt;
&lt;br /&gt;
== Morocco ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.belsemtech.com/ BelsemTech.CoM] BelsemTech SARL offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from 300 DH. Virtual Private Server (VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://www.hostoweb.com/ HosToWeb] is the only company providing VPS hosting in Morocco Data Center.&lt;br /&gt;
* [http://www.adk-media.com/ ADK Media] provides affordable managed and unmanaged virtual servers based on OpenVZ, Xen Paravirtualization and Xen HVM platforms. 24/7 Technical Support. Distros: Centos, Fedora, Debian, Ubuntu and more.&lt;br /&gt;
* [http://www.naja7host.com/ Naja7Host.CoM] The Naja7host SARL provides affordable VPS hosting using the OpenVZ platform. Running on Full Quality Nodes of up to 8 CPU and 16 GB RAM. . All VPS's come with Real 24/7/365  Technical Support and cPanel free (if option selected  ). Multiple choice of OS 32/64Bits (Centos, fedora, ubuntu, debian .ect ...)&lt;br /&gt;
* [http://www.lehoster.com/ Le Hoster] offers affordable Virtual Private Servers using the OpenVZ and KVM platform. Backed with our amazing customer support.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Netherlands ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.avanpad.com/ Avanpad] offers OpenVZ VPS hosting with 24\7 online support. Customer can request different control panels or templates for installation on his VPS.&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in Netherlands from 1.88EUR/month.&lt;br /&gt;
* [https://cspacehostings.com CSpace Hostings] Amsterdam, Netherlands Hosted SSD and Storage VPS based on OpenVZ (OVZ) 7.&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
* [http://www.Freaksol.com/ FreaKs VPS Hosting] Self reliant hosted on independent networks &amp;amp; DC low ping around the world,No restrictions on file types,Unlimited resources,high ram servers&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [http://www.HostSailor.com/ HostSailor] Number 1 Netherlands Provider HostSailor provides affordable &amp;amp; high quality services such as VPS (XEN, OpenVZ and KVM) Linux or Windows, Dedicated servers, SSL certificates and domain name services.&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides self-managed OpenVZ SSD VPS in Telecity AMS 5, one of the best datacenters located in the Amsterdam area.&lt;br /&gt;
* [https://iniz.com/ INIZ VPS Hosting] INIZ provides affordable VPS Hosting in Amsterdam, Netherlands with high resources at low prices.&lt;br /&gt;
* [https://www.liteserver.nl/ LiteServer] Looking for a quality and affordable VPS in the center of The Netherlands? We provide SSD, Storage and High Bandwidth VPSes, starting at only €16 per year. We operate AS60404.&lt;br /&gt;
* [https://www.mangelot-hosting.nl/ Mangelot Hosting] Mangelot Hosting, A webhosting company located in the Netherlands, offers budget OpenVZ hosting solutions for maximum scalability en performance.&lt;br /&gt;
* [http://www.osbox.nl OsBoX Dutch Network Engineering] Cheap VPS host as low as $1 per month. Very great uptime and a overall good support. Check the website for the server plans.&lt;br /&gt;
* [https://www.scopehosts.com/openvz-vps/netherlands-vps ScopeHosts.Com] - ScopeHosts Provides OpenVZ VPS in Netherlands, Amsterdam Powered with Pure SSD, 1Gbps Uplink, DDOS Protection, Self-Managed and Managed VPS Solutions&lt;br /&gt;
* [http://www.signet.nl/ Signet VPS Hosting] - Signet delivers VPS hosting plans based on CentOS or Debian templates, including control-panel Virtualmin.&lt;br /&gt;
* [http://simple-webhosting.eu/ Simple-webhosting.eu] - OpenVZ based web hosting starting from €0.98 per month.&lt;br /&gt;
* [https://www.seedvps.com SeedVPS] Provides Powerful &amp;amp; Reliable OVZ/KVM VPS Hosting in The Netherlands&lt;br /&gt;
* [http://www.touchvps.com/ TouchVPS] is a company who offer Support and Managed Services for OpenVZ Servers ,also offer templates for openvz ready to go with cPanel , DirectAdmin , Plesk , Games, IRC Services, Desktop and many more.&lt;br /&gt;
* [https://www.totallyhosted.nl/ TotallyHosted] OpenVZ based Premium VPS services located in the Netherlands @ Serverius DC.&lt;br /&gt;
* [https://undergroundprivate.com/russiaoffshorevps.html  UndergroundPrivate.com] - OpenVZ with highly privacy, offshore , DMCA ignored , high confidence, SolusVM and cPanel, managed and non managed service.&lt;br /&gt;
* [http://www.voipcomplete.com/product-overview/dedicated-vps.html VOIPcomplete] offers dedicated VPS plans based on CentOS including a VPS management interface.&lt;br /&gt;
* [http://www.vpsfast.us/netherlands-vps VPSFast] - VPS Provider with good prices in Netherlands.&lt;br /&gt;
* [https://www.vps9.net/netherlands-vps VPS9.NET] - VPS9 OpenVZ Nodes are located in Naaldwijk, Netherlands. We provide OpenVZ VPS Services at very a affordable cost, powered with 20x Faster SSD on RAID-10 Partition.&lt;br /&gt;
* [https://www.waveride.at/ Waveride] Waveride, an EDIS company, offers budget full gigabit OpenVZ + solusVM VPS in Austria, USA and the Netherlands&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Norway ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.vpsfast.us/norway-vps VPSFast] - VPS Provider with good prices in Norway.&lt;br /&gt;
&lt;br /&gt;
== Pakistan ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://vimzaa.com/ Vimzaa] The best hosting in Pakistan.&lt;br /&gt;
&lt;br /&gt;
== Philippines ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.web.com.ph/vps.php Web.com.ph] - provides OpenVZ virtual servers in the Philippines.&lt;br /&gt;
&lt;br /&gt;
== Perú ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.hn.pe/ Hostname] Hostname offers business OpenVZ containers in Perú&lt;br /&gt;
* [http://www.hostingandino.pe/ Hostingandino Lima - Peru] - VPS with OpenVZ in Peru&lt;br /&gt;
* [http://www.hostingplus.pe/ HostingPlus Internet Limitada] - High Performance Vps provider in Peru&lt;br /&gt;
* [https://www.hostingroup.com/ Hostingroup] Web hosting for small businness in Perú.&lt;br /&gt;
* [https://hostingweb.pe/ Hosting Web] The best hosting in PERU.&lt;br /&gt;
* [https://www.inchosting.pe/ HostingINC SAC] OpenVZ virtualization solutions for business in Perú.&lt;br /&gt;
* [https://www.mejorhosting.pe/ Mejor Hosting Perú] Hosting comparison for peruvian hosting providers.&lt;br /&gt;
* [https://webuniversal.pe/ Web Universal] The best hosting in PERU in the World.&lt;br /&gt;
* [https://alojamientoplus.com/ AlojamientoPlus] Best Hosting and server in Perú.&lt;br /&gt;
&lt;br /&gt;
== Poland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://hosteam.pl/ HosTeam] offers OpenVZ VPS hosting from their DataCenter in Poland. Customer has choice of all major Linux distros (WARNING!!! restoring your backup is VERY expensive and they charge even if it wasn't restored correctly!), NATIVE IPV6 AVAILABLE!&lt;br /&gt;
&lt;br /&gt;
* [http://ultimahost.pl/ UltimaHost] high grade OpenVZ VPS and FreeBSD jail (DC in Łódź, Poland), brand of statnet.pl, SSD available for more expensive packets, NO IPV6 AVAILABLE (but they can load you tun module)&lt;br /&gt;
&lt;br /&gt;
* [http://budgetvps.pl/ BudgetVPS] very cheap, low end grade OpenVZ VPSes (DC in Gdańsk, Poland), brand of HitMe.pl&lt;br /&gt;
&lt;br /&gt;
* [https://hitme.pl/ HitMe.pl] high grade OpenVZ/Xen PV/Xen HVM VPSes, Virtuozzo (DC in Gdańsk, Poland), NATIVE IPV6 AVAILABLE (/64 on demand for free)!&lt;br /&gt;
&lt;br /&gt;
* [http://www.kr-cpd.pl/oferta/serwery-vps/ KR-CPD] Cracow's Center of Data Processing (DC of course in Cracow, Poland)&lt;br /&gt;
&lt;br /&gt;
* [http://livenet.pl Livenet] cheap, middle/low end OpenVZ VPSes (DC in Łódź, Poland)&lt;br /&gt;
&lt;br /&gt;
* [http://slaskdatacenter.pl/ Śląsk Data Center] high/middle grade OpenVZ VPSes (DC in Silesia province, Poland), SSD available for more expensive packets&lt;br /&gt;
&lt;br /&gt;
* [https://www.ionic.pl/ IONIC.pl] VPS OpenVZ with SolusVM control panel, own DC in Cracow&lt;br /&gt;
&lt;br /&gt;
* [https://microvps.pl/ MicroVPS.pl] Middle And low end OpenVZv7 VPS plans. SSD for regular VPS and HHD for storage plans (up to 1TB)&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Portugal ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.ptservidor.pt/ PTServidor] - OpenVZ virtual servers with free management based in Portugal.&lt;br /&gt;
* [http://www.efeito.net/ Weblevel.pt] - OpenVZ virtual servers based in Portugal.&lt;br /&gt;
* [https://www.webtuga.pt/ WebTuga] - Managed/Unmanaged Virtual Private Servers hosted in a Portuguese Datacenter with lots of extras&lt;br /&gt;
* [https://www.cloudfire.pt/ CloudFire] - OpenVZ VPS at very low prices hosted in Portugal&lt;br /&gt;
* [https://www.linxisp.com/ LINXISP] - High Availability &amp;amp; Performance OpenVZ Containers&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] - Build an OpenVZ VPS in 14 locations WordWide From £2.49&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Romania ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://b3hosting.ro/ B3 Hosting] - top Romanian hosting company offering managed/unmanaged OpenVz virtual servers based in Bucharest, Romania, Germany, Netherlands and UK for top prices&lt;br /&gt;
* [http://www.intovps.com IntoVPS] - offers unmanaged OpenVZ virtual servers based in Romania, Netherlands and USA. A lot of resources for decent prices.&lt;br /&gt;
* [http://www.ename.ro/dedicated.html eName] - managed OpenVZ virtual servers in Bucharest, Romania&lt;br /&gt;
* [http://www.ch-center.com/virtual-servers Ch-center] - unmanaged OpenVZ virtual servers, based in Romania in it's own Data Center&lt;br /&gt;
* [http://www.clouds.ro/servere-virtuale/ Clouds] - OpenVZ virtual servers hosted on premium hardware, in Romania&lt;br /&gt;
* [http://www.HostSailor.com/ HostSailor] HostSailor provides affordable &amp;amp; high quality OpenVZ and KVM servers in Romania&lt;br /&gt;
* [https://www.shape.host/linux-vps/ Linux VPS] - OpenVZ virtual servers, Instant Linux VPS&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [https://bmfhost.com/nvme-ssd-vps/ BMF Host] - NVMe SSD VPS, Starting from  €12/month Unlimited traffic. A high-performance VPS Romanian hosting&lt;br /&gt;
&lt;br /&gt;
== Russia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.internoc24.host Internoc24.HOST] is an international [https://www.www.internoc24.host Offshore VPS ] provider with reliable SSD VPS in Moscow, Russia. Focus ist on high privacy protection so they accept several Cryptocurrencies like Bitcoin, Ethereum and others for anonymous payments.&lt;br /&gt;
* [http://www.ihc.ru/vps.html IHC.RU] - VPS hosting in Moscow, Russia starting at $10/month with good set of precreated templates&lt;br /&gt;
* [http://mchost.ru/services/linux-vps/ McHost.ru] - Linux VDS Hosting from McHost.&lt;br /&gt;
* [http://hosting.agava.ru/vps/ AGAVA] - Linux VPS hosting based on OpenVZ.&lt;br /&gt;
* [http://vdsplanet.ru/ VDSPlanet.ru] - unmanaged VDS/VPS hosting starting at 3.99$ a month. Large variety of OS templates and free ISPmanager Lite control panel. Total automation is our goal.&lt;br /&gt;
* [http://www.demos.ru/service/datacenter/vps.html Demos-Internet] - we offer OpenVZ Virtual Private Server based on Linux.  All VPS come with ISPmanager control panel.&lt;br /&gt;
* [http://www.net.ru/service/net9/ www.net.ru] - OpenVZ virtual private servers.&lt;br /&gt;
* [http://www.eurobyte.ru/ Eurobyte.ru] - Linux VDS Hosting from Eurobyte.&lt;br /&gt;
* [https://undergroundprivate.com/russiaoffshorevps.html  UndergroundPrivate.com] - OpenVZ with highly privacy, offshore , DMCA ignored , high confidence, SolusVM and cPanel, managed and non managed service.&lt;br /&gt;
* [http://www.telekom.ru/service/vps.html Elvis Telekom] - OpenVZ hosting with base and cpanel templates from Elvis Telekom.&lt;br /&gt;
* [http://fastvps.ru/vds/ FastVPS] - OpenVZ hosting, ISPmanager, Hetzner, MayFlower.&lt;br /&gt;
* [https://lepus.su/vps.html Lepus] - OpenVZ hosting, SSD, ISPmanager free, Hetzner.&lt;br /&gt;
* [http://www.hts.ru/vds/ HTS] - OpenVZ hosting, ISPmanager, Linux VPS hosting based on OpenVZ in Moscow.&lt;br /&gt;
* [https://selectel.ru/services/vds/ Selectel] - OpenVZ hosting.&lt;br /&gt;
* [https://galaxydata.ru/root-server/ GalaxyData] - Virtuozzo Containers in Cloud Storage.&lt;br /&gt;
* [http://hosterbox.ru/servers/ Hosterbox.ru] - Managed VPS hosting. Based on OpenVZ + SolusVM + ISPmanager.&lt;br /&gt;
* [https://firstvds.ru FirstVDS.ru] - One of the leading hosting companies providing virtual private servers.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Singapore ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://conceptlane.com/?t=hostingservices#ratesvps ConceptLane Pte Ltd] - OpenVZ VPS on dual octa-core AMD Opterons running Debian Wheezy 7, custom control panel with bandwidth graphs, reboot/reinit and web-based VNC access.&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [http://www.qoxy.com/vps QOXY.com] Affordable and Reliable OpenVZ VPS Hosting in a Singapore Data Center.&lt;br /&gt;
* [http://www.secureax.com/ SecureAX Pte Ltd] - Singapore Premium Internet Solution Provider&lt;br /&gt;
* [http://www.planettel.com.sg PlaNetTel] - Affordable and customised OpenVZ containers across 3 data centers - contact Thomas Festus at +65-66936881. [http://pve.proxmox.com/wiki/User:Apmuthu#Squeeze_based_Templates Sponsors OpenVZ Container Template]s for the Open Source community.&lt;br /&gt;
* [http://www.vpsfast.us/singapore-vps VPSFast] - VPS Provider with good prices in Singapore.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Serbia ==&lt;br /&gt;
* [https://www.skyhosting.rs/en/vps-servers SkyHosting] - Fast Linux OpenVZ VPS SSD Hosting with SolusVM control panel.&lt;br /&gt;
* [https://www.ninet.rs/en/vps-servers NiNet Company] - Linux OpenVZ VPS servers. Well known VPS hosting company from Serbia with their own data center&lt;br /&gt;
* [http://www.suonline.net SuOnline.Net ISP] - Linux OpenVZ VPS servers, Docker enabled !!!&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== South Africa ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.host1plus.com/ Host1Plus] - Local South African servers hosted in Johannesburg. OpenVZ VPS servers starting from $3.00 per month.&lt;br /&gt;
* [http://www.vps.co.za/ VPS.CO.ZA] - South Africa's oldest VPS provider. Local South African servers with SolusVM control panel. OpenVZ, Xen and OnApp Cloud.&lt;br /&gt;
* [http://247hosting.co.za/vpshosting.php 247Hosting] - OpenVZ virtual servers locally in South Africa with SolusVM control panel. cPanel option available!&lt;br /&gt;
* [http://www.SoftDux.co.za/ SoftDux] - OpenVZ virtual servers based America &amp;amp; South Africa. All VPS's come with cPanel or Plesk control panels. XEN VPS's also available.&lt;br /&gt;
* [http://www.clickworks.co.za/ Clickworks] - OpenVZ / Xen VPS servers hosted in RSA. Backed by Solusvm control panel.&lt;br /&gt;
* [http://www.elitehost.co.za/ Elite Host] - OpenVZ virtual servers based in America &amp;amp; South Africa. All VPS's come with cPanel and unlimited bandwidth.&lt;br /&gt;
* [http://www.telasera.com/ Telasera] - OpenVZ VPS servers hosted in South Africa. Supermicro Servers powered by Intel Xeon with 24/7 Support.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Spain ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.corpresa.com/servidores-virtuales.html Corpresa Hosting] - Tiene algún proyecto entre manos y un plan de hosting no le hes sufuciente y un servidor dedicado no está dentro de su presupuesto?, una solución de VPS a medida será la que cubrirá todas sus necesidades.&amp;quot;&lt;br /&gt;
* [https://www.datomedia.es Datomedia] - Cloud alta disponibilidad powered by Virtuozzo 6 y Servidores VPS bajo openvz y kvm.&lt;br /&gt;
* [https://www.evidaliahost.com/vps/ EvidaliaHosting] - Servidores VPS totalmente configurados con panel de gestión Plesk 12.5, garantía de devolución de 30 días y posibilidad de discos SSD.&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
* [https://ginernet.com/vps-ssd.php GINERNET] - Servidores VPS alojados en España desde 1.99€/mes.&lt;br /&gt;
* [https://www.hostingplus.com.es Hosting Plus España] provide OpenVZ containers at our own datacenter. Starting from us20/month RAID 10 SSD.&lt;br /&gt;
* [https://www.somtecnologia.com/ Som Tecnologia] - OpenVZ/6 , containers up to Debian 9&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Sweden ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.admax.se/vps/ Admax] - Admax offers enterprise grade virtual servers with great pricing. Custom control panel, API, remote access &amp;amp; more.&lt;br /&gt;
* [https://www.acon.se/vps Acon VPS Server] - VPS Server and Dedicated server provider in Sweden.&lt;br /&gt;
* [https://www.glesys.com/vps.php GleSYS] - VPS Provider with a great control panel and good prices&lt;br /&gt;
* [https://cspacehostings.com CSpace Hostings] Stockholm, Sweden Hosted SSD and Storage VPS based on OpenVZ (OVZ) 7.&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides the highest quality SSD VPS in Stockholm, Sweden. Based on completely pure SSD in RAID-10 and delivering extremely high network &amp;amp; hardware performance along with reliability.&lt;br /&gt;
* [https://www.nametyper.com NameTyper] - VPS and Shared hosting provider. Customize your own OpenVZ Container with 1-12 cores running on SSD and ECC RAM. &lt;br /&gt;
* [https://virtualcenter.se VirtualCenter] - The first Cloud provider with SSD VPS in Sweden. Offer enterprise class hardware and network infrastructure&lt;br /&gt;
* [http://www.vpsfast.us/sweden-vps VPSFast] - VPS Provider with good prices in Sweden.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Switzerland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
* [http://www.vpsfast.us/switzerland-vps VPSFast] - VPS Provider with good prices in Switzerland.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Tanzania==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.aptus.co.tz/ Aptus Solutions] - OpenVZ / SolusVM VPS Servers located in Dar es Salaam - 100meg to TIX. CentOS &amp;amp; Ubuntu.&lt;br /&gt;
&lt;br /&gt;
== UK ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.34sp.com/ 34SP.com] - We're a UK based web hosting company, bridging the gap between sophisticated hosting solutions &amp;amp; affordable prices&lt;br /&gt;
* [http://www.AceShells.com/ AceShells] - Fast, stable, high quality UK based virtual private servers from just £5 a month, operating since 2001&lt;br /&gt;
* [http://www.AtlanticServers.com/ Atlantic Servers] - Affordable VPS, stable, high quality VPS, UK based Data Centre&lt;br /&gt;
* [https://awebhosting.uk/ AWebHosting.uk] VPS hosting offered by [https://awebsolutions.uk/ AWEBSOLUTIONS LIMITED] reliable UK hosting provider located in London, UK and Hosted in UK DataCentre.&lt;br /&gt;
* [http://www.BargainVPS.co.uk/ BargainVPS] - UK / US / EU Instant setup VPS - We have some great Linux &amp;amp; Windows Bargain VPS packages on offer for you here all available Fully Managed.&lt;br /&gt;
* [http://www.cheapvps.co.uk/ CheapVPS] - CheapVPS provide cheap, UK based OpenVZ VPS servers. Hosted on high end hardware, in a top UK datacenter backed up with 24/7/365 support. Choice from a wide range of Linux distros. OpenVZ VPS managed with SolusVM.&lt;br /&gt;
* [http://www.chilliserver.com/ Chilliserver] - Affordable plans starting from just £3.99, not oversold. RHEL6 Kernel with VSwap, TUN/TAP/FUSE and ACL support enabled. SolusVM control panel with custom snapshot system and rescue system. Based in a European data Centre with UK based support.&lt;br /&gt;
* [http://www.chvps.com/ CHVPS] - Switzerland Based VPS, Cheap Pricing with solusVM control panel.&lt;br /&gt;
* [http://www.cislondon.co.uk/virtual-private-servers/ Commercial Internet Solutions] - CIS provides premium hosting at competitive rates, focused on Small Businesses within the M25 orbital. Hosting is on Dual Quad core Intel Xeon supermicro servers in Tier 4 datacenters around London.&lt;br /&gt;
* [http://www.datacorporate.co.uk/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [http://domvps.com/ domVPS] - OpenVZ Virtual Servers in the USA, Germany, France &amp;amp; the Netherlands at a low cost.&lt;br /&gt;
* [http://www.DubHosting.co.uk/ DubHosting] - DubHosting started in 2004 has been providing cost effective hosting to clients world wide. Fully managed OpenVZ servers based in Europe &amp;amp; US are one of their many strong points. They can provide you with a dedicated server and install openvz allowing you to sell your own vps servers. Their servers are located at UKGrid in Manchester with 24/7/365 support&lt;br /&gt;
* [http://www.europhase.net/virtual-private-servers/ Europhase UK Limited, UK VPS] - OpenVZ VPS Hosting, Virtual Dedicated Servers, UK VPS hosted at multiple UK datacentres from £4.99&lt;br /&gt;
* [https://farbyte.uk/vps Farbyte VPS] - UK based OpenVZ VPS and shared web hosting services&lt;br /&gt;
* [http://www.fdqwholesale.co.uk FDQ Wholesale] - UK based hosting services&lt;br /&gt;
* [http://www.gemvps.net/ GemVPS.NET] - UK (Manchester) Based Company, OpenVZ Virtual Servers in the UK &amp;amp; France on Fast nodes.&lt;br /&gt;
* [http://www.hadrill.org.uk Hadrill Online] - Fully managed hosting with unlimited bandwidth. Quotes available through contact form.&lt;br /&gt;
* [http://www.infrenion.com./uk_vps_hosting.html Infrenion Networks UK] Cheap, economical and reliable web hosting solutions, VPS based on the openVZ platform. You can host any YouTube Clone scripts with free FFMPEG setup on our vps servers. Also offers with a choice of selecting DataCenter.&lt;br /&gt;
* [https://www.laws-hosting.co.uk/vps-hosting.php Laws Web Hosting] - Laws Web Hosting offers OpenVZ VPS Hosting with packages starting from £5.50/m that will cater for anyone. We have OpenVZ VPS hosting solutions, and come with moderate DDoS protection.&lt;br /&gt;
* [http://www.letstalkdigital.com/index.php?option=com_content&amp;amp;view=article&amp;amp;id=73&amp;amp;Itemid=65 LetsTalkDigital VPS Hosting] - LetsTalkDigital.com offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from $14.99. Virtual Private Server(VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://www.meteorvps.com/ MeteorVPS] - Professional, Non-Oversold amazing VPS plans pretty cheap using SolusVM management, range from 512MB -&amp;gt; 16GB&lt;br /&gt;
* [http://www.minivps.co.uk miniVPS] miniVPS offers VPS hosting solutions with nodes located in UK, utilising openvz/solusvm with future locations of USA and UK. &lt;br /&gt;
* [https://www.first2host.co.uk First2Host Cheap VPS] - Intel Xeon E5-2630v3 OpenVZ VPS Servers. Don't be defined by a pre-made VPS plan. Create your own VPS Plan by assigning the resources that you require. SATA, SSD or NVMe storage 100 MBPS, 250 MBPS, 500 MBPS, 1GBPS speeds and free cPanel licenses.&lt;br /&gt;
* [http://www.phurix.co.uk/ Phurix] - A UK based web solutions company that provides you with reliable hosting at extremely affordable prices, VPS server virtualization using OpenVZ.&lt;br /&gt;
* [http://www.qualityservers.co.uk Quality Servers] - Affordable OpenVZ virtual servers based in the UK and USA. Choice of control panels and management options.&lt;br /&gt;
* [http://www.rackburst.net/ Rackburst] - UK SSD VPS Hosting with fast UK-based Live Support available from £1.49 per month.&lt;br /&gt;
* [http://www.rshosting.co.uk/vps.html RSHosting UK] - Offering the most secure, reliable, stable and fast UK VPS Web Hosting based on OpenVZ architecture. Our Virtual Dedicated Servers are physically hosted on powerfull Quad Core servers located in multiple UK datacentres.&lt;br /&gt;
* [http://www.sharkserve.rs SharkServers] - Low Cost OpenVZ virtual servers in the UK. Choice of control panels and management options. Own Datacentre.&lt;br /&gt;
* [https://www.ukhost4u.com/ UKHost4u] - A leading provider of VPS solutions for over 19 years!&lt;br /&gt;
* [http://www.vpsfast.us/united-kingdom-vps VPSFast] - VPS Provider with good prices in UK.&lt;br /&gt;
* [http://www.vpsmachine.co.uk/ vpsMachine] Quality openvz hosting platform with a large choice of customer OS templates.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [https://www.webhostuk.co.uk/vps-hosting.html WebHostUK LTD] - Offers Cheap yet Best UK VPS Web Hosting working on OpenVZ Platform.We offers fully Managed UK VPS with true 24/7/365 days support.All our Servers are located in UK London DC.&lt;br /&gt;
* [http://www.webhostinguk.com/vps/vps-hosting.html Web Hosting UK] - Fully managed OpenVZ VPS Hosting offered on fast and reliable and affordable servers in UK &amp;amp; European datacenter with 24x7x365 days lightning fast support.&lt;br /&gt;
* [http://www.weycrest.co.uk/vps-hosting.php Weycrest VPS] - Low Cost, Stable OpenVZ and Parallels' Virtuozzo Virtual Private Server solutions. London UK Hosted at Coreix with a choice of operating systems, and root and control panel options.&lt;br /&gt;
* [http://www.xilo.net/virtual_private_servers-vps/ XILO] - UK-based hosting with UK-based support. VPS services offered with a choice of cPanel, Webmin and other useful applications, VoIP, SIP, VPN to name a few.&lt;br /&gt;
* [http://www.zxvps.co.uk/ ZxVPS VPS Hosting] - Quality, non-oversold VPS based on the openVZ platform, using SolusVM management panel, VPS from 128mb - 2gb, cpanel, direct admin, kloxo, etc.&lt;br /&gt;
&lt;br /&gt;
== Ukraine ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://ekvia.com/ Ekvia] - VDS/VPS based on OpenVZ. Free trial 14 days. Domain registration for VDS/VPS.&lt;br /&gt;
* [http://www.gelihost.com/ Geliar Hosting Solutions] - Fast virtual dedicated servers based on OpenVZ. Geliar Hosting Solutions offering many control panels and other useful services.&lt;br /&gt;
* [http://www.hostpro.ua/ Hostpro.ua] - Full managed OpenVZ servers.&lt;br /&gt;
* [http://www.vpsfast.us/ukraine-vps VPSFast] - VPS Provider with good prices in Ukraine.&lt;br /&gt;
&lt;br /&gt;
== USA ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.a2hosting.com A2 Hosting] is your high-performance [http://a2hosting.com/openvz-vps-hosting OpenVZ VPS Hosting] provider. Design your perfect [http://a2hosting.com/vps-hosting VPS Hosting] account today! Featuring SwiftServers and SSDs with page load speeds up to 300% faster compared to standard drives.&lt;br /&gt;
* [http://www.afterburst.com Afterburst] (Previously FanaticalVPS): affordable unmetered, unmanaged VPS servers in NY.&lt;br /&gt;
* [https://www.asurahosting.com/ AsuraHosting] offers powerful, reliable, and simple OpenVZ VPS to clients. AsuraHosting has a dedicated support team, and quality hosting; Pricing starts at just $5/month!&lt;br /&gt;
* [http://beyondhosting.net BeyondHosting.net] High Performance OpenVZ Virtual Private Servers (VPS)  Tier 1 US Datacenter.&lt;br /&gt;
* [http://buyvm.net BuyVM.net] DDoS Protection, three datacenter locations, Stallion control panel. Affordable quality VPS hosting since 2010!&lt;br /&gt;
* [https://www.binarycpu.com Binary Computer Solutions] has provided OpenVZ based Virtual Private Server hosting for over 5 years.  Network outages are a thing of the past, and oversold services are never heard of here.  Built on solid technology, with infrastructure to match - Binary Computer Solutions will give you hosting you need, without the cost others ask for.  Starting at $30.00/mo.&lt;br /&gt;
* [http://www.bodhost.com/ Bodhost.com] Fast, Reliable and secure web hosting service with 24*7 free customer service.&lt;br /&gt;
* [http://www.buildyourvps.com/ BuildYourVPS.com] mix ‘n’ match your VPS; choose only the bandwidth, RAM, disk capacity, type of IP connection, level server redundancy, and the support/monitoring you want. [http://www.buildyourvps.com/ BuildYourVPS] is the 1st to offer you a highly-customized VPS solution, without making you pay for unused extra features.&lt;br /&gt;
* [https://www.budgetvm.com/openvz-linux-vps.php BudgetVM.com] Each server includes our industry-leading SLA, DDoS protection, 200Gbps networks and 7 * 24-hour customer support.&lt;br /&gt;
* [http://www.byethost.com Byethost.com] offers OpenVZ based VPS Hosting as its main VPS solution, with the hypervm panel. Centos, Debian, Fedora, OpenSuse and Ubuntu Containers are available.&lt;br /&gt;
* [http://cheaperasp.net CheaperASP.Net] provides Quality web hosting on the OpenVZ platform. You also help you get best options at [http://cheaperasp.net/godaddy-1-hosting-free-domain-promo/ affordable] cost.&lt;br /&gt;
* [http://www.chhost.net/vps.htm CH Hosting VPS Hosting] CH Hosting or chhost.net offers OpenVZ based VPS Hosting. 24/7 Support. Upgrade/Downgrade your plan as needed on-the-fly without the risk of downtime. Since 2006. Non-Oversell&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in USA from 1.88EUR/month.&lt;br /&gt;
* [http://www.cloudshards.com Cloud Shards] High Performance, reliable, stable and affordable OpenVZ Virtual Private Servers (VPS) in data centers across the USA.&lt;br /&gt;
* [https://cloudgearhosting.com CloudGear Hosting] - offers OpenVZ hosting in 4 locations across the USA. Including free DDoS Protection and free SSL with cPanel.&lt;br /&gt;
* [https://cspacehostings.com CSpace Hostings LLC] Dallas,TX US Hosted SSD and Storage VPS based on OpenVZ (OVZ) 7.&lt;br /&gt;
* [http://www.datacorporate.com/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [https://www.delimiter.com/storage-vps/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [https://www.cheapdomainnamesdot.com Domain Host SSL] provides Reliable web hosting with OpenVZ platform Since 2003, Located New York city, Atlanta, Los Angeles. &lt;br /&gt;
* [http://www.DubHosting.com/ DubHosting] - DubHosting started in 2004 has been providing cost effective hosting to clients world wide. Fully managed OpenVZ servers based in Europe &amp;amp; US are one of their many strong points. They can provide you with a dedicated server and install openvz allowing you to sell your own vps servers.&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
* [http://www.ethernetservers.com/ Ethernet Servers] A leading provider of OpenVZ Virtual Servers in Los Angeles, Miami and Buffalo with SolusVM.&lt;br /&gt;
* [http://www.evolucix.com/ Evolucix.com] Evolucix offers state of the art, professional, and reliable OpenVZ VPS solutions on top-notch hardware while providing quality support.&lt;br /&gt;
* [http://www.evolvedservers.com Evolvedservers.com] Openvz based vps servers. Hosted in Michigan, USA. 24/7 Support. Hosted in tier-3 and tier-4 datacenter's with multiple redundancies.&lt;br /&gt;
* [http://fastwebhost.com/vps-hosting.html Fastwebhost]: affordable cloud VPS servers using OpenVZ. &lt;br /&gt;
* [http://www.fliphost.net Fliphost.net]: Powerful, affordable instant setup VPS systems. Servers based in Phoenix Az with another location coming soon.&lt;br /&gt;
* [http://www.frontrangehosting.com Front Range Hosting]: SSD Cached KVM &amp;amp; OpenVZ VPS Hosting Prices Start at 2.00/mo, located in Colorado Springs, Colorado.&lt;br /&gt;
* [http://glesys.se GleSYS] is a hosting company specialized in serverhosting. Also offering VPS hosting mainly based on OpenVZ. GleSYS has provided access to server and Cisco hardware for developers from OpenVZ to find problem with VLAN implementation.&lt;br /&gt;
* [http://goodealhosting.com/ GOODEALHOSTING.com] Quality Hosting Solutions! Provides affordable unmanaged/managed VPS based on OpenVZ! start from $10.00, real 24/7 support.&lt;br /&gt;
* [http://gothost.net GotHost.net] Providing OpenVZ based VPS Hosting with SolusVM. All nodes are Quad Core Xeon with RAID-10 for speed and redundancy. Budget plans starting at $7.99.&lt;br /&gt;
* [http://www.greengeeks.com/ GreenGeeks Hosting] VPS Hosting. Dual Intel Xeon 64-Bit CPU's, DDR3 RAM, RAID-10 SSD Storage Arrays. 24/7 Support. cPanel/WHM + more!&lt;br /&gt;
* [http://hostarmor.com HostArmor™] - is best known for low-cost and reliable shared hosting and dedicated servers. Recently the company expanded to offer OpenVZ virtual server plans at 8 worldwide locations, five in the U.S., one in Germany, one in France, and one in the Netherlands. VPS plans start at $13.99/month.&lt;br /&gt;
* [http://www.host4geeks.com Host4Geeks] - Host4Geeks is a premium Fully Managed VPS provider with datacenters across 2 locations in US and in UK. All servers offer a free cPanel license.&lt;br /&gt;
* [http://www.host1plus.com Host1Plus] - OpenVZ based virtual servers in Chicago and Los Angeles. VPS plans start at $2.00 per month.&lt;br /&gt;
* [http://www.hostavps.com HostAVPS] - Providing Fully Managed VPS's on both the West &amp;amp; East Coast.&lt;br /&gt;
* [https://www.hostcapitol.com Host Capitol] offers fast and reliable web hosting services, including OpenVZ VPS Hosting, to clients ranging from small businesses to corporations. Located in Piscataway, New Jersey.&lt;br /&gt;
* [http://www.hostcolor.com Host Color] - OpenVZ based virtual servers hosted in a Tier 4 class data center based out of South Bend, Indiana. Juniper managed, fully-redundant network with uplinks to Level 3, Cogent and Internap.&lt;br /&gt;
* [https://www.hostgalaxy.com HostGalaxy] - OpenVZ based virtual servers. The fastest hosting in the Galaxy!&lt;br /&gt;
* [http://www.hostigation.com Hostigation] - High resource unmanage VPS hosting solutions.&lt;br /&gt;
* [http://www.hostingrails.com Hosting Rails] offers Rails-targeted OpenVZ VPS Hosting and updated Rails-ready OS images.&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [http://www.hostmist.com Host Mist] features budget OpenVZ VPS hosting from four major cities across the US.&lt;br /&gt;
* [http://www.hostrush.com HostRush] Self managed, ssd vps for business and non business. &lt;br /&gt;
* [http://www.dailyhosting.net hostoople] We offer OpenVZ VPS hosting from Dallas Texas, Starting at $29.95/month &lt;br /&gt;
* [https://hostus.us HostUS] provides unmanaged and managed OpenVZ VPS in Atlanta, Dallas and Los Angeles with custom control panel. A large variety of Linux distros are available. Enjoy 15% off with coupon VPS15OFF.&lt;br /&gt;
* [https://www.hostwinds.com Hostwinds] Affordable managed/unmanaged VPS Solutions.&lt;br /&gt;
* [http://hostsia.com Hostsia] With HOSTSIA Web services, you can get an OpenVZ VPS for only $15.00/mo. Each OpenVZ VPS includes multiple free-of-charge bonuses and offers a 99.9% uptime guarantee. You can also use our charge-free Hepsia CP, which is available with each OS – it permits you to host an unmetered number of domains and comprises heaps of handy tools, which will help you better manage your site and your VPS web hosting account.&lt;br /&gt;
* [http://www.infrenion.com./vps_hosting.html Infrenion Networks] Cheap, reliable and secure VPS hosting solutions, based on the openVZ platform. You can host any YouTube Clone scripts with enhanced support quality round the clock.&lt;br /&gt;
* [http://iniz.com/ INIZ VPS Hosting] INIZ provides affordable VPS Hosting in Los Angeles &amp;amp; New York with high resources at low prices.&lt;br /&gt;
* [https://www.interserver.net/ InterServer Web Hosting] Fast &amp;amp; Reliable VPS - 24x7 Support. 99.9% Up-time, Hosting Since 1999!.&lt;br /&gt;
* [http://www.joinvps.com JoinVPS.com] ISPmanager OpenVZ based VPS hosting. 24/7 Technical Support. Free ISPmanager control panel.&lt;br /&gt;
* [http://www.lovevps.com LoveVPS] Budget VPS provider starting at $5.99/month located in the US with Xeon nodes.&lt;br /&gt;
* [http://www.letstalkdigital.com/index.php?option=com_content&amp;amp;view=article&amp;amp;id=73&amp;amp;Itemid=65 LetsTalkDigital VPS Hosting] LetsTalkDigital.com offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from $14.99 Virtual Private Server(VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://lylix.net LYLIX] offers affordable VPS hosting with a choice of eight different Linux distributions, dedicated VPS hosting, and specializes in Asterisk/VOIP based hosting including Trixbox, AsteriskNow, Elastix, and PBX-in-a-Flash.  Popular choice for unmanaged IP-PBX services; entire infrastructure built on a High-availability (HA) network across three regional NOCs.&lt;br /&gt;
* [http://www.micfo.com Micfo.com] offers VPS hosting services for both Linux VPS hosting and Window VPS hosting on affordable price combined with world-class 24x7x365 support.&lt;br /&gt;
* [http://www.neostreams.info/neoshop/cart.php?gid=9 nEo Stream Services] Offer's Top Quality OpenVZ Servers, Starting at $18.95 per month! SolusVM Control panel , 7 day Money Back Guarantee , 24x7 Professional Support.&lt;br /&gt;
* [http://pogiweb.com/vps/ PogiWeb LLC] Instant and free setup. Includes SolusVM control panel and free level 1 support during first month.&lt;br /&gt;
* [http://www.theserverexperts.com TheServerExperts.com] TheServerExperts VPS line is the ideal solution for clients who require the control of a dedicated server matched with the affordability and simplicity of a traditional shared hosting account.&lt;br /&gt;
* [http://thenynoc.com New York NOC] affordable Linux VPS hosting out of New York and Chicago. Plans as low as $5 a month and are backed by a redundant infrastructure and 24/7 support.&lt;br /&gt;
* [http://railsplayground.com RailsPlayground.com] Ruby on Rails VPS with ready to go Rails images with the LxAdmin control panel&lt;br /&gt;
* [http://www.raidlogic.net RaidLogic.NET] RaidLogic.NET offers OpenVZ based Linux VPS out of multiple facilities across the United States, including Miami, Los Angeles, and Chicago. Starting as low as $3.95/month.&lt;br /&gt;
* [http://www.ramhost.us RAM Host] RAM Host offers OpenVZ based Linux VPS out of multiple facilities across the United States, including Atlanta, Kansas City, and Phoenix.&lt;br /&gt;
* [http://www.reconhosting.com Recon Hosting] Recon Hosting offers affordable OpenVZ VPS solutions where you get Quality Hosting at a Fraction of the price. Instant setup with the latest Operating System templates including cPanel.&lt;br /&gt;
* [http://www.rokabear.com Rokabear] Rokabear offers OpenVZ Linux VPS, Dedicated Server, and Colocation. All Hardware setup in High Availability mode including raided drives and redudnant power and network connections. With multiple upstream providers, Rokabear's connectivity is fast and reliable! Rokabear supports LAMP, Openvpn, and Asterisk configurations. VPSes start at $7.99!&lt;br /&gt;
* [https://www.rosehosting.com RoseHosting] offers OpenVZ Linux virtual servers equipped with Enterprise Grade SSD drives. All hosting plans are fully-managed with FREE 24/7 support, FREE website migration, FREE weekly backups and FREE server monitoring included.&lt;br /&gt;
* [http://www.rshosting.com/vps.html RSHosting.com] RSHosting offers the most secure, reliable and stable VPS - Virtual Private Servers based on OpenVZ architecture, powered by the most professional and qualified 24/7 lightening fast support.&lt;br /&gt;
* [http://www.servercomplete.com Server Complete, LLC] Server Complete offers OpenVZ based Linux VPS out of multiple facilities across the United States, including Atlanta, Dallas, and Chicago.&lt;br /&gt;
* [http://www.servergrove.com ServerGrove] uses OpenVZ as the main virtualization platform for its state of the art VPS hosting services.&lt;br /&gt;
* [http://serverswarm.com ServerSwarm] provides stable, affordable, high performance OpenVZ virtual private servers.&lt;br /&gt;
* [http://Sharktech.net Sharktech] provides custom OpenVZ solutions DDOS-protected up to 100Gbps.&lt;br /&gt;
* [http://www.silverrack.com/ SilverRack VPS Hosting] - SilverRack provides affordable VPS hosting using the OpenVZ platform.&lt;br /&gt;
* [http://www.soficol.com/ Soficol] Offers Enterprise OpenVZ based VPS, hosted on a clustered infrastructure and redundant network. Easy to use user management and instant setup.&lt;br /&gt;
* [http://www.spectrohost.com/ Spectro Host] - Offers performance VPS Servers running openvz. Always the most resources and never over committing OpenVZ nodes.&lt;br /&gt;
* [http://www.budgetvds.com/ BudgetVDS] - Offers VPS Servers running openvz we've been in business for 2 years now using openvz platform.&lt;br /&gt;
* [http://www.syera.net/ Syera Networks] Unmetered VPS From $18.88/M, 24/7 Support, OpenVZ/HyperVM, Instant Setup!, Free 1Gbps Upgrade with Coupon: syera1G&lt;br /&gt;
* [http://www.synapseglobal.com/voip_vps.html SynapseGlobal.com] Elastix, Trixbox, PBX in a Flash and Asterisk VPS - OpenVZ based Asterisk VOIP servers with 14 Tier 1 premium bandwidth providers.&lt;br /&gt;
* [http://www.tektonic.net TekTonic] provides VPS hosting services using both Virtuozzo and OpenVZ technology.&lt;br /&gt;
* [http://www.tigerservers.com/ TigerServers] - Provides affordable managed VPS based on OpenVZ. Servers located in Chicago, Illinois&lt;br /&gt;
* [http://www.tocici.com/ TOCICI VPS Hosting Services] Since 1995 TOCICI has offered web hosting services, with 24/7 support commitments and a strong non-oversell policy. Our purpose-built hosting infrastructure has serviced many organizations for over a decade. Offering OpenVZ VPS, data center colocation, and equipment leasing options, visit our website for prices and more details.&lt;br /&gt;
* [http://www.ultravps.com UltraVPS] UltraVPS offers managed and unmanaged OpenVZ-based VPS hosting utilizing dual CPU hardware nodes with redundant, high-performance RAID-10 storage.  UltraVPS offers VPS servers with many popular control panel options and turn-key applications.&lt;br /&gt;
* [http://www.vpsfx.com VPSFX] VPSFX.com offers OpenVZ VPS, data center colocation, and dedicated servers.&lt;br /&gt;
* [http://www.Webhost.US.Com/linuxvps.html US Web Hosting]  Webhost.US.Com offers powerful GUI based VPS management system with full OpenVZ, Xen Paravirtualization and Xen HVM support.All our Virtual Private servers are fully Managed with 99.9% uptime and 24/7 top notch support.&lt;br /&gt;
* [http://unixservice.com Unixservice/unxsVZ] Low cost OpenVZ ONLY hosting we specialize in Mail, DNS and RADIUS multiple container hosting. At the world famous Market St. San Jose, CA Silicon Valley datacenter. Ping times from your containers to local yahoo and google sites guaranteed single digit ms times. Your containers are backed up at 4 local and 2 remote locations. Contact supportgrp at unixservice dot com.&lt;br /&gt;
* [http://www.vogenic.xyz Vogenic: Cloud Services] If you are searching for an upgrade to the shared hosting service, then you should consider our OpenVZ or KVM VPS hosting services.&lt;br /&gt;
* [http://vpslink.com VPSLink.com] provides virtual private server hosting on the OpenVZ platform.&lt;br /&gt;
* [http://www.vpsspeed.com/ VPSSpeed] - VPSSpeed provides unmanaged OpenVZ based VPS hosting with over 50 OS Templates, real 24/7/365 support and fast US servers. No overselling.&lt;br /&gt;
* [http://vpsnoc.com VPSNOC] offers unmanaged vps hosting based in the USA utilizing OpenVZ hypervisor behind an in-house VPS control panel.&lt;br /&gt;
* [https://www.waveride.at/ Waveride] Waveride, an EDIS company, offers budget full gigabit OpenVZ + solusVM VPS in Austria, USA and the Netherlands&lt;br /&gt;
* [http://www.webappcabaret.com WebAppCabaret] provides VPS solutions for hosting applications. We offer OpenVZ with cPanel or Plesk for web site management; and NGASI Universal App Manager for deploying and managing JAVA and RAILS applications.&lt;br /&gt;
* [http://www.wirenine.com/vps-hosting/ WireNine.com VPS Hosting] Low cost fully managed and unmanaged OpenVZ based VPS Hosting with SAS 15k enterprise drives in high-performance RAID-10 storage.&lt;br /&gt;
* [http://www.zoidial.com/ Zoidial Hosting and VPS] - offers VPS and Virtual Dedicated Server solutions utilizing OpenVZ.  In business since 1998, Zoidial Incorporated is a small hosting provider focused on being security conscious, proactive, and offering a positive client experience.&lt;br /&gt;
* [http://zensix.com ZenSix Hosting] Cheap OpenVZ based VPS accounts with the SolusVM control panel.&lt;br /&gt;
* [http://zigothosting.com Zigot Hosting] Affordable and Reliable OpenVZ based VPS's within the SolusVM control panel.&lt;br /&gt;
* [http://www.vpsfast.us/usa-vps VPSFast] - VPS Provider with good prices in USA (Los Angeles, New Jersey, New York, Seattle, Washington, Dallas, Chicago, Atlanta, Ashburn, Miami, Piscataway).&lt;br /&gt;
* [http://www.xarixlite.com Xarix Lite] - offers OpenVZ hosting in Charlotte, SC. OpenVZ plans starting at $2.50/mo&lt;br /&gt;
* [https://www.yourlasthost.com YourLastHost] is your high-performance [https://www.yourlasthost.com/openvz-vps.php OpenVZ VPS Hosting] Provider. Get your perfect [https://www.yourlasthost.com/openvz-vps.php VPS Hosting] account today! Available in Los Angeles, Dallas, Jacksonville, USA and France, Europe.&lt;br /&gt;
&lt;br /&gt;
== Vietnam ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://appvz.com AppVZ.com] (www.appvz.com) is a leading web solution provider offering domain, hosting, reseller and VPS hosting packages from 2009. Just recently, the company has offered discount packages where customers can avail managed and un-managed VPS for only $9.5 per month.&lt;br /&gt;
&lt;br /&gt;
= Hosting providers comparison =&lt;br /&gt;
&lt;br /&gt;
It is hard to compare all virtual private server offers provided by different hosting providers.&lt;br /&gt;
Sites below can help you with it.&lt;br /&gt;
&lt;br /&gt;
* [https://www.cheapvpsservers.co.uk/ Cheap VPS Servers]&lt;br /&gt;
* [https://www.hostingmyths.com/ Hosting Myths]&lt;br /&gt;
* [https://cheapwebhosting.review/ VPS servers comparison]&lt;br /&gt;
* [https://reviewsquirrel.com/web-hosting-reviews/ Review Squirrel]&lt;br /&gt;
* [http://lowendstock.com/ Lowendstock]&lt;br /&gt;
* [https://www.websitehostingrating.com/ Best Web Hosting Services]&lt;br /&gt;
* [https://foxmaya.com/hosting/best-wordpress-hosting-india/ Best Wordpress Hosting Services]&lt;br /&gt;
* [http://serverbear.com/compare?Sort=RAM&amp;amp;Order=asc&amp;amp;Server+Type=VPS&amp;amp;Monthly+Cost=-&amp;amp;HDD=-&amp;amp;RAM=-&amp;amp;Virtualization=OpenVZ Serverbear]&lt;br /&gt;
* [https://www.comparethehosts.com/vps-web-hosting.htm VPS Web Hosting Reviews]&lt;br /&gt;
* [https://thishosting.rocks/best-cheap-managed-vps/ ThisHosting.Rocks - Managed VPS Providers Comparison]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
http://vpscomp.com&lt;br /&gt;
http://reviewsignal.com/webhosting/compare/&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= See also =&lt;br /&gt;
&lt;br /&gt;
* [[Partners]]&lt;br /&gt;
* [[Download mirrors]]&lt;br /&gt;
* [[VPS vs Dedicated]]&lt;/div&gt;</summary>
		<author><name>Vvs</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.openvz.org/index.php?title=Hosting_providers&amp;diff=23381</id>
		<title>Hosting providers</title>
		<link rel="alternate" type="text/html" href="https://wiki.openvz.org/index.php?title=Hosting_providers&amp;diff=23381"/>
		<updated>2021-02-25T14:16:34Z</updated>

		<summary type="html">&lt;p&gt;Vvs: /* OpenVZ hosting providers */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''OpenVZ is free and open implementation of Virtuozzo containers for Linux.&lt;br /&gt;
Don't forget to keep [[testimonials|testimonial]] and [[donate]] to OpenVZ.'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
OpenVZ makes for a great hosting platform for VPS hosting. The providers below offer VPS services using OpenVZ.&lt;br /&gt;
&lt;br /&gt;
[[File:UsageLocation.svg]]&lt;br /&gt;
&lt;br /&gt;
= OpenVZ hosting providers =&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- @@@@@@@@@@@@@@@@@@@@@@@&lt;br /&gt;
&lt;br /&gt;
IF YOU EDIT THIS PAGE,  PLEASE OBEY TO THE FOLLOWING RULES:&lt;br /&gt;
&lt;br /&gt;
1. Keep your record on ONE line&lt;br /&gt;
2. Keep the list of providers alphabetically sorted, DO NOT insert your record on top.&lt;br /&gt;
3. Keep the list of countries alphabetically sorted as well.&lt;br /&gt;
&lt;br /&gt;
     @@@@@@@@@@@@@@@@@@@@@@@@ --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Andorra ==&lt;br /&gt;
* [https://www.actiu.net/pro/ Actiu informatica] amb servidors dins i fora del principat.&lt;br /&gt;
&lt;br /&gt;
== Argentina ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.fulltech.com.ar/ Full Tech Solutions] Specializes in the virtualization of OpenVZ &amp;amp; Virtuozzo containers, installed in the Full Tech Solutions Data Center located in Villa Elisa, Entre Rios Argentina.  It also offers services hosted in the United States, Netherlands and Germany&lt;br /&gt;
* [http://www.g2khosting.com/ G2K Hosting] offer OpenVZ containers with high level hardware technology from 25 US with Control Panel, various Linux Dists and full support.&lt;br /&gt;
* [https://hostingplus.com.ar/ HostingPlus Argentina] provide OpenVZ containers at our own datacenter in South America with triple internet provider. Starting from  us20/month&lt;br /&gt;
* [https://ibumu.com/ Ibumu] Best containers for wordpress starting from $5.5.&lt;br /&gt;
* [http://www.ihserver.net/ IHServer] Specialized virtualization on OpenVZ containers at Gigared datacenter. We have in Argentina one of the better fiber connection to the US, but also provides services from LSTN in Texas.&lt;br /&gt;
* [https://www.infranetworking.com.ar/ Infranetworking] All our Cloud VPS container solutions for Argentine customers are powered by the all mighty OpenVZ virtualization software.&lt;br /&gt;
* [https://www.neolo.com/ Neolo] provide OpenVZ containers at our own datacenter in South America with double internet provider. Choose your Linux OS and apps. Full support.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [http://www.wiredhosting.com.ar/ WiredHosting] offer XEN and OpenVZ containers with SSD drives, cloudflare security and weekly backups to protect your information. Phone and Helpdesk support. &lt;br /&gt;
&lt;br /&gt;
== Australia == &lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.auhost4u.com/ AUHost4u] - VPS Solutions provided from our D.C. in Sydney.&lt;br /&gt;
* [https://www.conetix.com.au/ Conetix Hosting] Specialising in business grade, fully managed Virtuozzo containers with Virtuzzo Cloud Storage. 100% Australian owned and operated. Brisbane based DC with Enterprise Dell servers.&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides self-managed OpenVZ based SSD VPS located at Equinix SY3 in Sydney, one of the best and well-connected datacenters in the region.&lt;br /&gt;
* [http://www.vpsfast.us/australia-cloud-server VPSFast] - VPS Provider with good prices in Australia.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Austria ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
* [https://kapper.net/ kapper.net] kapper.net offers OpenVZ and Virtuozzo (and other HyperVisors) based server-solutions with kind support and 24x7 maintenance.&lt;br /&gt;
* [https://mdhost.eu/vserver.php MDHost.eu] New Hosting Provider with nice Prices and many Server locations. Austria, Germany, France and more.&lt;br /&gt;
* [https://www.snb.at/ SNB] offers OpenVZ containers and support's also existing vm's in customers environment&lt;br /&gt;
* [https://www.waveride.at/ Waveride] Waveride, an EDIS company, offers budget full gigabit OpenVZ + solusVM VPS in Austria, USA and the Netherlands&lt;br /&gt;
* [http://www.vpsfast.us/austria-cloud-server VPSFast] - VPS Provider with good prices in Austria.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Brazil ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.datacorporate.com.br/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [http://www.globalmedia.com.br/ GlobalMedia] We offers OpenVZ containers hosted on a very fast network with fast setup. Ubuntu, Debian, CentOS.&lt;br /&gt;
* [http://www.host1plus.com.br/ Host1Plus] Servers hosted in São Paulo. We offering reliable and secure OpenVZ VPS Servers with 99.99% up-time, starting from $5.00 per month.&lt;br /&gt;
* [http://www.ipdeck.net/ IPDECK] VPS Linux server from R$15,00/month! Fully customizable according to your needs.&lt;br /&gt;
* [https://www.quantivehost.com.br/ QuantiveHost] VPS Linux with 99.99% uptime. Prices starting from R$ 29,35.&lt;br /&gt;
* [https://www.elevahost.com.br/ Eleva host] Server hosted in Brazil. The best support.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [https://www.ferenz.com.br/ Ferenz Networks] VPS Linux with best support. Prices starting from R$ 29,90.&lt;br /&gt;
&lt;br /&gt;
== Bulgaria ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.cloudhostinghub.com Offshore VPS Hsoting] CloudHostingHub.com is an [https://www.cloudhostinghub.com Cloud Offshore VPS Hosting] located in Buglaria. They provide both OpenVZ and KVM virtualization. CloudHostingHub.com is known for the high privacy protection , performance and stability.&lt;br /&gt;
* [https://www.cyberhour.com CyberHour.com] CyberHour.com is an [https://www.cyberhour.com offshore VPS hosting] provider located in Europe. The provide blazing fast servers and premium Bandwidth of 200Mbps. With high privacy protection.&lt;br /&gt;
* [https://www.linuxssdvps.com Bulgaria VPS] Linux SSD VPS is an [https://www.linuxssdvps.com offshore VPS hosting] provider located in Sofia, Bulgaria. Privacy is very respected and anonymous registrations are allowed, as well as payments via Bitcoin / PayPal.&lt;br /&gt;
* [http://www.webuzo.net Bulgaria VPS] Webuzo Network is an offshore SSD VPS hosting provider located in Bulgaria. Privacy is very respected and anonymous registrations are allowed, as well as payments via Bitcoin / PayPal.&lt;br /&gt;
* [https://vpsbg.eu/en Bulgaria VPS] VPSBG.eu is an offshore SSD VPS hosting provider located in Sofia, Bulgaria. Privacy is very respected and anonymous registrations are allowed, as well as payments via Bitcoin.&lt;br /&gt;
* [http://www.bul.net/ Bul.net] Provides OpenVZ based VPS, perfect user/VPS management via [http://ispsystem.com VDSManager]. Instant creation after online payment. Debian/Ubuntu/CentOS with ISPManager Control panel. Optimal price policy.&lt;br /&gt;
* [http://www.cointech.eu/vps-hosting/ CoInTech] provides OpenVZ based VPS containers, free webmin managment. Containers can be CentOS, Slackware, Ubuntu, custom or our special [http://www.mandriva.com Mandriva Linux] container with own [http://mandriva.cointech.net repository].&lt;br /&gt;
* [http://www.rax.bg/ RAX.bg] Offers OpenVZ based VPS, hosted on a clustered infrastructure and redundant network. Easy to use user management, Instant setup, CentOS (OS).&lt;br /&gt;
* [http://www.jump.bg/ Jump.bg] Provides OpenVZ VPS servers hosted on a redundant network which provides a very easy to manage platform for all clients which gain instant access to their OS ( Ubuntu, CentOS , Debian etc ... )&lt;br /&gt;
* [https://www.fitvps.com/ FitVPS.com] Offers affordable and reliable OpenVZ based VPS in Varna, Bulgaria. Own data center, own multihomed network, with SLA. Instant automatic setup, SolusVM control panel.&lt;br /&gt;
* [http://www.qhoster.com/ QHoster.com] Instant activation OpenVZ VPS in UK, USA, Germany, France and Switzerland. Both 32/64 bit OpenVZ OS VPS templates : CentOS 5/6, Debian 6/7, Ubuntu 12/13.&lt;br /&gt;
* [https://www.verdina.net Verdina.NET] Verdina.net offers dedicated hosting services, provided by powerful dell hardware. Servers are located in Telepoint Datacenter, a Tier 3 DC located in Sofia, Bulgaria.&lt;br /&gt;
* [https://www.vps.ag/ VPS.AG] Affordable and reliable OpenVZ VPS based in Sofia, Bulgaria. Instant setup and 24/7 support.&lt;br /&gt;
* [http://www.vpsfast.us/bulgaria-vps VPSFast] - VPS Provider with good prices in Bulgaria.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Canada ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://4goodhosting.com/linux-vps-hosting 4GooodHosting] - Canadian OpenVZ VPS Servers, Starting from  $18.99/month SSD,. Canada VPS hosting in three different Canadian Data Centers with nightly backups.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [https://whc.ca/canadian-cloud-servers Web Hosting Canada Cloud Servers] - Powerful Cloud servers powered by OpenVZ and located in Canadian datacenters, with fast RAID-10 storage, fully managed with cPanel.&lt;br /&gt;
* [http://compevo.com compevo Clustered VPS Server Hosting Provider] - We offer clustered VPS Servers to avoid downtime and dataloss. Our network and service is second to none and is used by businesses around the world.&lt;br /&gt;
* [http://www.datacorporate.ca/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [https://www.delimiter.com/storage-vps/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [https://www.miditech.com/ MidiTech Hosting Canada] VPS hosting offered by MidiTech Canada are powered by VMware, . Fully Managed VPS with control panels&lt;br /&gt;
* [http://www.gotekky.com Gotekky Cloud VPS Hosting] High quality Cloud VPS packages powered by our own infrastructure and network in Toronto. Scalable from our $5/mo plan all the way to your own dedicated cloud server. Based on OpenVZ and our own proprietary panel.&lt;br /&gt;
* [https://gigebox.com GIGEBOX.COM] GIGEBOX are expert providers of secure business hosting services, we operate high-performance professional servers, specially designed for businesses, powered by the Intel(R) Xeon(R) Hexa-Core CPU Processors and 128 GB DDR3 minimum RAM. Enjoy high availability, performance and security for multiple uses.&lt;br /&gt;
* [http://www.letstalkdigital.com/index.php?option=com_content&amp;amp;view=article&amp;amp;id=73&amp;amp;Itemid=65 LetsTalkDigital VPS Hosting] LetsTalkDigital.com offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from $14.99. Virtual Private Server (VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://secure.media-hosts.com/link.php?id=7 Media-Hosts.com] Provides Quality and Scalable OpenVZ based Virtual Private Servers. 100% network uptime guaranteed. Located in Montreal Quebec with 5 Tier1 upstream providers.&lt;br /&gt;
* [http://www.openvz.ca OpenVZ.ca] Canadian Budget VPS Servers on OpenVZ Platform. &lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [http://protoserver.com ProtoServer] Advanced VPS Hosting from $4.95/month. Many pre-installed VPS Templates available (CMS, E-commerce, Web development, Online community, Media streaming, etc.) No bundles or service plans - mix VPS resources as needed and change VPS configuration anytime. Also offering DNS Hosting, E-mail hosting, Domains Registration.&lt;br /&gt;
* [http://www.vistapages.com/vps Vistapages VPS] - IBM &amp;amp; Dell Hardware. MCI/Verizon Backbone. Distros: Centos, Fedora, Debian &amp;amp; more. Full management available. Located in Toronto.&lt;br /&gt;
* [http://vpsville.ca/ VPSVille] - Good network. Good CPU. Good choice of distros: Centos, Fedora, Debian, Ubuntu, Slackware, Gentoo, OpenSUSE, CERN. My favorite OpenVZ provider. [mailto:jak@isp2dial.com John Kelly]&lt;br /&gt;
* [http://solib.ca/services-offerts/hebergement-haute-vitesse/serveurs-vps/ SOLIB Logiciel Libre Québec] Our company offers DDoS protected server solutions including OpenVZ containers. Very high availability and reliability, all our VPS are located in Quebec, Canada.&lt;br /&gt;
* [https://www.host-stage.net/linux-vps/ HostStage - Linux VPS] - Simple, Reliable OpenVZ VPS packed with 1 GBPS port speed, RAID 10 SSD, Intel Xeon CPU, DDoS Protection from $4.95/month&lt;br /&gt;
* [https://undergroundprivate.com/russiaoffshorevps.html  UndergroundPrivate.com] - OpenVZ with highly privacy, offshore , DMCA ignored , high confidence, SolusVM and cPanel, managed and non managed service.&lt;br /&gt;
* [http://www.vpsfast.us/canada-vps VPSFast] - VPS Provider with good prices in Canada.&lt;br /&gt;
* [https://websavers.ca/canadian-vps-hosting Websavers Inc in Halifax] - VZ containers priced by the resource. Resource changes entirely client-level.&lt;br /&gt;
* [https://www.yoorshop.fr/hosting-ssd-vps-usa-canada.php YOORshop SAS] - High performance NVMe SSD Linux VPS in Canada, daily backup included. Starting from €7,49 /month&lt;br /&gt;
&lt;br /&gt;
== Colombia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.datacorporate.co/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [http://www.soficol.com/ Soficol] Offers Enterprise OpenVZ based VPS, hosted on a clustered infrastructure and redundant network. Easy to use user management and instant setup.&lt;br /&gt;
* [https://www.hostingplus.com.co/ Hosting Plus Colombia] provide OpenVZ containers at our own datacenter in South America with triple internet provider. Starting from  us20/month&lt;br /&gt;
* [https://ibumu.com/ Ibumu] Best containers for wordpress starting from $5.5.&lt;br /&gt;
&lt;br /&gt;
== Czech Republic ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://4smart.cz 4Smart.cz] - prepaid, you are charged only by the system resources you use, therefore you can run a VPS for as little as  1 EUR a month if your vps is not resource hungry. Even if you pay  0,50 EUR  month, you still have 3 GB of RAM and 8 cores available to you VPS.&lt;br /&gt;
* [http://www.freecloud.cz FREECLOUD.CZ] - Free OpenVZ VPS Server - own IP, 800Mhz CPU, 512MB RAM, 50Mbits LAN, 10GB HDD, 100GB Traffic - Debian, Ubuntu, Gentoo, Slackware, Fedora, Centos&lt;br /&gt;
* [http://www.hukot.cz Hukot.cz] - OpenVZ VPS Servers starting from 2.92 €, XEON, 1 Gbps uplink, unlimited traffic. Debian, Ubuntu, CentOS, Scientific, SuSe, Fedora, Elastix.&lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [http://www.ultimatehosting.eu UltimateHosting.eu] - OpenVZ VPS Servers starting from $8 with custom configuration - up to 100 GB HDD, 2048 MB RAM, 2 GHz CPU, and unlimited traffic.&lt;br /&gt;
* [http://www.mujhost.net MUJHOST.NET] - OpenVZ VPS Servers starting from 160 Kč, 100Mbps / 1 Gbps uplink, unlimited traffic. Debian, Ubuntu, CentOS ...&lt;br /&gt;
&lt;br /&gt;
== Chile ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.1h.cl/ 1h.cl Vps - Chile] - VPS High Performance with OpenVZ in Chile&lt;br /&gt;
* [http://www.1hosting.cl/ 1hosting Virtual servers - Chile] - VPS Professional with OpenVZ&lt;br /&gt;
* [http://www.dch.cl/ DCH] - DCH.cl Hosting Chile - High Performance VPS Servers with OpenVZ &lt;br /&gt;
* [https://www.dominioweb.net/ Dominioweb] - Premium Hosting and domain registration&lt;br /&gt;
* [http://ecohosting.cl/ EcoHosting.cl Santiago - Chile] - VPS with OpenVZ in Chile&lt;br /&gt;
* [http://www.host.cl/ Host.cl] - Cloud Computing&lt;br /&gt;
* [https://www.hostingplus.cl/ HostingPlus Internet Limitada] - High Performance Vps provider in Chile&lt;br /&gt;
* [https://www.hostingnet.cl/ Telecomunicaciones Hostingnet SPA] - VPS Reliable Provider in Chile&lt;br /&gt;
* [https://www.hostname.cl/ Hostname Ltda] - VPS Hosting with Datacenter in Chile&lt;br /&gt;
* [https://www.inc.cl/ INC Internet Limitada] - VPS Hosting provider in Chile&lt;br /&gt;
&lt;br /&gt;
== Denmark ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.vpsfast.us/denmark-cloud-server VPSFast] - VPS Provider with good prices in Denmark.&lt;br /&gt;
&lt;br /&gt;
== Ecuador ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.dedi.space/ DediSpace Telecom] - VPS Servers in Ecuador - USA, France, Germany, Ecuador Datacenter.&lt;br /&gt;
&lt;br /&gt;
== Estonia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://cspacehostings.com CSpace Hostings] Tallinn, Estonia Hosted SSD and Storage VPS based on OpenVZ (OVZ) 7.&lt;br /&gt;
&lt;br /&gt;
== France ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.BargainVPS.co.uk/ BargainVPS] - UK / US / EU Instant setup VPS - We have some great Linux &amp;amp; Windows Bargain VPS packages on offer for you here all available Fully Managed.&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in France from 1.88EUR/month.&lt;br /&gt;
* [http://www.fixweb.com Fixweb] Great managed hosting provider with strong anti ddos solution - openvz only - leader in managed openvz solution with horizontal scaling and high availability&lt;br /&gt;
* [http://www.Freaksol.com/ FreaKs VPS Hosting] Self reliant hosted on independent networks &amp;amp; DC low ping,No restrictions on file types,Unlimited resources,high ram servers &lt;br /&gt;
* [http://www.harmony-hosting.com Harmony-Hosting] A high performance VPS hosting - The leader in France&lt;br /&gt;
* [https://www.delimiter.com/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [http://www.lws.fr/serveur_dedie_linux.php LWS - Linux VPS ] - Linux VPS Hosting - Only 9.99€/month, Affordable and Secure OpenVZ VPS Servers with 99.99% up-time, web hosting control panel Included. French datacenter&lt;br /&gt;
* [http://www.ovh.co.uk/vps/ OVH VPS] linux from 3€/month, [http://www.ovh.co.uk/vps/vps-cloud.xml windows] from 12€/month.&lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [https://VPSZ.FR VPSZ] VPS Hosting in France. Starting from 2,99€, Unlimited traffic.&lt;br /&gt;
* [http://www.1euro-hosting.eu BEST EU VPS - 1€ Hosting] - Providing reliable and secure OpenVZ VPS Servers with 99.99% up-time, starting from 8€&lt;br /&gt;
* [https://www.shape.host/linux-vps/ Shape Host - Linux VPS] - OpenVZ virtual servers, Instant Linux VPS&lt;br /&gt;
* [https://undergroundprivate.com/russiaoffshorevps.html  UndergroundPrivate.com] - OpenVZ with highly privacy, offshore , DMCA ignored , high confidence, SolusVM and cPanel, managed and non managed service.&lt;br /&gt;
* [https://www.host-stage.net/linux-vps/ HostStage - Linux VPS] - Simple, Reliable OpenVZ VPS packed with 1 GBPS port speed, RAID 10 SSD, Intel Xeon CPU from $4.95/month&lt;br /&gt;
* [https://www.yoorshop.hosting/hosting-vps-ssd-europe YOORshop SAS] - High performance NVMe SSD OpenVZ 7 VPS within 13 countries in Europe, Canada and Singapore. Daily backup included. From €5,95/month&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Germany ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://afterburst.com Afterburst (Previously FanaticalVPS)]: affordable unmetered, unmanaged VPS servers in Germany.&lt;br /&gt;
* [http://www.b2b-hosting.de/vps/ B2B Hosting]: Professional virtual servers for business applications. Performance and reliability at a fair price. Made with OpenVZ.&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in Germany from 1.88EUR/month.&lt;br /&gt;
* [https://www.delimiter.com/dedicated-servers/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [http://hostmist.com/openvz-vps-germany.html Host Mist]: features budget OpenVZ VPS hosting in Germany.&lt;br /&gt;
* [http://www.host1plus.com/ Host1Plus] Servers based in Frankfurt am Main. Offering reliable OpenVZ based VPS servers in Germany starting from $2.50 per month.&lt;br /&gt;
* [http://www.hostingjuice.com/ HostingJuice] The Superioum VPS and Web Hosting provider, low prices - Premium packages.&lt;br /&gt;
* [http://www.ingate.de/managed-server.html Ingate] offers managed servers with openVZ virtualization. located in germany, great support.&lt;br /&gt;
* [http://linevast.de/angebote/linux-openvz-vserver-mieten.html Linevast] Reliable OpenVZ based VPS with fast support, located in germany&lt;br /&gt;
* [https://cp.myvirtualserver.com/?affid=42 MyVirtualServer]: Cheap VPS (OpenVZ/KVM, 5TB Traffic, 10Gigabit), servers located in Frankfurt (best ping, starting 1.99€) good support (en/de) //New Design!&lt;br /&gt;
* [https://www.nogics.com Nogics Technologies]: Affordable VPS based in Germany. Starts from $5.96/mo.&lt;br /&gt;
* [http://www.plambee.de/vserver.php Plambee.de Webhosting]: Powerfull OpenVZ based VPS servers at low cost with hosting in Germany&lt;br /&gt;
* [https://rackset.com/ Rackset Hosting] Managed Dedicated / VPS and Website Hosting services since 2004.&lt;br /&gt;
* [http://www.serverbiz.de/vserver Serverbiz] Powerful VPS at very low prices.&lt;br /&gt;
* [http://www.synapseglobal.com/voip_vps.html SynapseGlobal.com] Elastix, Trixbox, PBX in a Flash and Asterisk VPS - OpenVZ based Asterisk VOIP servers located in Munich Germany.&lt;br /&gt;
* [http://www.vStarVPS.com vStarVPS]: Reliable VPS Hosting at lowest prices, with 99.9% uptime, Premium Unmetered Bandwidth and Custom HDD/RAM of your choice. Instant and FREE Setup. RapidLeech Allowed.&lt;br /&gt;
* [http://whynotavps.com WhyNOTaVPS]: Instant activated VPS SERVERS!!&lt;br /&gt;
* [http://squote.de/index.php?ref=1421485383 SQuote]: SQuote VPS Hosting and more. VPS 1 Core, 1.024MB RAM, 512MB RAM SWAP, 50 GB HDD, 1x IPv4. 3,89EUR/month. For the best VPS SQuote.de&lt;br /&gt;
* [http://www.vpsfast.us/germany-vps VPSFast] - VPS Provider with good prices in Germany.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Guatemala ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.globalnetcafe.com/gnc/menu/hospedaje.htm Global Net Cafe]: Servicios de hospedaje, reseller, vps, colocacion y servidores. Incluyendo OpenVZ.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Hong Kong ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [https://hostus.us HostUS] features unmanaged and managed OpenVZ VPS in Hong Kong as well as 3 USA locations. Unparalleled connectivity to the Asia Pacific. Enjoy 15% off with coupon VPS15OFF.&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides self-managed OpenVZ based SSD VPS in Hong Kong, located at the Pacnet datacenter. &lt;br /&gt;
* [http://vps.timway.com/linux_vps.html Timway VPS Hosting] - Quality, non-oversold hosting provider focused on being security conscious and offering a positive client experience.   Centos, Debian, Fedora, OpenSuse and Ubuntu Containers are available.&lt;br /&gt;
* [http://www.vpsfast.us/hong-kong-cloud-server VPSFast] - VPS Provider with good prices in Hong Kong.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Hungary ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://elin.hu/index.php?menu=8&amp;amp;nyelv=hu&amp;amp;cim=Virtualis-szerver Virtual server] OpenVZ server: 2xX5650 Intel Xeon, 32GB RAM, 15.000rpm SAS disks, 100Mbit/s, unlimited bandwith.&lt;br /&gt;
* [https://www.ivirtual.co/vps-hosting/ iVirtual.co ] OpenVZ Master Server: 2x Intel Xeon @ 3.0GHZ, 64 GB ECC Ram, 15k RPM SAS HDD's, 1Gbit/s Network, Unlimited bandwith.&lt;br /&gt;
&lt;br /&gt;
== Iceland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
&lt;br /&gt;
== Ireland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== India ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://cspacewebsolutions.com/ CSpace Web Solutions Pvt.Ltd] Mumbai Datacenter connected to DE-CIX India Hosted VPS based on OpenVZ (OVZ) 7 and OpenVZ (OVZ) 6.&lt;br /&gt;
* [https://cochinwebhost.in/budget-vps-hosting/ Low Cost VPS Hosting] Fast SSD VPS Server for Hosting Solutions at budget prices with 24x7 Technical Support.&lt;br /&gt;
* [https://www.cyberhost.in/ Cyberhost] - Affordable OpenVZ containers on high performance quality Servers. Wide choice of virtual dedicated servers with Full management available.&lt;br /&gt;
* [http://www.datacorporate.in/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
*[http://www.fastwebhost.in/vps-hosting.html fastwebhost VPS Hosting] VPS hosting offered by fastwebhost are powered by ''VPS hosting, virtual server hosting and Linux VPS hosting services''. Fully Managed VPS with control panels.&lt;br /&gt;
* [http://www.Freaksol.com/ Freaksol VPS Hosting] Self reliant hosted on independent networks &amp;amp; DC low ping to India,No restrictions on file types,Unlimited resources,high ram servers&lt;br /&gt;
* [https://www.geniushost.in Genius Host] Fully managed [https://www.geniushost.in SSD Web Hosting] offered by Genius Host are powered by ''OpenVZ'' With LiteSpeed Web Server &amp;amp; Mariadb.&lt;br /&gt;
* [http://www.hioxindia.com/virtual-private-server.php VPS Hosting] Reliable and quality VPS Virtual Private Server Hosting&lt;br /&gt;
* [http://www.hostitsmart.com/ Host IT Smart] - One of the best VPS Hosting Provider in India with 24X7X365 Customer support.&lt;br /&gt;
* [https://www.hostnamaste.com HostNamaste] is your high-performance [https://www.hostnamaste.com/openvz-vps.php OpenVZ VPS Hosting] Provider. Get your perfect [https://www.hostnamaste.com/openvz-vps.php VPS Hosting] account today! Available in [https://www.hostnamaste.com/datacenter-losangeles.php Los Angeles], [https://www.hostnamaste.com/datacenter-dallas.php Dallas], [https://www.hostnamaste.com/datacenter-jacksonville.php Jacksonville], USA,  [https://www.hostnamaste.com/datacenter-france.php France], Europe, [https://www.hostnamaste.com/datacenter-mumbai-pune.php Mumbai], India and [https://www.hostnamaste.com/openvz-vps-moscow-russia.php Moscow], Russia.&lt;br /&gt;
* [https://www.hostsoch.in/windows-hosting.html HostSoch Windows Hosting] Windows hosting offered by HostSoch are powered by ''Windows 2012, ASP.NET, MVC, IIS, PHP and More''. 99.9% Uptime, 24/7 Dedicated support guaranteed. &lt;br /&gt;
* [https://www.miditech.co.in/ MidiTech VPS Hosting] VPS hosting offered by MidiTech are powered by ''VMware, ''. Fully Managed VPS with control panels. &lt;br /&gt;
* [http://www.milesweb.com/vps-hosting.php Milesweb VPS Hosting] VPS hosting offered by Milesweb are powered by ''VMware, OpenVZ''. Fully Managed VPS with control panels. &lt;br /&gt;
* [https://www.nogics.com/web/vps-hosting/ Nogics Technologies] Instant provisioning of VPS, VPS starts from $5.96/mo. 30+ OS templates.&lt;br /&gt;
* [http://overlineindia.net/vpshosting-p-62.html Overline India VPS Hosting] Fully managed cPanel Installed VPS Hosting with 24x7x365 Live Chat Tech support, powered by OpenVZ&lt;br /&gt;
* [http://www.prohosterz.com/linux-vps.php ProHosterZ VPS Hosting] Reliable and quality Virtual Dedicated Servers | Virtual Private Servers | XEN VPS | OpenVZ VPS | Virtual Hosting&lt;br /&gt;
* [http://pve.proxmox.com/wiki/User:Apmuthu Ap.Muthu] sponsored by [http://www.gnuacademy.org GNUAcademy], [http://www.planettel.com.sg PlaNetTel] and [http://www.sacollege.net S A College] creates OpenVZ Templates for the Open Source Community and provides hosting in datacenters of clients choice or on site.&lt;br /&gt;
* [http://www.servers.co.in/vps/vps_hosting.php Server Web Hosting] Offers Fully Managed OpenVZ VPS Web hosting in India/US/UK at affordable and cheap rates with best hardware quality and customer service 24/7/365 days&lt;br /&gt;
* [http://touchstone.hosting/ Touchstone Solutions Private Limited] High-performance Enterprise VPS Hosting in India. One of the highest performing VPS Servers available with cPanel Installed.&lt;br /&gt;
* [http://vpsbeach.com VpsBeach Managed Hosting] Fully managed cPanel Installed VPS Hosting with 24x7x365 Live Chat Tech support, powered by OpenVZ&lt;br /&gt;
* [http://www.vpsfast.us/india-vps VPSFast] - VPS Provider with good prices in India.&lt;br /&gt;
* [http://www.vpshostingindia.net/ VPS Hosting India, Fully Managed Server] A Committed Fully Managed VPS Server for Hosting solution in India, Complete Technical Support assistance with commitment of fast, clustered and most supportive DataCenters.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [https://hostitbro.in/ HostItBro] - HostItBro does not compromise on speed. With us, you get the fastest loading websites.&lt;br /&gt;
* [https://hostingspell.com/ HostingSpell] - Hostingspell is a leading web hosting company in India and now serving over 40+ countries our the globe. We guarantee 99.9% uptime and 7 days full money-back guarantee so you can't go wrong :)&lt;br /&gt;
&lt;br /&gt;
== Indonesia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.herza.id/vps-murah/ Herza.ID] Low Cost OpenVZ Virtual Server, starting from IDR 50.000 / Month with RAID 10 SSD, Unlimited Bandwidth with 1 Gbps IIX &amp;amp; OIXP Connection, and 24/7 Technical Support.&lt;br /&gt;
* [https://www.kucingweb.co.id/hosting/vps/ Kucingweb Indonesia] High Performance VPS service with the best choice.&lt;br /&gt;
&lt;br /&gt;
== Iran==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.ehost.ir EHost.ir] - OpenVZ Servers , DUAL XEON Cpus , 12 Gb Ram , 100Mbit Dedicated Connection , SAS HardDisk&lt;br /&gt;
* [https://www.irpower.com IRPOWER Webhostings &amp;amp; Domain] - OpenVZ Servers Since 2005!&lt;br /&gt;
* [http://www.vpsfa.com VPSFa.com] - OpenVZ Servers , DUAL XEON Cpus -  , 24Gb Ram , 1000Mbit Dedicated Connection , SAS HardDisk&lt;br /&gt;
* [https://webramz.com Webramz Host] - With more than 15 years experience in Managed Hosting, Webramz was first vps provider in Iran which used to setup OpenVZ servers. Nowadays we provide wide range of services including CloudLinux based OpenVZ and Managed Vps Servers.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Italy ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
* [http://www.hosting-italia.net hosting italia] - OpenVZ Servers and panel enduser Virtualizor Intel® Core™ i7-920 Quad-Core 48 GB DDR3 RAM - Guaranteed Bandwidth 200 Mbit/s&lt;br /&gt;
* [http://www.vpsfast.us/italy-vps VPSFast] - VPS Provider with good prices in Italy.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Liechtenstein ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
&lt;br /&gt;
== Lithuania ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.cloudlix.com/ CloudLix.com] - Managed and unmanaged OpenVZ virtual servers based on 2.6.32 kernel. Up to 20GHz (Intel SandyBridge) CPU and 10GB RAM. Located in Vilnius and Siauliai.&lt;br /&gt;
* [http://www.databank.lt/ databank.lt] - high-quality professional OpenVZ hosting with cloud computing solutions.&lt;br /&gt;
* [https://www.hostens.com/vps-hosting/ Hostens] - Unmanaged VPS hosting for the great price: clear deals, no hidden conditions, quality service from the heart of Europe. &lt;br /&gt;
* [https://www.lavavps.lt/ lavavps.lt] - Professional high-quality OpenVZ containers (VPS servers) affordable for everyone. Powerful control panel for VPS management.&lt;br /&gt;
* [https://monovm.com/ monovm.com] - High Quality VPS Hosting Provider&lt;br /&gt;
* [http://www.serveriai.lt/ Serveriai.lt] - Affordable OpenVZ containers on quality HP hardware. Wide choice of virtual dedicated servers up to 8 CPU cores and 8 GB RAM. Full management available. Located in Vilnius.&lt;br /&gt;
* [https://www.time4vps.com/?affid=1359 Time4VPS] - Powerful cloud technology based infrastructure will let you build custom virtual machine and pay only for what you really need. Located in Vilnius city.(0.99€/month(2Yr) 512mbRAM, 1TB Traffic// 4.5€/month(2Yr) StorageVps, 1TB, 10TB Traffic)&lt;br /&gt;
* [https://www.vpsnet.lt/en/ VPSnet.lt] - Powerful and high quality servers for a competitive price in Lithuania (Eastern Europe).&lt;br /&gt;
* [http://www.vpsfast.us/lithuania-vps VPSFast] - VPS Provider with good prices in Lithuania.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Latvia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.altnet.lv/ Altnet] - Hosting and colocation services. Any flawor, you name it. &lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
&lt;br /&gt;
* [http://www.vpsfast.us/latvia-vps VPSFast] - VPS Provider with good prices in Latvia.&lt;br /&gt;
&lt;br /&gt;
== Luxembourg ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.vpsfast.us/luxembourg-vps VPSFast] - VPS Provider with good prices in Luxembourg.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Malaysia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.cubiex.com/ Cubiex] - Malaysia Affordable Web Hosting and Domain Name. Affordable Linux VPS Hosting in Malaysia. OpenVZ based, Quad Core Xeon node. cPanel/WHM and DirectAdmin also available.&lt;br /&gt;
* [https://controlvm.com ControlVM] ControlVM Sdn. Bhd. offering OpenVZ VPS in Singapore, Malaysia, USA and Germany.&lt;br /&gt;
* [https://www.yoorshop.fr/hosting-ssd-vps-singapore-asia.php YOORshop SAS] - High performance SSD Linux VPS In Singapore with daily backup included. Starting from €7,49 /month&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Malta ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.a6it.com/ A6iT] - Stable, quality managed OpenVZ VPSs based in Malta.  Redundant network.&lt;br /&gt;
&lt;br /&gt;
== Morocco ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.belsemtech.com/ BelsemTech.CoM] BelsemTech SARL offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from 300 DH. Virtual Private Server (VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://www.hostoweb.com/ HosToWeb] is the only company providing VPS hosting in Morocco Data Center.&lt;br /&gt;
* [http://www.adk-media.com/ ADK Media] provides affordable managed and unmanaged virtual servers based on OpenVZ, Xen Paravirtualization and Xen HVM platforms. 24/7 Technical Support. Distros: Centos, Fedora, Debian, Ubuntu and more.&lt;br /&gt;
* [http://www.naja7host.com/ Naja7Host.CoM] The Naja7host SARL provides affordable VPS hosting using the OpenVZ platform. Running on Full Quality Nodes of up to 8 CPU and 16 GB RAM. . All VPS's come with Real 24/7/365  Technical Support and cPanel free (if option selected  ). Multiple choice of OS 32/64Bits (Centos, fedora, ubuntu, debian .ect ...)&lt;br /&gt;
* [http://www.lehoster.com/ Le Hoster] offers affordable Virtual Private Servers using the OpenVZ and KVM platform. Backed with our amazing customer support.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Netherlands ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.avanpad.com/ Avanpad] offers OpenVZ VPS hosting with 24\7 online support. Customer can request different control panels or templates for installation on his VPS.&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in Netherlands from 1.88EUR/month.&lt;br /&gt;
* [https://cspacehostings.com CSpace Hostings] Amsterdam, Netherlands Hosted SSD and Storage VPS based on OpenVZ (OVZ) 7.&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
* [http://www.Freaksol.com/ FreaKs VPS Hosting] Self reliant hosted on independent networks &amp;amp; DC low ping around the world,No restrictions on file types,Unlimited resources,high ram servers&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [http://www.HostSailor.com/ HostSailor] Number 1 Netherlands Provider HostSailor provides affordable &amp;amp; high quality services such as VPS (XEN, OpenVZ and KVM) Linux or Windows, Dedicated servers, SSL certificates and domain name services.&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides self-managed OpenVZ SSD VPS in Telecity AMS 5, one of the best datacenters located in the Amsterdam area.&lt;br /&gt;
* [https://iniz.com/ INIZ VPS Hosting] INIZ provides affordable VPS Hosting in Amsterdam, Netherlands with high resources at low prices.&lt;br /&gt;
* [https://www.liteserver.nl/ LiteServer] Looking for a quality and affordable VPS in the center of The Netherlands? We provide SSD, Storage and High Bandwidth VPSes, starting at only €16 per year. We operate AS60404.&lt;br /&gt;
* [https://www.mangelot-hosting.nl/ Mangelot Hosting] Mangelot Hosting, A webhosting company located in the Netherlands, offers budget OpenVZ hosting solutions for maximum scalability en performance.&lt;br /&gt;
* [http://www.osbox.nl OsBoX Dutch Network Engineering] Cheap VPS host as low as $1 per month. Very great uptime and a overall good support. Check the website for the server plans.&lt;br /&gt;
* [https://www.scopehosts.com/openvz-vps/netherlands-vps ScopeHosts.Com] - ScopeHosts Provides OpenVZ VPS in Netherlands, Amsterdam Powered with Pure SSD, 1Gbps Uplink, DDOS Protection, Self-Managed and Managed VPS Solutions&lt;br /&gt;
* [http://www.signet.nl/ Signet VPS Hosting] - Signet delivers VPS hosting plans based on CentOS or Debian templates, including control-panel Virtualmin.&lt;br /&gt;
* [http://simple-webhosting.eu/ Simple-webhosting.eu] - OpenVZ based web hosting starting from €0.98 per month.&lt;br /&gt;
* [https://www.seedvps.com SeedVPS] Provides Powerful &amp;amp; Reliable OVZ/KVM VPS Hosting in The Netherlands&lt;br /&gt;
* [http://www.touchvps.com/ TouchVPS] is a company who offer Support and Managed Services for OpenVZ Servers ,also offer templates for openvz ready to go with cPanel , DirectAdmin , Plesk , Games, IRC Services, Desktop and many more.&lt;br /&gt;
* [https://www.totallyhosted.nl/ TotallyHosted] OpenVZ based Premium VPS services located in the Netherlands @ Serverius DC.&lt;br /&gt;
* [https://undergroundprivate.com/russiaoffshorevps.html  UndergroundPrivate.com] - OpenVZ with highly privacy, offshore , DMCA ignored , high confidence, SolusVM and cPanel, managed and non managed service.&lt;br /&gt;
* [http://www.voipcomplete.com/product-overview/dedicated-vps.html VOIPcomplete] offers dedicated VPS plans based on CentOS including a VPS management interface.&lt;br /&gt;
* [http://www.vpsfast.us/netherlands-vps VPSFast] - VPS Provider with good prices in Netherlands.&lt;br /&gt;
* [https://www.vps9.net/netherlands-vps VPS9.NET] - VPS9 OpenVZ Nodes are located in Naaldwijk, Netherlands. We provide OpenVZ VPS Services at very a affordable cost, powered with 20x Faster SSD on RAID-10 Partition.&lt;br /&gt;
* [https://www.waveride.at/ Waveride] Waveride, an EDIS company, offers budget full gigabit OpenVZ + solusVM VPS in Austria, USA and the Netherlands&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Norway ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.vpsfast.us/norway-vps VPSFast] - VPS Provider with good prices in Norway.&lt;br /&gt;
&lt;br /&gt;
== Pakistan ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://vimzaa.com/ Vimzaa] The best hosting in Pakistan.&lt;br /&gt;
&lt;br /&gt;
== Philippines ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.web.com.ph/vps.php Web.com.ph] - provides OpenVZ virtual servers in the Philippines.&lt;br /&gt;
&lt;br /&gt;
== Perú ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.hn.pe/ Hostname] Hostname offers business OpenVZ containers in Perú&lt;br /&gt;
* [http://www.hostingandino.pe/ Hostingandino Lima - Peru] - VPS with OpenVZ in Peru&lt;br /&gt;
* [http://www.hostingplus.pe/ HostingPlus Internet Limitada] - High Performance Vps provider in Peru&lt;br /&gt;
* [https://www.hostingroup.com/ Hostingroup] Web hosting for small businness in Perú.&lt;br /&gt;
* [https://hostingweb.pe/ Hosting Web] The best hosting in PERU.&lt;br /&gt;
* [https://www.inchosting.pe/ HostingINC SAC] OpenVZ virtualization solutions for business in Perú.&lt;br /&gt;
* [https://www.mejorhosting.pe/ Mejor Hosting Perú] Hosting comparison for peruvian hosting providers.&lt;br /&gt;
* [https://webuniversal.pe/ Web Universal] The best hosting in PERU in the World.&lt;br /&gt;
* [https://alojamientoplus.com/ AlojamientoPlus] Best Hosting and server in Perú.&lt;br /&gt;
&lt;br /&gt;
== Poland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://hosteam.pl/ HosTeam] offers OpenVZ VPS hosting from their DataCenter in Poland. Customer has choice of all major Linux distros (WARNING!!! restoring your backup is VERY expensive and they charge even if it wasn't restored correctly!), NATIVE IPV6 AVAILABLE!&lt;br /&gt;
&lt;br /&gt;
* [http://ultimahost.pl/ UltimaHost] high grade OpenVZ VPS and FreeBSD jail (DC in Łódź, Poland), brand of statnet.pl, SSD available for more expensive packets, NO IPV6 AVAILABLE (but they can load you tun module)&lt;br /&gt;
&lt;br /&gt;
* [http://budgetvps.pl/ BudgetVPS] very cheap, low end grade OpenVZ VPSes (DC in Gdańsk, Poland), brand of HitMe.pl&lt;br /&gt;
&lt;br /&gt;
* [https://hitme.pl/ HitMe.pl] high grade OpenVZ/Xen PV/Xen HVM VPSes, Virtuozzo (DC in Gdańsk, Poland), NATIVE IPV6 AVAILABLE (/64 on demand for free)!&lt;br /&gt;
&lt;br /&gt;
* [http://www.kr-cpd.pl/oferta/serwery-vps/ KR-CPD] Cracow's Center of Data Processing (DC of course in Cracow, Poland)&lt;br /&gt;
&lt;br /&gt;
* [http://livenet.pl Livenet] cheap, middle/low end OpenVZ VPSes (DC in Łódź, Poland)&lt;br /&gt;
&lt;br /&gt;
* [http://slaskdatacenter.pl/ Śląsk Data Center] high/middle grade OpenVZ VPSes (DC in Silesia province, Poland), SSD available for more expensive packets&lt;br /&gt;
&lt;br /&gt;
* [https://www.ionic.pl/ IONIC.pl] VPS OpenVZ with SolusVM control panel, own DC in Cracow&lt;br /&gt;
&lt;br /&gt;
* [https://microvps.pl/ MicroVPS.pl] Middle And low end OpenVZv7 VPS plans. SSD for regular VPS and HHD for storage plans (up to 1TB)&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Portugal ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.ptservidor.pt/ PTServidor] - OpenVZ virtual servers with free management based in Portugal.&lt;br /&gt;
* [http://www.efeito.net/ Weblevel.pt] - OpenVZ virtual servers based in Portugal.&lt;br /&gt;
* [https://www.webtuga.pt/ WebTuga] - Managed/Unmanaged Virtual Private Servers hosted in a Portuguese Datacenter with lots of extras&lt;br /&gt;
* [https://www.cloudfire.pt/ CloudFire] - OpenVZ VPS at very low prices hosted in Portugal&lt;br /&gt;
* [https://www.linxisp.com/ LINXISP] - High Availability &amp;amp; Performance OpenVZ Containers&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] - Build an OpenVZ VPS in 14 locations WordWide From £2.49&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Romania ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://b3hosting.ro/ B3 Hosting] - top Romanian hosting company offering managed/unmanaged OpenVz virtual servers based in Bucharest, Romania, Germany, Netherlands and UK for top prices&lt;br /&gt;
* [http://www.intovps.com IntoVPS] - offers unmanaged OpenVZ virtual servers based in Romania, Netherlands and USA. A lot of resources for decent prices.&lt;br /&gt;
* [http://www.ename.ro/dedicated.html eName] - managed OpenVZ virtual servers in Bucharest, Romania&lt;br /&gt;
* [http://www.ch-center.com/virtual-servers Ch-center] - unmanaged OpenVZ virtual servers, based in Romania in it's own Data Center&lt;br /&gt;
* [http://www.clouds.ro/servere-virtuale/ Clouds] - OpenVZ virtual servers hosted on premium hardware, in Romania&lt;br /&gt;
* [http://www.HostSailor.com/ HostSailor] HostSailor provides affordable &amp;amp; high quality OpenVZ and KVM servers in Romania&lt;br /&gt;
* [https://www.shape.host/linux-vps/ Linux VPS] - OpenVZ virtual servers, Instant Linux VPS&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [https://bmfhost.com/nvme-ssd-vps/ BMF Host] - NVMe SSD VPS, Starting from  €12/month Unlimited traffic. A high-performance VPS Romanian hosting&lt;br /&gt;
&lt;br /&gt;
== Russia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.internoc24.host Internoc24.HOST] is an international [https://www.www.internoc24.host Offshore VPS ] provider with reliable SSD VPS in Moscow, Russia. Focus ist on high privacy protection so they accept several Cryptocurrencies like Bitcoin, Ethereum and others for anonymous payments.&lt;br /&gt;
* [http://www.ihc.ru/vps.html IHC.RU] - VPS hosting in Moscow, Russia starting at $10/month with good set of precreated templates&lt;br /&gt;
* [http://mchost.ru/services/linux-vps/ McHost.ru] - Linux VDS Hosting from McHost.&lt;br /&gt;
* [http://hosting.agava.ru/vps/ AGAVA] - Linux VPS hosting based on OpenVZ.&lt;br /&gt;
* [http://vdsplanet.ru/ VDSPlanet.ru] - unmanaged VDS/VPS hosting starting at 3.99$ a month. Large variety of OS templates and free ISPmanager Lite control panel. Total automation is our goal.&lt;br /&gt;
* [http://www.demos.ru/service/datacenter/vps.html Demos-Internet] - we offer OpenVZ Virtual Private Server based on Linux.  All VPS come with ISPmanager control panel.&lt;br /&gt;
* [http://www.net.ru/service/net9/ www.net.ru] - OpenVZ virtual private servers.&lt;br /&gt;
* [http://www.eurobyte.ru/ Eurobyte.ru] - Linux VDS Hosting from Eurobyte.&lt;br /&gt;
* [https://undergroundprivate.com/russiaoffshorevps.html  UndergroundPrivate.com] - OpenVZ with highly privacy, offshore , DMCA ignored , high confidence, SolusVM and cPanel, managed and non managed service.&lt;br /&gt;
* [http://www.telekom.ru/service/vps.html Elvis Telekom] - OpenVZ hosting with base and cpanel templates from Elvis Telekom.&lt;br /&gt;
* [http://fastvps.ru/vds/ FastVPS] - OpenVZ hosting, ISPmanager, Hetzner, MayFlower.&lt;br /&gt;
* [https://lepus.su/vps.html Lepus] - OpenVZ hosting, SSD, ISPmanager free, Hetzner.&lt;br /&gt;
* [http://www.hts.ru/vds/ HTS] - OpenVZ hosting, ISPmanager, Linux VPS hosting based on OpenVZ in Moscow.&lt;br /&gt;
* [https://selectel.ru/services/vds/ Selectel] - OpenVZ hosting.&lt;br /&gt;
* [https://galaxydata.ru/root-server/ GalaxyData] - Virtuozzo Containers in Cloud Storage.&lt;br /&gt;
* [http://hosterbox.ru/servers/ Hosterbox.ru] - Managed VPS hosting. Based on OpenVZ + SolusVM + ISPmanager.&lt;br /&gt;
* [https://firstvds.ru FirstVDS.ru] - One of the leading hosting companies providing virtual private servers.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Singapore ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://conceptlane.com/?t=hostingservices#ratesvps ConceptLane Pte Ltd] - OpenVZ VPS on dual octa-core AMD Opterons running Debian Wheezy 7, custom control panel with bandwidth graphs, reboot/reinit and web-based VNC access.&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [http://www.qoxy.com/vps QOXY.com] Affordable and Reliable OpenVZ VPS Hosting in a Singapore Data Center.&lt;br /&gt;
* [http://www.secureax.com/ SecureAX Pte Ltd] - Singapore Premium Internet Solution Provider&lt;br /&gt;
* [http://www.planettel.com.sg PlaNetTel] - Affordable and customised OpenVZ containers across 3 data centers - contact Thomas Festus at +65-66936881. [http://pve.proxmox.com/wiki/User:Apmuthu#Squeeze_based_Templates Sponsors OpenVZ Container Template]s for the Open Source community.&lt;br /&gt;
* [http://www.vpsfast.us/singapore-vps VPSFast] - VPS Provider with good prices in Singapore.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Serbia ==&lt;br /&gt;
* [https://www.skyhosting.rs/en/vps-servers SkyHosting] - Fast Linux OpenVZ VPS SSD Hosting with SolusVM control panel.&lt;br /&gt;
* [https://www.ninet.rs/en/vps-servers NiNet Company] - Linux OpenVZ VPS servers. Well known VPS hosting company from Serbia with their own data center&lt;br /&gt;
* [http://www.suonline.net SuOnline.Net ISP] - Linux OpenVZ VPS servers, Docker enabled !!!&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== South Africa ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.host1plus.com/ Host1Plus] - Local South African servers hosted in Johannesburg. OpenVZ VPS servers starting from $3.00 per month.&lt;br /&gt;
* [http://www.vps.co.za/ VPS.CO.ZA] - South Africa's oldest VPS provider. Local South African servers with SolusVM control panel. OpenVZ, Xen and OnApp Cloud.&lt;br /&gt;
* [http://247hosting.co.za/vpshosting.php 247Hosting] - OpenVZ virtual servers locally in South Africa with SolusVM control panel. cPanel option available!&lt;br /&gt;
* [http://www.SoftDux.co.za/ SoftDux] - OpenVZ virtual servers based America &amp;amp; South Africa. All VPS's come with cPanel or Plesk control panels. XEN VPS's also available.&lt;br /&gt;
* [http://www.clickworks.co.za/ Clickworks] - OpenVZ / Xen VPS servers hosted in RSA. Backed by Solusvm control panel.&lt;br /&gt;
* [http://www.elitehost.co.za/ Elite Host] - OpenVZ virtual servers based in America &amp;amp; South Africa. All VPS's come with cPanel and unlimited bandwidth.&lt;br /&gt;
* [http://www.telasera.com/ Telasera] - OpenVZ VPS servers hosted in South Africa. Supermicro Servers powered by Intel Xeon with 24/7 Support.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Spain ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.corpresa.com/servidores-virtuales.html Corpresa Hosting] - Tiene algún proyecto entre manos y un plan de hosting no le hes sufuciente y un servidor dedicado no está dentro de su presupuesto?, una solución de VPS a medida será la que cubrirá todas sus necesidades.&amp;quot;&lt;br /&gt;
* [https://www.datomedia.es Datomedia] - Cloud alta disponibilidad powered by Virtuozzo 6 y Servidores VPS bajo openvz y kvm.&lt;br /&gt;
* [https://www.evidaliahost.com/vps/ EvidaliaHosting] - Servidores VPS totalmente configurados con panel de gestión Plesk 12.5, garantía de devolución de 30 días y posibilidad de discos SSD.&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
* [https://ginernet.com/vps-ssd.php GINERNET] - Servidores VPS alojados en España desde 1.99€/mes.&lt;br /&gt;
* [https://www.hostingplus.com.es Hosting Plus España] provide OpenVZ containers at our own datacenter. Starting from us20/month RAID 10 SSD.&lt;br /&gt;
* [https://www.somtecnologia.com/ Som Tecnologia] - OpenVZ/6 , containers up to Debian 9&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Sweden ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.admax.se/vps/ Admax] - Admax offers enterprise grade virtual servers with great pricing. Custom control panel, API, remote access &amp;amp; more.&lt;br /&gt;
* [https://www.acon.se/vps Acon VPS Server] - VPS Server and Dedicated server provider in Sweden.&lt;br /&gt;
* [https://www.glesys.com/vps.php GleSYS] - VPS Provider with a great control panel and good prices&lt;br /&gt;
* [https://cspacehostings.com CSpace Hostings] Stockholm, Sweden Hosted SSD and Storage VPS based on OpenVZ (OVZ) 7.&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides the highest quality SSD VPS in Stockholm, Sweden. Based on completely pure SSD in RAID-10 and delivering extremely high network &amp;amp; hardware performance along with reliability.&lt;br /&gt;
* [https://www.nametyper.com NameTyper] - VPS and Shared hosting provider. Customize your own OpenVZ Container with 1-12 cores running on SSD and ECC RAM. &lt;br /&gt;
* [https://virtualcenter.se VirtualCenter] - The first Cloud provider with SSD VPS in Sweden. Offer enterprise class hardware and network infrastructure&lt;br /&gt;
* [http://www.vpsfast.us/sweden-vps VPSFast] - VPS Provider with good prices in Sweden.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Switzerland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
* [http://www.vpsfast.us/switzerland-vps VPSFast] - VPS Provider with good prices in Switzerland.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Tanzania==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.aptus.co.tz/ Aptus Solutions] - OpenVZ / SolusVM VPS Servers located in Dar es Salaam - 100meg to TIX. CentOS &amp;amp; Ubuntu.&lt;br /&gt;
&lt;br /&gt;
== UK ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.34sp.com/ 34SP.com] - We're a UK based web hosting company, bridging the gap between sophisticated hosting solutions &amp;amp; affordable prices&lt;br /&gt;
* [http://www.AceShells.com/ AceShells] - Fast, stable, high quality UK based virtual private servers from just £5 a month, operating since 2001&lt;br /&gt;
* [http://www.AtlanticServers.com/ Atlantic Servers] - Affordable VPS, stable, high quality VPS, UK based Data Centre&lt;br /&gt;
* [https://awebhosting.uk/ AWebHosting.uk] VPS hosting offered by [https://awebsolutions.uk/ AWEBSOLUTIONS LIMITED] reliable UK hosting provider located in London, UK and Hosted in UK DataCentre.&lt;br /&gt;
* [http://www.BargainVPS.co.uk/ BargainVPS] - UK / US / EU Instant setup VPS - We have some great Linux &amp;amp; Windows Bargain VPS packages on offer for you here all available Fully Managed.&lt;br /&gt;
* [http://www.cheapvps.co.uk/ CheapVPS] - CheapVPS provide cheap, UK based OpenVZ VPS servers. Hosted on high end hardware, in a top UK datacenter backed up with 24/7/365 support. Choice from a wide range of Linux distros. OpenVZ VPS managed with SolusVM.&lt;br /&gt;
* [http://www.chilliserver.com/ Chilliserver] - Affordable plans starting from just £3.99, not oversold. RHEL6 Kernel with VSwap, TUN/TAP/FUSE and ACL support enabled. SolusVM control panel with custom snapshot system and rescue system. Based in a European data Centre with UK based support.&lt;br /&gt;
* [http://www.chvps.com/ CHVPS] - Switzerland Based VPS, Cheap Pricing with solusVM control panel.&lt;br /&gt;
* [http://www.cislondon.co.uk/virtual-private-servers/ Commercial Internet Solutions] - CIS provides premium hosting at competitive rates, focused on Small Businesses within the M25 orbital. Hosting is on Dual Quad core Intel Xeon supermicro servers in Tier 4 datacenters around London.&lt;br /&gt;
* [http://www.datacorporate.co.uk/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [http://domvps.com/ domVPS] - OpenVZ Virtual Servers in the USA, Germany, France &amp;amp; the Netherlands at a low cost.&lt;br /&gt;
* [http://www.DubHosting.co.uk/ DubHosting] - DubHosting started in 2004 has been providing cost effective hosting to clients world wide. Fully managed OpenVZ servers based in Europe &amp;amp; US are one of their many strong points. They can provide you with a dedicated server and install openvz allowing you to sell your own vps servers. Their servers are located at UKGrid in Manchester with 24/7/365 support&lt;br /&gt;
* [http://www.europhase.net/virtual-private-servers/ Europhase UK Limited, UK VPS] - OpenVZ VPS Hosting, Virtual Dedicated Servers, UK VPS hosted at multiple UK datacentres from £4.99&lt;br /&gt;
* [https://farbyte.uk/vps Farbyte VPS] - UK based OpenVZ VPS and shared web hosting services&lt;br /&gt;
* [http://www.fdqwholesale.co.uk FDQ Wholesale] - UK based hosting services&lt;br /&gt;
* [http://www.gemvps.net/ GemVPS.NET] - UK (Manchester) Based Company, OpenVZ Virtual Servers in the UK &amp;amp; France on Fast nodes.&lt;br /&gt;
* [http://www.hadrill.org.uk Hadrill Online] - Fully managed hosting with unlimited bandwidth. Quotes available through contact form.&lt;br /&gt;
* [http://www.infrenion.com./uk_vps_hosting.html Infrenion Networks UK] Cheap, economical and reliable web hosting solutions, VPS based on the openVZ platform. You can host any YouTube Clone scripts with free FFMPEG setup on our vps servers. Also offers with a choice of selecting DataCenter.&lt;br /&gt;
* [https://www.laws-hosting.co.uk/vps-hosting.php Laws Web Hosting] - Laws Web Hosting offers OpenVZ VPS Hosting with packages starting from £5.50/m that will cater for anyone. We have OpenVZ VPS hosting solutions, and come with moderate DDoS protection.&lt;br /&gt;
* [http://www.letstalkdigital.com/index.php?option=com_content&amp;amp;view=article&amp;amp;id=73&amp;amp;Itemid=65 LetsTalkDigital VPS Hosting] - LetsTalkDigital.com offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from $14.99. Virtual Private Server(VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://www.meteorvps.com/ MeteorVPS] - Professional, Non-Oversold amazing VPS plans pretty cheap using SolusVM management, range from 512MB -&amp;gt; 16GB&lt;br /&gt;
* [http://www.minivps.co.uk miniVPS] miniVPS offers VPS hosting solutions with nodes located in UK, utilising openvz/solusvm with future locations of USA and UK. &lt;br /&gt;
* [https://www.first2host.co.uk First2Host Cheap VPS] - Intel Xeon E5-2630v3 OpenVZ VPS Servers. Don't be defined by a pre-made VPS plan. Create your own VPS Plan by assigning the resources that you require. SATA, SSD or NVMe storage 100 MBPS, 250 MBPS, 500 MBPS, 1GBPS speeds and free cPanel licenses.&lt;br /&gt;
* [http://www.phurix.co.uk/ Phurix] - A UK based web solutions company that provides you with reliable hosting at extremely affordable prices, VPS server virtualization using OpenVZ.&lt;br /&gt;
* [http://www.qualityservers.co.uk Quality Servers] - Affordable OpenVZ virtual servers based in the UK and USA. Choice of control panels and management options.&lt;br /&gt;
* [http://www.rackburst.net/ Rackburst] - UK SSD VPS Hosting with fast UK-based Live Support available from £1.49 per month.&lt;br /&gt;
* [http://www.rshosting.co.uk/vps.html RSHosting UK] - Offering the most secure, reliable, stable and fast UK VPS Web Hosting based on OpenVZ architecture. Our Virtual Dedicated Servers are physically hosted on powerfull Quad Core servers located in multiple UK datacentres.&lt;br /&gt;
* [http://www.sharkserve.rs SharkServers] - Low Cost OpenVZ virtual servers in the UK. Choice of control panels and management options. Own Datacentre.&lt;br /&gt;
* [https://www.ukhost4u.com/ UKHost4u] - A leading provider of VPS solutions for over 19 years!&lt;br /&gt;
* [http://www.vpsfast.us/united-kingdom-vps VPSFast] - VPS Provider with good prices in UK.&lt;br /&gt;
* [http://www.vpsmachine.co.uk/ vpsMachine] Quality openvz hosting platform with a large choice of customer OS templates.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [https://www.webhostuk.co.uk/vps-hosting.html WebHostUK LTD] - Offers Cheap yet Best UK VPS Web Hosting working on OpenVZ Platform.We offers fully Managed UK VPS with true 24/7/365 days support.All our Servers are located in UK London DC.&lt;br /&gt;
* [http://www.webhostinguk.com/vps/vps-hosting.html Web Hosting UK] - Fully managed OpenVZ VPS Hosting offered on fast and reliable and affordable servers in UK &amp;amp; European datacenter with 24x7x365 days lightning fast support.&lt;br /&gt;
* [http://www.weycrest.co.uk/vps-hosting.php Weycrest VPS] - Low Cost, Stable OpenVZ and Parallels' Virtuozzo Virtual Private Server solutions. London UK Hosted at Coreix with a choice of operating systems, and root and control panel options.&lt;br /&gt;
* [http://www.xilo.net/virtual_private_servers-vps/ XILO] - UK-based hosting with UK-based support. VPS services offered with a choice of cPanel, Webmin and other useful applications, VoIP, SIP, VPN to name a few.&lt;br /&gt;
* [http://www.zxvps.co.uk/ ZxVPS VPS Hosting] - Quality, non-oversold VPS based on the openVZ platform, using SolusVM management panel, VPS from 128mb - 2gb, cpanel, direct admin, kloxo, etc.&lt;br /&gt;
&lt;br /&gt;
== Ukraine ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://ekvia.com/ Ekvia] - VDS/VPS based on OpenVZ. Free trial 14 days. Domain registration for VDS/VPS.&lt;br /&gt;
* [http://www.gelihost.com/ Geliar Hosting Solutions] - Fast virtual dedicated servers based on OpenVZ. Geliar Hosting Solutions offering many control panels and other useful services.&lt;br /&gt;
* [http://www.hostpro.ua/ Hostpro.ua] - Full managed OpenVZ servers.&lt;br /&gt;
* [http://www.vpsfast.us/ukraine-vps VPSFast] - VPS Provider with good prices in Ukraine.&lt;br /&gt;
&lt;br /&gt;
== USA ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.a2hosting.com A2 Hosting] is your high-performance [http://a2hosting.com/openvz-vps-hosting OpenVZ VPS Hosting] provider. Design your perfect [http://a2hosting.com/vps-hosting VPS Hosting] account today! Featuring SwiftServers and SSDs with page load speeds up to 300% faster compared to standard drives.&lt;br /&gt;
* [http://www.afterburst.com Afterburst] (Previously FanaticalVPS): affordable unmetered, unmanaged VPS servers in NY.&lt;br /&gt;
* [https://www.asurahosting.com/ AsuraHosting] offers powerful, reliable, and simple OpenVZ VPS to clients. AsuraHosting has a dedicated support team, and quality hosting; Pricing starts at just $5/month!&lt;br /&gt;
* [http://beyondhosting.net BeyondHosting.net] High Performance OpenVZ Virtual Private Servers (VPS)  Tier 1 US Datacenter.&lt;br /&gt;
* [http://buyvm.net BuyVM.net] DDoS Protection, three datacenter locations, Stallion control panel. Affordable quality VPS hosting since 2010!&lt;br /&gt;
* [https://www.binarycpu.com Binary Computer Solutions] has provided OpenVZ based Virtual Private Server hosting for over 5 years.  Network outages are a thing of the past, and oversold services are never heard of here.  Built on solid technology, with infrastructure to match - Binary Computer Solutions will give you hosting you need, without the cost others ask for.  Starting at $30.00/mo.&lt;br /&gt;
* [http://www.bodhost.com/ Bodhost.com] Fast, Reliable and secure web hosting service with 24*7 free customer service.&lt;br /&gt;
* [http://www.buildyourvps.com/ BuildYourVPS.com] mix ‘n’ match your VPS; choose only the bandwidth, RAM, disk capacity, type of IP connection, level server redundancy, and the support/monitoring you want. [http://www.buildyourvps.com/ BuildYourVPS] is the 1st to offer you a highly-customized VPS solution, without making you pay for unused extra features.&lt;br /&gt;
* [https://www.budgetvm.com/openvz-linux-vps.php BudgetVM.com] Each server includes our industry-leading SLA, DDoS protection, 200Gbps networks and 7 * 24-hour customer support.&lt;br /&gt;
* [http://www.byethost.com Byethost.com] offers OpenVZ based VPS Hosting as its main VPS solution, with the hypervm panel. Centos, Debian, Fedora, OpenSuse and Ubuntu Containers are available.&lt;br /&gt;
* [http://cheaperasp.net CheaperASP.Net] provides Quality web hosting on the OpenVZ platform. You also help you get best options at [http://cheaperasp.net/godaddy-1-hosting-free-domain-promo/ affordable] cost.&lt;br /&gt;
* [http://www.chhost.net/vps.htm CH Hosting VPS Hosting] CH Hosting or chhost.net offers OpenVZ based VPS Hosting. 24/7 Support. Upgrade/Downgrade your plan as needed on-the-fly without the risk of downtime. Since 2006. Non-Oversell&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in USA from 1.88EUR/month.&lt;br /&gt;
* [http://www.cloudshards.com Cloud Shards] High Performance, reliable, stable and affordable OpenVZ Virtual Private Servers (VPS) in data centers across the USA.&lt;br /&gt;
* [https://cloudgearhosting.com CloudGear Hosting] - offers OpenVZ hosting in 4 locations across the USA. Including free DDoS Protection and free SSL with cPanel.&lt;br /&gt;
* [https://cspacehostings.com CSpace Hostings LLC] Dallas,TX US Hosted SSD and Storage VPS based on OpenVZ (OVZ) 7.&lt;br /&gt;
* [http://www.datacorporate.com/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [https://www.delimiter.com/storage-vps/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [https://www.cheapdomainnamesdot.com Domain Host SSL] provides Reliable web hosting with OpenVZ platform Since 2003, Located New York city, Atlanta, Los Angeles. &lt;br /&gt;
* [http://www.DubHosting.com/ DubHosting] - DubHosting started in 2004 has been providing cost effective hosting to clients world wide. Fully managed OpenVZ servers based in Europe &amp;amp; US are one of their many strong points. They can provide you with a dedicated server and install openvz allowing you to sell your own vps servers.&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
* [http://www.ethernetservers.com/ Ethernet Servers] A leading provider of OpenVZ Virtual Servers in Los Angeles, Miami and Buffalo with SolusVM.&lt;br /&gt;
* [http://www.evolucix.com/ Evolucix.com] Evolucix offers state of the art, professional, and reliable OpenVZ VPS solutions on top-notch hardware while providing quality support.&lt;br /&gt;
* [http://www.evolvedservers.com Evolvedservers.com] Openvz based vps servers. Hosted in Michigan, USA. 24/7 Support. Hosted in tier-3 and tier-4 datacenter's with multiple redundancies.&lt;br /&gt;
* [http://fastwebhost.com/vps-hosting.html Fastwebhost]: affordable cloud VPS servers using OpenVZ. &lt;br /&gt;
* [http://www.fliphost.net Fliphost.net]: Powerful, affordable instant setup VPS systems. Servers based in Phoenix Az with another location coming soon.&lt;br /&gt;
* [http://www.frontrangehosting.com Front Range Hosting]: SSD Cached KVM &amp;amp; OpenVZ VPS Hosting Prices Start at 2.00/mo, located in Colorado Springs, Colorado.&lt;br /&gt;
* [http://glesys.se GleSYS] is a hosting company specialized in serverhosting. Also offering VPS hosting mainly based on OpenVZ. GleSYS has provided access to server and Cisco hardware for developers from OpenVZ to find problem with VLAN implementation.&lt;br /&gt;
* [http://goodealhosting.com/ GOODEALHOSTING.com] Quality Hosting Solutions! Provides affordable unmanaged/managed VPS based on OpenVZ! start from $10.00, real 24/7 support.&lt;br /&gt;
* [http://gothost.net GotHost.net] Providing OpenVZ based VPS Hosting with SolusVM. All nodes are Quad Core Xeon with RAID-10 for speed and redundancy. Budget plans starting at $7.99.&lt;br /&gt;
* [http://www.greengeeks.com/ GreenGeeks Hosting] VPS Hosting. Dual Intel Xeon 64-Bit CPU's, DDR3 RAM, RAID-10 SSD Storage Arrays. 24/7 Support. cPanel/WHM + more!&lt;br /&gt;
* [http://hostarmor.com HostArmor™] - is best known for low-cost and reliable shared hosting and dedicated servers. Recently the company expanded to offer OpenVZ virtual server plans at 8 worldwide locations, five in the U.S., one in Germany, one in France, and one in the Netherlands. VPS plans start at $13.99/month.&lt;br /&gt;
* [http://www.host4geeks.com Host4Geeks] - Host4Geeks is a premium Fully Managed VPS provider with datacenters across 2 locations in US and in UK. All servers offer a free cPanel license.&lt;br /&gt;
* [http://www.host1plus.com Host1Plus] - OpenVZ based virtual servers in Chicago and Los Angeles. VPS plans start at $2.00 per month.&lt;br /&gt;
* [http://www.hostavps.com HostAVPS] - Providing Fully Managed VPS's on both the West &amp;amp; East Coast.&lt;br /&gt;
* [https://www.hostcapitol.com Host Capitol] offers fast and reliable web hosting services, including OpenVZ VPS Hosting, to clients ranging from small businesses to corporations. Located in Piscataway, New Jersey.&lt;br /&gt;
* [http://www.hostcolor.com Host Color] - OpenVZ based virtual servers hosted in a Tier 4 class data center based out of South Bend, Indiana. Juniper managed, fully-redundant network with uplinks to Level 3, Cogent and Internap.&lt;br /&gt;
* [https://www.hostgalaxy.com HostGalaxy] - OpenVZ based virtual servers. The fastest hosting in the Galaxy!&lt;br /&gt;
* [http://www.hostigation.com Hostigation] - High resource unmanage VPS hosting solutions.&lt;br /&gt;
* [http://www.hostingrails.com Hosting Rails] offers Rails-targeted OpenVZ VPS Hosting and updated Rails-ready OS images.&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [http://www.hostmist.com Host Mist] features budget OpenVZ VPS hosting from four major cities across the US.&lt;br /&gt;
* [http://www.hostrush.com HostRush] Self managed, ssd vps for business and non business. &lt;br /&gt;
* [http://www.dailyhosting.net hostoople] We offer OpenVZ VPS hosting from Dallas Texas, Starting at $29.95/month &lt;br /&gt;
* [https://hostus.us HostUS] provides unmanaged and managed OpenVZ VPS in Atlanta, Dallas and Los Angeles with custom control panel. A large variety of Linux distros are available. Enjoy 15% off with coupon VPS15OFF.&lt;br /&gt;
* [https://www.hostwinds.com Hostwinds] Affordable managed/unmanaged VPS Solutions.&lt;br /&gt;
* [http://hostsia.com Hostsia] With HOSTSIA Web services, you can get an OpenVZ VPS for only $15.00/mo. Each OpenVZ VPS includes multiple free-of-charge bonuses and offers a 99.9% uptime guarantee. You can also use our charge-free Hepsia CP, which is available with each OS – it permits you to host an unmetered number of domains and comprises heaps of handy tools, which will help you better manage your site and your VPS web hosting account.&lt;br /&gt;
* [http://www.infrenion.com./vps_hosting.html Infrenion Networks] Cheap, reliable and secure VPS hosting solutions, based on the openVZ platform. You can host any YouTube Clone scripts with enhanced support quality round the clock.&lt;br /&gt;
* [http://iniz.com/ INIZ VPS Hosting] INIZ provides affordable VPS Hosting in Los Angeles &amp;amp; New York with high resources at low prices.&lt;br /&gt;
* [https://www.interserver.net/ InterServer Web Hosting] Fast &amp;amp; Reliable VPS - 24x7 Support. 99.9% Up-time, Hosting Since 1999!.&lt;br /&gt;
* [http://www.joinvps.com JoinVPS.com] ISPmanager OpenVZ based VPS hosting. 24/7 Technical Support. Free ISPmanager control panel.&lt;br /&gt;
* [http://www.lovevps.com LoveVPS] Budget VPS provider starting at $5.99/month located in the US with Xeon nodes.&lt;br /&gt;
* [http://www.letstalkdigital.com/index.php?option=com_content&amp;amp;view=article&amp;amp;id=73&amp;amp;Itemid=65 LetsTalkDigital VPS Hosting] LetsTalkDigital.com offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from $14.99 Virtual Private Server(VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://lylix.net LYLIX] offers affordable VPS hosting with a choice of eight different Linux distributions, dedicated VPS hosting, and specializes in Asterisk/VOIP based hosting including Trixbox, AsteriskNow, Elastix, and PBX-in-a-Flash.  Popular choice for unmanaged IP-PBX services; entire infrastructure built on a High-availability (HA) network across three regional NOCs.&lt;br /&gt;
* [http://www.micfo.com Micfo.com] offers VPS hosting services for both Linux VPS hosting and Window VPS hosting on affordable price combined with world-class 24x7x365 support.&lt;br /&gt;
* [http://www.neostreams.info/neoshop/cart.php?gid=9 nEo Stream Services] Offer's Top Quality OpenVZ Servers, Starting at $18.95 per month! SolusVM Control panel , 7 day Money Back Guarantee , 24x7 Professional Support.&lt;br /&gt;
* [http://pogiweb.com/vps/ PogiWeb LLC] Instant and free setup. Includes SolusVM control panel and free level 1 support during first month.&lt;br /&gt;
* [http://www.theserverexperts.com TheServerExperts.com] TheServerExperts VPS line is the ideal solution for clients who require the control of a dedicated server matched with the affordability and simplicity of a traditional shared hosting account.&lt;br /&gt;
* [http://thenynoc.com New York NOC] affordable Linux VPS hosting out of New York and Chicago. Plans as low as $5 a month and are backed by a redundant infrastructure and 24/7 support.&lt;br /&gt;
* [http://railsplayground.com RailsPlayground.com] Ruby on Rails VPS with ready to go Rails images with the LxAdmin control panel&lt;br /&gt;
* [http://www.raidlogic.net RaidLogic.NET] RaidLogic.NET offers OpenVZ based Linux VPS out of multiple facilities across the United States, including Miami, Los Angeles, and Chicago. Starting as low as $3.95/month.&lt;br /&gt;
* [http://www.ramhost.us RAM Host] RAM Host offers OpenVZ based Linux VPS out of multiple facilities across the United States, including Atlanta, Kansas City, and Phoenix.&lt;br /&gt;
* [http://www.reconhosting.com Recon Hosting] Recon Hosting offers affordable OpenVZ VPS solutions where you get Quality Hosting at a Fraction of the price. Instant setup with the latest Operating System templates including cPanel.&lt;br /&gt;
* [http://www.rokabear.com Rokabear] Rokabear offers OpenVZ Linux VPS, Dedicated Server, and Colocation. All Hardware setup in High Availability mode including raided drives and redudnant power and network connections. With multiple upstream providers, Rokabear's connectivity is fast and reliable! Rokabear supports LAMP, Openvpn, and Asterisk configurations. VPSes start at $7.99!&lt;br /&gt;
* [https://www.rosehosting.com RoseHosting] offers OpenVZ Linux virtual servers equipped with Enterprise Grade SSD drives. All hosting plans are fully-managed with FREE 24/7 support, FREE website migration, FREE weekly backups and FREE server monitoring included.&lt;br /&gt;
* [http://www.rshosting.com/vps.html RSHosting.com] RSHosting offers the most secure, reliable and stable VPS - Virtual Private Servers based on OpenVZ architecture, powered by the most professional and qualified 24/7 lightening fast support.&lt;br /&gt;
* [http://www.servercomplete.com Server Complete, LLC] Server Complete offers OpenVZ based Linux VPS out of multiple facilities across the United States, including Atlanta, Dallas, and Chicago.&lt;br /&gt;
* [http://www.servergrove.com ServerGrove] uses OpenVZ as the main virtualization platform for its state of the art VPS hosting services.&lt;br /&gt;
* [http://serverswarm.com ServerSwarm] provides stable, affordable, high performance OpenVZ virtual private servers.&lt;br /&gt;
* [http://Sharktech.net Sharktech] provides custom OpenVZ solutions DDOS-protected up to 100Gbps.&lt;br /&gt;
* [http://www.silverrack.com/ SilverRack VPS Hosting] - SilverRack provides affordable VPS hosting using the OpenVZ platform.&lt;br /&gt;
* [http://www.soficol.com/ Soficol] Offers Enterprise OpenVZ based VPS, hosted on a clustered infrastructure and redundant network. Easy to use user management and instant setup.&lt;br /&gt;
* [http://www.spectrohost.com/ Spectro Host] - Offers performance VPS Servers running openvz. Always the most resources and never over committing OpenVZ nodes.&lt;br /&gt;
* [http://www.budgetvds.com/ BudgetVDS] - Offers VPS Servers running openvz we've been in business for 2 years now using openvz platform.&lt;br /&gt;
* [http://www.syera.net/ Syera Networks] Unmetered VPS From $18.88/M, 24/7 Support, OpenVZ/HyperVM, Instant Setup!, Free 1Gbps Upgrade with Coupon: syera1G&lt;br /&gt;
* [http://www.synapseglobal.com/voip_vps.html SynapseGlobal.com] Elastix, Trixbox, PBX in a Flash and Asterisk VPS - OpenVZ based Asterisk VOIP servers with 14 Tier 1 premium bandwidth providers.&lt;br /&gt;
* [http://www.tektonic.net TekTonic] provides VPS hosting services using both Virtuozzo and OpenVZ technology.&lt;br /&gt;
* [http://www.tigerservers.com/ TigerServers] - Provides affordable managed VPS based on OpenVZ. Servers located in Chicago, Illinois&lt;br /&gt;
* [http://www.tocici.com/ TOCICI VPS Hosting Services] Since 1995 TOCICI has offered web hosting services, with 24/7 support commitments and a strong non-oversell policy. Our purpose-built hosting infrastructure has serviced many organizations for over a decade. Offering OpenVZ VPS, data center colocation, and equipment leasing options, visit our website for prices and more details.&lt;br /&gt;
* [http://www.ultravps.com UltraVPS] UltraVPS offers managed and unmanaged OpenVZ-based VPS hosting utilizing dual CPU hardware nodes with redundant, high-performance RAID-10 storage.  UltraVPS offers VPS servers with many popular control panel options and turn-key applications.&lt;br /&gt;
* [http://www.vpsfx.com VPSFX] VPSFX.com offers OpenVZ VPS, data center colocation, and dedicated servers.&lt;br /&gt;
* [http://www.Webhost.US.Com/linuxvps.html US Web Hosting]  Webhost.US.Com offers powerful GUI based VPS management system with full OpenVZ, Xen Paravirtualization and Xen HVM support.All our Virtual Private servers are fully Managed with 99.9% uptime and 24/7 top notch support.&lt;br /&gt;
* [http://unixservice.com Unixservice/unxsVZ] Low cost OpenVZ ONLY hosting we specialize in Mail, DNS and RADIUS multiple container hosting. At the world famous Market St. San Jose, CA Silicon Valley datacenter. Ping times from your containers to local yahoo and google sites guaranteed single digit ms times. Your containers are backed up at 4 local and 2 remote locations. Contact supportgrp at unixservice dot com.&lt;br /&gt;
* [http://www.vogenic.xyz Vogenic: Cloud Services] If you are searching for an upgrade to the shared hosting service, then you should consider our OpenVZ or KVM VPS hosting services.&lt;br /&gt;
* [http://vpslink.com VPSLink.com] provides virtual private server hosting on the OpenVZ platform.&lt;br /&gt;
* [http://www.vpsspeed.com/ VPSSpeed] - VPSSpeed provides unmanaged OpenVZ based VPS hosting with over 50 OS Templates, real 24/7/365 support and fast US servers. No overselling.&lt;br /&gt;
* [http://vpsnoc.com VPSNOC] offers unmanaged vps hosting based in the USA utilizing OpenVZ hypervisor behind an in-house VPS control panel.&lt;br /&gt;
* [https://www.waveride.at/ Waveride] Waveride, an EDIS company, offers budget full gigabit OpenVZ + solusVM VPS in Austria, USA and the Netherlands&lt;br /&gt;
* [http://www.webappcabaret.com WebAppCabaret] provides VPS solutions for hosting applications. We offer OpenVZ with cPanel or Plesk for web site management; and NGASI Universal App Manager for deploying and managing JAVA and RAILS applications.&lt;br /&gt;
* [http://www.wirenine.com/vps-hosting/ WireNine.com VPS Hosting] Low cost fully managed and unmanaged OpenVZ based VPS Hosting with SAS 15k enterprise drives in high-performance RAID-10 storage.&lt;br /&gt;
* [http://www.zoidial.com/ Zoidial Hosting and VPS] - offers VPS and Virtual Dedicated Server solutions utilizing OpenVZ.  In business since 1998, Zoidial Incorporated is a small hosting provider focused on being security conscious, proactive, and offering a positive client experience.&lt;br /&gt;
* [http://zensix.com ZenSix Hosting] Cheap OpenVZ based VPS accounts with the SolusVM control panel.&lt;br /&gt;
* [http://zigothosting.com Zigot Hosting] Affordable and Reliable OpenVZ based VPS's within the SolusVM control panel.&lt;br /&gt;
* [http://www.vpsfast.us/usa-vps VPSFast] - VPS Provider with good prices in USA (Los Angeles, New Jersey, New York, Seattle, Washington, Dallas, Chicago, Atlanta, Ashburn, Miami, Piscataway).&lt;br /&gt;
* [http://www.xarixlite.com Xarix Lite] - offers OpenVZ hosting in Charlotte, SC. OpenVZ plans starting at $2.50/mo&lt;br /&gt;
* [https://www.yourlasthost.com YourLastHost] is your high-performance [https://www.yourlasthost.com/openvz-vps.php OpenVZ VPS Hosting] Provider. Get your perfect [https://www.yourlasthost.com/openvz-vps.php VPS Hosting] account today! Available in Los Angeles, Dallas, Jacksonville, USA and France, Europe.&lt;br /&gt;
&lt;br /&gt;
== Vietnam ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://appvz.com AppVZ.com] (www.appvz.com) is a leading web solution provider offering domain, hosting, reseller and VPS hosting packages from 2009. Just recently, the company has offered discount packages where customers can avail managed and un-managed VPS for only $9.5 per month.&lt;br /&gt;
&lt;br /&gt;
= Hosting providers comparison =&lt;br /&gt;
&lt;br /&gt;
It is hard to compare all virtual private server offers provided by different hosting providers.&lt;br /&gt;
Sites below can help you with it.&lt;br /&gt;
&lt;br /&gt;
* [https://www.cheapvpsservers.co.uk/ Cheap VPS Servers]&lt;br /&gt;
* [https://www.hostingmyths.com/ Hosting Myths]&lt;br /&gt;
* [https://cheapwebhosting.review/ VPS servers comparison]&lt;br /&gt;
* [https://reviewsquirrel.com/web-hosting-reviews/ Review Squirrel]&lt;br /&gt;
* [http://lowendstock.com/ Lowendstock]&lt;br /&gt;
* [https://www.websitehostingrating.com/ Best Web Hosting Services]&lt;br /&gt;
* [https://foxmaya.com/hosting/best-wordpress-hosting-india/ Best Wordpress Hosting Services]&lt;br /&gt;
* [http://serverbear.com/compare?Sort=RAM&amp;amp;Order=asc&amp;amp;Server+Type=VPS&amp;amp;Monthly+Cost=-&amp;amp;HDD=-&amp;amp;RAM=-&amp;amp;Virtualization=OpenVZ Serverbear]&lt;br /&gt;
* [https://www.comparethehosts.com/vps-web-hosting.htm VPS Web Hosting Reviews]&lt;br /&gt;
* [https://thishosting.rocks/best-cheap-managed-vps/ ThisHosting.Rocks - Managed VPS Providers Comparison]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
http://vpscomp.com&lt;br /&gt;
http://reviewsignal.com/webhosting/compare/&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= See also =&lt;br /&gt;
&lt;br /&gt;
* [[Partners]]&lt;br /&gt;
* [[Download mirrors]]&lt;br /&gt;
* [[VPS vs Dedicated]]&lt;/div&gt;</summary>
		<author><name>Vvs</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.openvz.org/index.php?title=Hosting_providers&amp;diff=23380</id>
		<title>Hosting providers</title>
		<link rel="alternate" type="text/html" href="https://wiki.openvz.org/index.php?title=Hosting_providers&amp;diff=23380"/>
		<updated>2021-02-25T14:15:34Z</updated>

		<summary type="html">&lt;p&gt;Vvs: /* Chile */ reordered recently added entry. Keep the list of providers alphabetically sorted&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''OpenVZ is free and open implementation of Virtuozzo containers for Linux.&lt;br /&gt;
Don't forget to keep [[testimonials|testimonial]] and [[donate]] to OpenVZ.'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
OpenVZ makes for a great hosting platform for VPS hosting. The providers below offer VPS services using OpenVZ.&lt;br /&gt;
&lt;br /&gt;
[[File:UsageLocation.svg]]&lt;br /&gt;
&lt;br /&gt;
= OpenVZ hosting providers =&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- @@@@@@@@@@@@@@@@@@@@@@@&lt;br /&gt;
&lt;br /&gt;
IF YOU EDIT THIS PAGE,  PLEASE OBEY TO THE FOLLOWING RULES:&lt;br /&gt;
&lt;br /&gt;
1. Keep your record on ONE line&lt;br /&gt;
2. Keep the list of providers alphabetically sorted, DO NOT insert your record on top.&lt;br /&gt;
3. Keep the list of countries alphabetically sorted as well.&lt;br /&gt;
&lt;br /&gt;
     @@@@@@@@@@@@@@@@@@@@@@@@ --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Andorra ==&lt;br /&gt;
* [https://www.actiu.net/pro/ Actiu informatica] amb servidors dins i fora del principat.&lt;br /&gt;
&lt;br /&gt;
== Argentina ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.fulltech.com.ar/ Full Tech Solutions] Specializes in the virtualization of OpenVZ &amp;amp; Virtuozzo containers, installed in the Full Tech Solutions Data Center located in Villa Elisa, Entre Rios Argentina.  It also offers services hosted in the United States, Netherlands and Germany&lt;br /&gt;
* [http://www.g2khosting.com/ G2K Hosting] offer OpenVZ containers with high level hardware technology from 25 US with Control Panel, various Linux Dists and full support.&lt;br /&gt;
* [https://hostingplus.com.ar/ HostingPlus Argentina] provide OpenVZ containers at our own datacenter in South America with triple internet provider. Starting from  us20/month&lt;br /&gt;
* [https://ibumu.com/ Ibumu] Best containers for wordpress starting from $5.5.&lt;br /&gt;
* [http://www.ihserver.net/ IHServer] Specialized virtualization on OpenVZ containers at Gigared datacenter. We have in Argentina one of the better fiber connection to the US, but also provides services from LSTN in Texas.&lt;br /&gt;
* [https://www.infranetworking.com.ar/ Infranetworking] All our Cloud VPS container solutions for Argentine customers are powered by the all mighty OpenVZ virtualization software.&lt;br /&gt;
* [https://www.neolo.com/ Neolo] provide OpenVZ containers at our own datacenter in South America with double internet provider. Choose your Linux OS and apps. Full support.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [http://www.wiredhosting.com.ar/ WiredHosting] offer XEN and OpenVZ containers with SSD drives, cloudflare security and weekly backups to protect your information. Phone and Helpdesk support. &lt;br /&gt;
&lt;br /&gt;
== Australia == &lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.auhost4u.com/ AUHost4u] - VPS Solutions provided from our D.C. in Sydney.&lt;br /&gt;
* [https://www.conetix.com.au/ Conetix Hosting] Specialising in business grade, fully managed Virtuozzo containers with Virtuzzo Cloud Storage. 100% Australian owned and operated. Brisbane based DC with Enterprise Dell servers.&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides self-managed OpenVZ based SSD VPS located at Equinix SY3 in Sydney, one of the best and well-connected datacenters in the region.&lt;br /&gt;
* [http://www.vpsfast.us/australia-cloud-server VPSFast] - VPS Provider with good prices in Australia.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Austria ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
* [https://kapper.net/ kapper.net] kapper.net offers OpenVZ and Virtuozzo (and other HyperVisors) based server-solutions with kind support and 24x7 maintenance.&lt;br /&gt;
* [https://mdhost.eu/vserver.php MDHost.eu] New Hosting Provider with nice Prices and many Server locations. Austria, Germany, France and more.&lt;br /&gt;
* [https://www.snb.at/ SNB] offers OpenVZ containers and support's also existing vm's in customers environment&lt;br /&gt;
* [https://www.waveride.at/ Waveride] Waveride, an EDIS company, offers budget full gigabit OpenVZ + solusVM VPS in Austria, USA and the Netherlands&lt;br /&gt;
* [http://www.vpsfast.us/austria-cloud-server VPSFast] - VPS Provider with good prices in Austria.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Brazil ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.datacorporate.com.br/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [http://www.globalmedia.com.br/ GlobalMedia] We offers OpenVZ containers hosted on a very fast network with fast setup. Ubuntu, Debian, CentOS.&lt;br /&gt;
* [http://www.host1plus.com.br/ Host1Plus] Servers hosted in São Paulo. We offering reliable and secure OpenVZ VPS Servers with 99.99% up-time, starting from $5.00 per month.&lt;br /&gt;
* [http://www.ipdeck.net/ IPDECK] VPS Linux server from R$15,00/month! Fully customizable according to your needs.&lt;br /&gt;
* [https://www.quantivehost.com.br/ QuantiveHost] VPS Linux with 99.99% uptime. Prices starting from R$ 29,35.&lt;br /&gt;
* [https://www.elevahost.com.br/ Eleva host] Server hosted in Brazil. The best support.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [https://www.ferenz.com.br/ Ferenz Networks] VPS Linux with best support. Prices starting from R$ 29,90.&lt;br /&gt;
&lt;br /&gt;
== Bulgaria ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.cloudhostinghub.com Offshore VPS Hsoting] CloudHostingHub.com is an [https://www.cloudhostinghub.com Cloud Offshore VPS Hosting] located in Buglaria. They provide both OpenVZ and KVM virtualization. CloudHostingHub.com is known for the high privacy protection , performance and stability.&lt;br /&gt;
* [https://www.cyberhour.com CyberHour.com] CyberHour.com is an [https://www.cyberhour.com offshore VPS hosting] provider located in Europe. The provide blazing fast servers and premium Bandwidth of 200Mbps. With high privacy protection.&lt;br /&gt;
* [https://www.linuxssdvps.com Bulgaria VPS] Linux SSD VPS is an [https://www.linuxssdvps.com offshore VPS hosting] provider located in Sofia, Bulgaria. Privacy is very respected and anonymous registrations are allowed, as well as payments via Bitcoin / PayPal.&lt;br /&gt;
* [http://www.webuzo.net Bulgaria VPS] Webuzo Network is an offshore SSD VPS hosting provider located in Bulgaria. Privacy is very respected and anonymous registrations are allowed, as well as payments via Bitcoin / PayPal.&lt;br /&gt;
* [https://vpsbg.eu/en Bulgaria VPS] VPSBG.eu is an offshore SSD VPS hosting provider located in Sofia, Bulgaria. Privacy is very respected and anonymous registrations are allowed, as well as payments via Bitcoin.&lt;br /&gt;
* [http://www.bul.net/ Bul.net] Provides OpenVZ based VPS, perfect user/VPS management via [http://ispsystem.com VDSManager]. Instant creation after online payment. Debian/Ubuntu/CentOS with ISPManager Control panel. Optimal price policy.&lt;br /&gt;
* [http://www.cointech.eu/vps-hosting/ CoInTech] provides OpenVZ based VPS containers, free webmin managment. Containers can be CentOS, Slackware, Ubuntu, custom or our special [http://www.mandriva.com Mandriva Linux] container with own [http://mandriva.cointech.net repository].&lt;br /&gt;
* [http://www.rax.bg/ RAX.bg] Offers OpenVZ based VPS, hosted on a clustered infrastructure and redundant network. Easy to use user management, Instant setup, CentOS (OS).&lt;br /&gt;
* [http://www.jump.bg/ Jump.bg] Provides OpenVZ VPS servers hosted on a redundant network which provides a very easy to manage platform for all clients which gain instant access to their OS ( Ubuntu, CentOS , Debian etc ... )&lt;br /&gt;
* [https://www.fitvps.com/ FitVPS.com] Offers affordable and reliable OpenVZ based VPS in Varna, Bulgaria. Own data center, own multihomed network, with SLA. Instant automatic setup, SolusVM control panel.&lt;br /&gt;
* [http://www.qhoster.com/ QHoster.com] Instant activation OpenVZ VPS in UK, USA, Germany, France and Switzerland. Both 32/64 bit OpenVZ OS VPS templates : CentOS 5/6, Debian 6/7, Ubuntu 12/13.&lt;br /&gt;
* [https://www.verdina.net Verdina.NET] Verdina.net offers dedicated hosting services, provided by powerful dell hardware. Servers are located in Telepoint Datacenter, a Tier 3 DC located in Sofia, Bulgaria.&lt;br /&gt;
* [https://www.vps.ag/ VPS.AG] Affordable and reliable OpenVZ VPS based in Sofia, Bulgaria. Instant setup and 24/7 support.&lt;br /&gt;
* [http://www.vpsfast.us/bulgaria-vps VPSFast] - VPS Provider with good prices in Bulgaria.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Canada ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://4goodhosting.com/linux-vps-hosting 4GooodHosting] - Canadian OpenVZ VPS Servers, Starting from  $18.99/month SSD,. Canada VPS hosting in three different Canadian Data Centers with nightly backups.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [https://whc.ca/canadian-cloud-servers Web Hosting Canada Cloud Servers] - Powerful Cloud servers powered by OpenVZ and located in Canadian datacenters, with fast RAID-10 storage, fully managed with cPanel.&lt;br /&gt;
* [http://compevo.com compevo Clustered VPS Server Hosting Provider] - We offer clustered VPS Servers to avoid downtime and dataloss. Our network and service is second to none and is used by businesses around the world.&lt;br /&gt;
* [http://www.datacorporate.ca/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [https://www.delimiter.com/storage-vps/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [https://www.miditech.com/ MidiTech Hosting Canada] VPS hosting offered by MidiTech Canada are powered by VMware, . Fully Managed VPS with control panels&lt;br /&gt;
* [http://www.gotekky.com Gotekky Cloud VPS Hosting] High quality Cloud VPS packages powered by our own infrastructure and network in Toronto. Scalable from our $5/mo plan all the way to your own dedicated cloud server. Based on OpenVZ and our own proprietary panel.&lt;br /&gt;
* [https://gigebox.com GIGEBOX.COM] GIGEBOX are expert providers of secure business hosting services, we operate high-performance professional servers, specially designed for businesses, powered by the Intel(R) Xeon(R) Hexa-Core CPU Processors and 128 GB DDR3 minimum RAM. Enjoy high availability, performance and security for multiple uses.&lt;br /&gt;
* [http://www.letstalkdigital.com/index.php?option=com_content&amp;amp;view=article&amp;amp;id=73&amp;amp;Itemid=65 LetsTalkDigital VPS Hosting] LetsTalkDigital.com offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from $14.99. Virtual Private Server (VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://secure.media-hosts.com/link.php?id=7 Media-Hosts.com] Provides Quality and Scalable OpenVZ based Virtual Private Servers. 100% network uptime guaranteed. Located in Montreal Quebec with 5 Tier1 upstream providers.&lt;br /&gt;
* [http://www.openvz.ca OpenVZ.ca] Canadian Budget VPS Servers on OpenVZ Platform. &lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [http://protoserver.com ProtoServer] Advanced VPS Hosting from $4.95/month. Many pre-installed VPS Templates available (CMS, E-commerce, Web development, Online community, Media streaming, etc.) No bundles or service plans - mix VPS resources as needed and change VPS configuration anytime. Also offering DNS Hosting, E-mail hosting, Domains Registration.&lt;br /&gt;
* [http://www.vistapages.com/vps Vistapages VPS] - IBM &amp;amp; Dell Hardware. MCI/Verizon Backbone. Distros: Centos, Fedora, Debian &amp;amp; more. Full management available. Located in Toronto.&lt;br /&gt;
* [http://vpsville.ca/ VPSVille] - Good network. Good CPU. Good choice of distros: Centos, Fedora, Debian, Ubuntu, Slackware, Gentoo, OpenSUSE, CERN. My favorite OpenVZ provider. [mailto:jak@isp2dial.com John Kelly]&lt;br /&gt;
* [http://solib.ca/services-offerts/hebergement-haute-vitesse/serveurs-vps/ SOLIB Logiciel Libre Québec] Our company offers DDoS protected server solutions including OpenVZ containers. Very high availability and reliability, all our VPS are located in Quebec, Canada.&lt;br /&gt;
* [https://www.host-stage.net/linux-vps/ HostStage - Linux VPS] - Simple, Reliable OpenVZ VPS packed with 1 GBPS port speed, RAID 10 SSD, Intel Xeon CPU, DDoS Protection from $4.95/month&lt;br /&gt;
* [https://undergroundprivate.com/russiaoffshorevps.html  UndergroundPrivate.com] - OpenVZ with highly privacy, offshore , DMCA ignored , high confidence, SolusVM and cPanel, managed and non managed service.&lt;br /&gt;
* [http://www.vpsfast.us/canada-vps VPSFast] - VPS Provider with good prices in Canada.&lt;br /&gt;
* [https://websavers.ca/canadian-vps-hosting Websavers Inc in Halifax] - VZ containers priced by the resource. Resource changes entirely client-level.&lt;br /&gt;
* [https://www.yoorshop.fr/hosting-ssd-vps-usa-canada.php YOORshop SAS] - High performance NVMe SSD Linux VPS in Canada, daily backup included. Starting from €7,49 /month&lt;br /&gt;
&lt;br /&gt;
== Colombia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.datacorporate.co/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [http://www.soficol.com/ Soficol] Offers Enterprise OpenVZ based VPS, hosted on a clustered infrastructure and redundant network. Easy to use user management and instant setup.&lt;br /&gt;
* [https://www.hostingplus.com.co/ Hosting Plus Colombia] provide OpenVZ containers at our own datacenter in South America with triple internet provider. Starting from  us20/month&lt;br /&gt;
* [https://ibumu.com/ Ibumu] Best containers for wordpress starting from $5.5.&lt;br /&gt;
&lt;br /&gt;
== Czech Republic ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://4smart.cz 4Smart.cz] - prepaid, you are charged only by the system resources you use, therefore you can run a VPS for as little as  1 EUR a month if your vps is not resource hungry. Even if you pay  0,50 EUR  month, you still have 3 GB of RAM and 8 cores available to you VPS.&lt;br /&gt;
* [http://www.freecloud.cz FREECLOUD.CZ] - Free OpenVZ VPS Server - own IP, 800Mhz CPU, 512MB RAM, 50Mbits LAN, 10GB HDD, 100GB Traffic - Debian, Ubuntu, Gentoo, Slackware, Fedora, Centos&lt;br /&gt;
* [http://www.hukot.cz Hukot.cz] - OpenVZ VPS Servers starting from 2.92 €, XEON, 1 Gbps uplink, unlimited traffic. Debian, Ubuntu, CentOS, Scientific, SuSe, Fedora, Elastix.&lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [http://www.ultimatehosting.eu UltimateHosting.eu] - OpenVZ VPS Servers starting from $8 with custom configuration - up to 100 GB HDD, 2048 MB RAM, 2 GHz CPU, and unlimited traffic.&lt;br /&gt;
* [http://www.mujhost.net MUJHOST.NET] - OpenVZ VPS Servers starting from 160 Kč, 100Mbps / 1 Gbps uplink, unlimited traffic. Debian, Ubuntu, CentOS ...&lt;br /&gt;
&lt;br /&gt;
== Chile ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.1h.cl/ 1h.cl Vps - Chile] - VPS High Performance with OpenVZ in Chile&lt;br /&gt;
* [http://www.1hosting.cl/ 1hosting Virtual servers - Chile] - VPS Professional with OpenVZ&lt;br /&gt;
* [http://www.dch.cl/ DCH] - DCH.cl Hosting Chile - High Performance VPS Servers with OpenVZ &lt;br /&gt;
* [https://www.dominioweb.net/ Dominioweb] - Premium Hosting and domain registration&lt;br /&gt;
* [http://ecohosting.cl/ EcoHosting.cl Santiago - Chile] - VPS with OpenVZ in Chile&lt;br /&gt;
* [http://www.host.cl/ Host.cl] - Cloud Computing&lt;br /&gt;
* [https://www.hostingplus.cl/ HostingPlus Internet Limitada] - High Performance Vps provider in Chile&lt;br /&gt;
* [https://www.hostingnet.cl/ Telecomunicaciones Hostingnet SPA] - VPS Reliable Provider in Chile&lt;br /&gt;
* [https://www.hostname.cl/ Hostname Ltda] - VPS Hosting with Datacenter in Chile&lt;br /&gt;
* [https://www.inc.cl/ INC Internet Limitada] - VPS Hosting provider in Chile&lt;br /&gt;
&lt;br /&gt;
== Denmark ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.vpsfast.us/denmark-cloud-server VPSFast] - VPS Provider with good prices in Denmark.&lt;br /&gt;
&lt;br /&gt;
== Estonia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://cspacehostings.com CSpace Hostings] Tallinn, Estonia Hosted SSD and Storage VPS based on OpenVZ (OVZ) 7.&lt;br /&gt;
&lt;br /&gt;
== Ecuador ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.dedi.space/ DediSpace Telecom] - VPS Servers in Ecuador - USA, France, Germany, Ecuador Datacenter.&lt;br /&gt;
&lt;br /&gt;
== France ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.BargainVPS.co.uk/ BargainVPS] - UK / US / EU Instant setup VPS - We have some great Linux &amp;amp; Windows Bargain VPS packages on offer for you here all available Fully Managed.&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in France from 1.88EUR/month.&lt;br /&gt;
* [http://www.fixweb.com Fixweb] Great managed hosting provider with strong anti ddos solution - openvz only - leader in managed openvz solution with horizontal scaling and high availability&lt;br /&gt;
* [http://www.Freaksol.com/ FreaKs VPS Hosting] Self reliant hosted on independent networks &amp;amp; DC low ping,No restrictions on file types,Unlimited resources,high ram servers &lt;br /&gt;
* [http://www.harmony-hosting.com Harmony-Hosting] A high performance VPS hosting - The leader in France&lt;br /&gt;
* [https://www.delimiter.com/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [http://www.lws.fr/serveur_dedie_linux.php LWS - Linux VPS ] - Linux VPS Hosting - Only 9.99€/month, Affordable and Secure OpenVZ VPS Servers with 99.99% up-time, web hosting control panel Included. French datacenter&lt;br /&gt;
* [http://www.ovh.co.uk/vps/ OVH VPS] linux from 3€/month, [http://www.ovh.co.uk/vps/vps-cloud.xml windows] from 12€/month.&lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [https://VPSZ.FR VPSZ] VPS Hosting in France. Starting from 2,99€, Unlimited traffic.&lt;br /&gt;
* [http://www.1euro-hosting.eu BEST EU VPS - 1€ Hosting] - Providing reliable and secure OpenVZ VPS Servers with 99.99% up-time, starting from 8€&lt;br /&gt;
* [https://www.shape.host/linux-vps/ Shape Host - Linux VPS] - OpenVZ virtual servers, Instant Linux VPS&lt;br /&gt;
* [https://undergroundprivate.com/russiaoffshorevps.html  UndergroundPrivate.com] - OpenVZ with highly privacy, offshore , DMCA ignored , high confidence, SolusVM and cPanel, managed and non managed service.&lt;br /&gt;
* [https://www.host-stage.net/linux-vps/ HostStage - Linux VPS] - Simple, Reliable OpenVZ VPS packed with 1 GBPS port speed, RAID 10 SSD, Intel Xeon CPU from $4.95/month&lt;br /&gt;
* [https://www.yoorshop.hosting/hosting-vps-ssd-europe YOORshop SAS] - High performance NVMe SSD OpenVZ 7 VPS within 13 countries in Europe, Canada and Singapore. Daily backup included. From €5,95/month&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Germany ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://afterburst.com Afterburst (Previously FanaticalVPS)]: affordable unmetered, unmanaged VPS servers in Germany.&lt;br /&gt;
* [http://www.b2b-hosting.de/vps/ B2B Hosting]: Professional virtual servers for business applications. Performance and reliability at a fair price. Made with OpenVZ.&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in Germany from 1.88EUR/month.&lt;br /&gt;
* [https://www.delimiter.com/dedicated-servers/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [http://hostmist.com/openvz-vps-germany.html Host Mist]: features budget OpenVZ VPS hosting in Germany.&lt;br /&gt;
* [http://www.host1plus.com/ Host1Plus] Servers based in Frankfurt am Main. Offering reliable OpenVZ based VPS servers in Germany starting from $2.50 per month.&lt;br /&gt;
* [http://www.hostingjuice.com/ HostingJuice] The Superioum VPS and Web Hosting provider, low prices - Premium packages.&lt;br /&gt;
* [http://www.ingate.de/managed-server.html Ingate] offers managed servers with openVZ virtualization. located in germany, great support.&lt;br /&gt;
* [http://linevast.de/angebote/linux-openvz-vserver-mieten.html Linevast] Reliable OpenVZ based VPS with fast support, located in germany&lt;br /&gt;
* [https://cp.myvirtualserver.com/?affid=42 MyVirtualServer]: Cheap VPS (OpenVZ/KVM, 5TB Traffic, 10Gigabit), servers located in Frankfurt (best ping, starting 1.99€) good support (en/de) //New Design!&lt;br /&gt;
* [https://www.nogics.com Nogics Technologies]: Affordable VPS based in Germany. Starts from $5.96/mo.&lt;br /&gt;
* [http://www.plambee.de/vserver.php Plambee.de Webhosting]: Powerfull OpenVZ based VPS servers at low cost with hosting in Germany&lt;br /&gt;
* [https://rackset.com/ Rackset Hosting] Managed Dedicated / VPS and Website Hosting services since 2004.&lt;br /&gt;
* [http://www.serverbiz.de/vserver Serverbiz] Powerful VPS at very low prices.&lt;br /&gt;
* [http://www.synapseglobal.com/voip_vps.html SynapseGlobal.com] Elastix, Trixbox, PBX in a Flash and Asterisk VPS - OpenVZ based Asterisk VOIP servers located in Munich Germany.&lt;br /&gt;
* [http://www.vStarVPS.com vStarVPS]: Reliable VPS Hosting at lowest prices, with 99.9% uptime, Premium Unmetered Bandwidth and Custom HDD/RAM of your choice. Instant and FREE Setup. RapidLeech Allowed.&lt;br /&gt;
* [http://whynotavps.com WhyNOTaVPS]: Instant activated VPS SERVERS!!&lt;br /&gt;
* [http://squote.de/index.php?ref=1421485383 SQuote]: SQuote VPS Hosting and more. VPS 1 Core, 1.024MB RAM, 512MB RAM SWAP, 50 GB HDD, 1x IPv4. 3,89EUR/month. For the best VPS SQuote.de&lt;br /&gt;
* [http://www.vpsfast.us/germany-vps VPSFast] - VPS Provider with good prices in Germany.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Guatemala ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.globalnetcafe.com/gnc/menu/hospedaje.htm Global Net Cafe]: Servicios de hospedaje, reseller, vps, colocacion y servidores. Incluyendo OpenVZ.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Hong Kong ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [https://hostus.us HostUS] features unmanaged and managed OpenVZ VPS in Hong Kong as well as 3 USA locations. Unparalleled connectivity to the Asia Pacific. Enjoy 15% off with coupon VPS15OFF.&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides self-managed OpenVZ based SSD VPS in Hong Kong, located at the Pacnet datacenter. &lt;br /&gt;
* [http://vps.timway.com/linux_vps.html Timway VPS Hosting] - Quality, non-oversold hosting provider focused on being security conscious and offering a positive client experience.   Centos, Debian, Fedora, OpenSuse and Ubuntu Containers are available.&lt;br /&gt;
* [http://www.vpsfast.us/hong-kong-cloud-server VPSFast] - VPS Provider with good prices in Hong Kong.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Hungary ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://elin.hu/index.php?menu=8&amp;amp;nyelv=hu&amp;amp;cim=Virtualis-szerver Virtual server] OpenVZ server: 2xX5650 Intel Xeon, 32GB RAM, 15.000rpm SAS disks, 100Mbit/s, unlimited bandwith.&lt;br /&gt;
* [https://www.ivirtual.co/vps-hosting/ iVirtual.co ] OpenVZ Master Server: 2x Intel Xeon @ 3.0GHZ, 64 GB ECC Ram, 15k RPM SAS HDD's, 1Gbit/s Network, Unlimited bandwith.&lt;br /&gt;
&lt;br /&gt;
== Iceland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
&lt;br /&gt;
== Ireland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== India ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://cspacewebsolutions.com/ CSpace Web Solutions Pvt.Ltd] Mumbai Datacenter connected to DE-CIX India Hosted VPS based on OpenVZ (OVZ) 7 and OpenVZ (OVZ) 6.&lt;br /&gt;
* [https://cochinwebhost.in/budget-vps-hosting/ Low Cost VPS Hosting] Fast SSD VPS Server for Hosting Solutions at budget prices with 24x7 Technical Support.&lt;br /&gt;
* [https://www.cyberhost.in/ Cyberhost] - Affordable OpenVZ containers on high performance quality Servers. Wide choice of virtual dedicated servers with Full management available.&lt;br /&gt;
* [http://www.datacorporate.in/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
*[http://www.fastwebhost.in/vps-hosting.html fastwebhost VPS Hosting] VPS hosting offered by fastwebhost are powered by ''VPS hosting, virtual server hosting and Linux VPS hosting services''. Fully Managed VPS with control panels.&lt;br /&gt;
* [http://www.Freaksol.com/ Freaksol VPS Hosting] Self reliant hosted on independent networks &amp;amp; DC low ping to India,No restrictions on file types,Unlimited resources,high ram servers&lt;br /&gt;
* [https://www.geniushost.in Genius Host] Fully managed [https://www.geniushost.in SSD Web Hosting] offered by Genius Host are powered by ''OpenVZ'' With LiteSpeed Web Server &amp;amp; Mariadb.&lt;br /&gt;
* [http://www.hioxindia.com/virtual-private-server.php VPS Hosting] Reliable and quality VPS Virtual Private Server Hosting&lt;br /&gt;
* [http://www.hostitsmart.com/ Host IT Smart] - One of the best VPS Hosting Provider in India with 24X7X365 Customer support.&lt;br /&gt;
* [https://www.hostnamaste.com HostNamaste] is your high-performance [https://www.hostnamaste.com/openvz-vps.php OpenVZ VPS Hosting] Provider. Get your perfect [https://www.hostnamaste.com/openvz-vps.php VPS Hosting] account today! Available in [https://www.hostnamaste.com/datacenter-losangeles.php Los Angeles], [https://www.hostnamaste.com/datacenter-dallas.php Dallas], [https://www.hostnamaste.com/datacenter-jacksonville.php Jacksonville], USA,  [https://www.hostnamaste.com/datacenter-france.php France], Europe, [https://www.hostnamaste.com/datacenter-mumbai-pune.php Mumbai], India and [https://www.hostnamaste.com/openvz-vps-moscow-russia.php Moscow], Russia.&lt;br /&gt;
* [https://www.hostsoch.in/windows-hosting.html HostSoch Windows Hosting] Windows hosting offered by HostSoch are powered by ''Windows 2012, ASP.NET, MVC, IIS, PHP and More''. 99.9% Uptime, 24/7 Dedicated support guaranteed. &lt;br /&gt;
* [https://www.miditech.co.in/ MidiTech VPS Hosting] VPS hosting offered by MidiTech are powered by ''VMware, ''. Fully Managed VPS with control panels. &lt;br /&gt;
* [http://www.milesweb.com/vps-hosting.php Milesweb VPS Hosting] VPS hosting offered by Milesweb are powered by ''VMware, OpenVZ''. Fully Managed VPS with control panels. &lt;br /&gt;
* [https://www.nogics.com/web/vps-hosting/ Nogics Technologies] Instant provisioning of VPS, VPS starts from $5.96/mo. 30+ OS templates.&lt;br /&gt;
* [http://overlineindia.net/vpshosting-p-62.html Overline India VPS Hosting] Fully managed cPanel Installed VPS Hosting with 24x7x365 Live Chat Tech support, powered by OpenVZ&lt;br /&gt;
* [http://www.prohosterz.com/linux-vps.php ProHosterZ VPS Hosting] Reliable and quality Virtual Dedicated Servers | Virtual Private Servers | XEN VPS | OpenVZ VPS | Virtual Hosting&lt;br /&gt;
* [http://pve.proxmox.com/wiki/User:Apmuthu Ap.Muthu] sponsored by [http://www.gnuacademy.org GNUAcademy], [http://www.planettel.com.sg PlaNetTel] and [http://www.sacollege.net S A College] creates OpenVZ Templates for the Open Source Community and provides hosting in datacenters of clients choice or on site.&lt;br /&gt;
* [http://www.servers.co.in/vps/vps_hosting.php Server Web Hosting] Offers Fully Managed OpenVZ VPS Web hosting in India/US/UK at affordable and cheap rates with best hardware quality and customer service 24/7/365 days&lt;br /&gt;
* [http://touchstone.hosting/ Touchstone Solutions Private Limited] High-performance Enterprise VPS Hosting in India. One of the highest performing VPS Servers available with cPanel Installed.&lt;br /&gt;
* [http://vpsbeach.com VpsBeach Managed Hosting] Fully managed cPanel Installed VPS Hosting with 24x7x365 Live Chat Tech support, powered by OpenVZ&lt;br /&gt;
* [http://www.vpsfast.us/india-vps VPSFast] - VPS Provider with good prices in India.&lt;br /&gt;
* [http://www.vpshostingindia.net/ VPS Hosting India, Fully Managed Server] A Committed Fully Managed VPS Server for Hosting solution in India, Complete Technical Support assistance with commitment of fast, clustered and most supportive DataCenters.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [https://hostitbro.in/ HostItBro] - HostItBro does not compromise on speed. With us, you get the fastest loading websites.&lt;br /&gt;
* [https://hostingspell.com/ HostingSpell] - Hostingspell is a leading web hosting company in India and now serving over 40+ countries our the globe. We guarantee 99.9% uptime and 7 days full money-back guarantee so you can't go wrong :)&lt;br /&gt;
&lt;br /&gt;
== Indonesia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.herza.id/vps-murah/ Herza.ID] Low Cost OpenVZ Virtual Server, starting from IDR 50.000 / Month with RAID 10 SSD, Unlimited Bandwidth with 1 Gbps IIX &amp;amp; OIXP Connection, and 24/7 Technical Support.&lt;br /&gt;
* [https://www.kucingweb.co.id/hosting/vps/ Kucingweb Indonesia] High Performance VPS service with the best choice.&lt;br /&gt;
&lt;br /&gt;
== Iran==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.ehost.ir EHost.ir] - OpenVZ Servers , DUAL XEON Cpus , 12 Gb Ram , 100Mbit Dedicated Connection , SAS HardDisk&lt;br /&gt;
* [https://www.irpower.com IRPOWER Webhostings &amp;amp; Domain] - OpenVZ Servers Since 2005!&lt;br /&gt;
* [http://www.vpsfa.com VPSFa.com] - OpenVZ Servers , DUAL XEON Cpus -  , 24Gb Ram , 1000Mbit Dedicated Connection , SAS HardDisk&lt;br /&gt;
* [https://webramz.com Webramz Host] - With more than 15 years experience in Managed Hosting, Webramz was first vps provider in Iran which used to setup OpenVZ servers. Nowadays we provide wide range of services including CloudLinux based OpenVZ and Managed Vps Servers.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Italy ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
* [http://www.hosting-italia.net hosting italia] - OpenVZ Servers and panel enduser Virtualizor Intel® Core™ i7-920 Quad-Core 48 GB DDR3 RAM - Guaranteed Bandwidth 200 Mbit/s&lt;br /&gt;
* [http://www.vpsfast.us/italy-vps VPSFast] - VPS Provider with good prices in Italy.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Liechtenstein ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
&lt;br /&gt;
== Lithuania ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.cloudlix.com/ CloudLix.com] - Managed and unmanaged OpenVZ virtual servers based on 2.6.32 kernel. Up to 20GHz (Intel SandyBridge) CPU and 10GB RAM. Located in Vilnius and Siauliai.&lt;br /&gt;
* [http://www.databank.lt/ databank.lt] - high-quality professional OpenVZ hosting with cloud computing solutions.&lt;br /&gt;
* [https://www.hostens.com/vps-hosting/ Hostens] - Unmanaged VPS hosting for the great price: clear deals, no hidden conditions, quality service from the heart of Europe. &lt;br /&gt;
* [https://www.lavavps.lt/ lavavps.lt] - Professional high-quality OpenVZ containers (VPS servers) affordable for everyone. Powerful control panel for VPS management.&lt;br /&gt;
* [https://monovm.com/ monovm.com] - High Quality VPS Hosting Provider&lt;br /&gt;
* [http://www.serveriai.lt/ Serveriai.lt] - Affordable OpenVZ containers on quality HP hardware. Wide choice of virtual dedicated servers up to 8 CPU cores and 8 GB RAM. Full management available. Located in Vilnius.&lt;br /&gt;
* [https://www.time4vps.com/?affid=1359 Time4VPS] - Powerful cloud technology based infrastructure will let you build custom virtual machine and pay only for what you really need. Located in Vilnius city.(0.99€/month(2Yr) 512mbRAM, 1TB Traffic// 4.5€/month(2Yr) StorageVps, 1TB, 10TB Traffic)&lt;br /&gt;
* [https://www.vpsnet.lt/en/ VPSnet.lt] - Powerful and high quality servers for a competitive price in Lithuania (Eastern Europe).&lt;br /&gt;
* [http://www.vpsfast.us/lithuania-vps VPSFast] - VPS Provider with good prices in Lithuania.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Latvia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.altnet.lv/ Altnet] - Hosting and colocation services. Any flawor, you name it. &lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
&lt;br /&gt;
* [http://www.vpsfast.us/latvia-vps VPSFast] - VPS Provider with good prices in Latvia.&lt;br /&gt;
&lt;br /&gt;
== Luxembourg ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.vpsfast.us/luxembourg-vps VPSFast] - VPS Provider with good prices in Luxembourg.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Malaysia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.cubiex.com/ Cubiex] - Malaysia Affordable Web Hosting and Domain Name. Affordable Linux VPS Hosting in Malaysia. OpenVZ based, Quad Core Xeon node. cPanel/WHM and DirectAdmin also available.&lt;br /&gt;
* [https://controlvm.com ControlVM] ControlVM Sdn. Bhd. offering OpenVZ VPS in Singapore, Malaysia, USA and Germany.&lt;br /&gt;
* [https://www.yoorshop.fr/hosting-ssd-vps-singapore-asia.php YOORshop SAS] - High performance SSD Linux VPS In Singapore with daily backup included. Starting from €7,49 /month&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Malta ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.a6it.com/ A6iT] - Stable, quality managed OpenVZ VPSs based in Malta.  Redundant network.&lt;br /&gt;
&lt;br /&gt;
== Morocco ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.belsemtech.com/ BelsemTech.CoM] BelsemTech SARL offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from 300 DH. Virtual Private Server (VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://www.hostoweb.com/ HosToWeb] is the only company providing VPS hosting in Morocco Data Center.&lt;br /&gt;
* [http://www.adk-media.com/ ADK Media] provides affordable managed and unmanaged virtual servers based on OpenVZ, Xen Paravirtualization and Xen HVM platforms. 24/7 Technical Support. Distros: Centos, Fedora, Debian, Ubuntu and more.&lt;br /&gt;
* [http://www.naja7host.com/ Naja7Host.CoM] The Naja7host SARL provides affordable VPS hosting using the OpenVZ platform. Running on Full Quality Nodes of up to 8 CPU and 16 GB RAM. . All VPS's come with Real 24/7/365  Technical Support and cPanel free (if option selected  ). Multiple choice of OS 32/64Bits (Centos, fedora, ubuntu, debian .ect ...)&lt;br /&gt;
* [http://www.lehoster.com/ Le Hoster] offers affordable Virtual Private Servers using the OpenVZ and KVM platform. Backed with our amazing customer support.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Netherlands ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.avanpad.com/ Avanpad] offers OpenVZ VPS hosting with 24\7 online support. Customer can request different control panels or templates for installation on his VPS.&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in Netherlands from 1.88EUR/month.&lt;br /&gt;
* [https://cspacehostings.com CSpace Hostings] Amsterdam, Netherlands Hosted SSD and Storage VPS based on OpenVZ (OVZ) 7.&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
* [http://www.Freaksol.com/ FreaKs VPS Hosting] Self reliant hosted on independent networks &amp;amp; DC low ping around the world,No restrictions on file types,Unlimited resources,high ram servers&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [http://www.HostSailor.com/ HostSailor] Number 1 Netherlands Provider HostSailor provides affordable &amp;amp; high quality services such as VPS (XEN, OpenVZ and KVM) Linux or Windows, Dedicated servers, SSL certificates and domain name services.&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides self-managed OpenVZ SSD VPS in Telecity AMS 5, one of the best datacenters located in the Amsterdam area.&lt;br /&gt;
* [https://iniz.com/ INIZ VPS Hosting] INIZ provides affordable VPS Hosting in Amsterdam, Netherlands with high resources at low prices.&lt;br /&gt;
* [https://www.liteserver.nl/ LiteServer] Looking for a quality and affordable VPS in the center of The Netherlands? We provide SSD, Storage and High Bandwidth VPSes, starting at only €16 per year. We operate AS60404.&lt;br /&gt;
* [https://www.mangelot-hosting.nl/ Mangelot Hosting] Mangelot Hosting, A webhosting company located in the Netherlands, offers budget OpenVZ hosting solutions for maximum scalability en performance.&lt;br /&gt;
* [http://www.osbox.nl OsBoX Dutch Network Engineering] Cheap VPS host as low as $1 per month. Very great uptime and a overall good support. Check the website for the server plans.&lt;br /&gt;
* [https://www.scopehosts.com/openvz-vps/netherlands-vps ScopeHosts.Com] - ScopeHosts Provides OpenVZ VPS in Netherlands, Amsterdam Powered with Pure SSD, 1Gbps Uplink, DDOS Protection, Self-Managed and Managed VPS Solutions&lt;br /&gt;
* [http://www.signet.nl/ Signet VPS Hosting] - Signet delivers VPS hosting plans based on CentOS or Debian templates, including control-panel Virtualmin.&lt;br /&gt;
* [http://simple-webhosting.eu/ Simple-webhosting.eu] - OpenVZ based web hosting starting from €0.98 per month.&lt;br /&gt;
* [https://www.seedvps.com SeedVPS] Provides Powerful &amp;amp; Reliable OVZ/KVM VPS Hosting in The Netherlands&lt;br /&gt;
* [http://www.touchvps.com/ TouchVPS] is a company who offer Support and Managed Services for OpenVZ Servers ,also offer templates for openvz ready to go with cPanel , DirectAdmin , Plesk , Games, IRC Services, Desktop and many more.&lt;br /&gt;
* [https://www.totallyhosted.nl/ TotallyHosted] OpenVZ based Premium VPS services located in the Netherlands @ Serverius DC.&lt;br /&gt;
* [https://undergroundprivate.com/russiaoffshorevps.html  UndergroundPrivate.com] - OpenVZ with highly privacy, offshore , DMCA ignored , high confidence, SolusVM and cPanel, managed and non managed service.&lt;br /&gt;
* [http://www.voipcomplete.com/product-overview/dedicated-vps.html VOIPcomplete] offers dedicated VPS plans based on CentOS including a VPS management interface.&lt;br /&gt;
* [http://www.vpsfast.us/netherlands-vps VPSFast] - VPS Provider with good prices in Netherlands.&lt;br /&gt;
* [https://www.vps9.net/netherlands-vps VPS9.NET] - VPS9 OpenVZ Nodes are located in Naaldwijk, Netherlands. We provide OpenVZ VPS Services at very a affordable cost, powered with 20x Faster SSD on RAID-10 Partition.&lt;br /&gt;
* [https://www.waveride.at/ Waveride] Waveride, an EDIS company, offers budget full gigabit OpenVZ + solusVM VPS in Austria, USA and the Netherlands&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Norway ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.vpsfast.us/norway-vps VPSFast] - VPS Provider with good prices in Norway.&lt;br /&gt;
&lt;br /&gt;
== Pakistan ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://vimzaa.com/ Vimzaa] The best hosting in Pakistan.&lt;br /&gt;
&lt;br /&gt;
== Philippines ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.web.com.ph/vps.php Web.com.ph] - provides OpenVZ virtual servers in the Philippines.&lt;br /&gt;
&lt;br /&gt;
== Perú ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.hn.pe/ Hostname] Hostname offers business OpenVZ containers in Perú&lt;br /&gt;
* [http://www.hostingandino.pe/ Hostingandino Lima - Peru] - VPS with OpenVZ in Peru&lt;br /&gt;
* [http://www.hostingplus.pe/ HostingPlus Internet Limitada] - High Performance Vps provider in Peru&lt;br /&gt;
* [https://www.hostingroup.com/ Hostingroup] Web hosting for small businness in Perú.&lt;br /&gt;
* [https://hostingweb.pe/ Hosting Web] The best hosting in PERU.&lt;br /&gt;
* [https://www.inchosting.pe/ HostingINC SAC] OpenVZ virtualization solutions for business in Perú.&lt;br /&gt;
* [https://www.mejorhosting.pe/ Mejor Hosting Perú] Hosting comparison for peruvian hosting providers.&lt;br /&gt;
* [https://webuniversal.pe/ Web Universal] The best hosting in PERU in the World.&lt;br /&gt;
* [https://alojamientoplus.com/ AlojamientoPlus] Best Hosting and server in Perú.&lt;br /&gt;
&lt;br /&gt;
== Poland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://hosteam.pl/ HosTeam] offers OpenVZ VPS hosting from their DataCenter in Poland. Customer has choice of all major Linux distros (WARNING!!! restoring your backup is VERY expensive and they charge even if it wasn't restored correctly!), NATIVE IPV6 AVAILABLE!&lt;br /&gt;
&lt;br /&gt;
* [http://ultimahost.pl/ UltimaHost] high grade OpenVZ VPS and FreeBSD jail (DC in Łódź, Poland), brand of statnet.pl, SSD available for more expensive packets, NO IPV6 AVAILABLE (but they can load you tun module)&lt;br /&gt;
&lt;br /&gt;
* [http://budgetvps.pl/ BudgetVPS] very cheap, low end grade OpenVZ VPSes (DC in Gdańsk, Poland), brand of HitMe.pl&lt;br /&gt;
&lt;br /&gt;
* [https://hitme.pl/ HitMe.pl] high grade OpenVZ/Xen PV/Xen HVM VPSes, Virtuozzo (DC in Gdańsk, Poland), NATIVE IPV6 AVAILABLE (/64 on demand for free)!&lt;br /&gt;
&lt;br /&gt;
* [http://www.kr-cpd.pl/oferta/serwery-vps/ KR-CPD] Cracow's Center of Data Processing (DC of course in Cracow, Poland)&lt;br /&gt;
&lt;br /&gt;
* [http://livenet.pl Livenet] cheap, middle/low end OpenVZ VPSes (DC in Łódź, Poland)&lt;br /&gt;
&lt;br /&gt;
* [http://slaskdatacenter.pl/ Śląsk Data Center] high/middle grade OpenVZ VPSes (DC in Silesia province, Poland), SSD available for more expensive packets&lt;br /&gt;
&lt;br /&gt;
* [https://www.ionic.pl/ IONIC.pl] VPS OpenVZ with SolusVM control panel, own DC in Cracow&lt;br /&gt;
&lt;br /&gt;
* [https://microvps.pl/ MicroVPS.pl] Middle And low end OpenVZv7 VPS plans. SSD for regular VPS and HHD for storage plans (up to 1TB)&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Portugal ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.ptservidor.pt/ PTServidor] - OpenVZ virtual servers with free management based in Portugal.&lt;br /&gt;
* [http://www.efeito.net/ Weblevel.pt] - OpenVZ virtual servers based in Portugal.&lt;br /&gt;
* [https://www.webtuga.pt/ WebTuga] - Managed/Unmanaged Virtual Private Servers hosted in a Portuguese Datacenter with lots of extras&lt;br /&gt;
* [https://www.cloudfire.pt/ CloudFire] - OpenVZ VPS at very low prices hosted in Portugal&lt;br /&gt;
* [https://www.linxisp.com/ LINXISP] - High Availability &amp;amp; Performance OpenVZ Containers&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] - Build an OpenVZ VPS in 14 locations WordWide From £2.49&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Romania ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://b3hosting.ro/ B3 Hosting] - top Romanian hosting company offering managed/unmanaged OpenVz virtual servers based in Bucharest, Romania, Germany, Netherlands and UK for top prices&lt;br /&gt;
* [http://www.intovps.com IntoVPS] - offers unmanaged OpenVZ virtual servers based in Romania, Netherlands and USA. A lot of resources for decent prices.&lt;br /&gt;
* [http://www.ename.ro/dedicated.html eName] - managed OpenVZ virtual servers in Bucharest, Romania&lt;br /&gt;
* [http://www.ch-center.com/virtual-servers Ch-center] - unmanaged OpenVZ virtual servers, based in Romania in it's own Data Center&lt;br /&gt;
* [http://www.clouds.ro/servere-virtuale/ Clouds] - OpenVZ virtual servers hosted on premium hardware, in Romania&lt;br /&gt;
* [http://www.HostSailor.com/ HostSailor] HostSailor provides affordable &amp;amp; high quality OpenVZ and KVM servers in Romania&lt;br /&gt;
* [https://www.shape.host/linux-vps/ Linux VPS] - OpenVZ virtual servers, Instant Linux VPS&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [https://bmfhost.com/nvme-ssd-vps/ BMF Host] - NVMe SSD VPS, Starting from  €12/month Unlimited traffic. A high-performance VPS Romanian hosting&lt;br /&gt;
&lt;br /&gt;
== Russia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.internoc24.host Internoc24.HOST] is an international [https://www.www.internoc24.host Offshore VPS ] provider with reliable SSD VPS in Moscow, Russia. Focus ist on high privacy protection so they accept several Cryptocurrencies like Bitcoin, Ethereum and others for anonymous payments.&lt;br /&gt;
* [http://www.ihc.ru/vps.html IHC.RU] - VPS hosting in Moscow, Russia starting at $10/month with good set of precreated templates&lt;br /&gt;
* [http://mchost.ru/services/linux-vps/ McHost.ru] - Linux VDS Hosting from McHost.&lt;br /&gt;
* [http://hosting.agava.ru/vps/ AGAVA] - Linux VPS hosting based on OpenVZ.&lt;br /&gt;
* [http://vdsplanet.ru/ VDSPlanet.ru] - unmanaged VDS/VPS hosting starting at 3.99$ a month. Large variety of OS templates and free ISPmanager Lite control panel. Total automation is our goal.&lt;br /&gt;
* [http://www.demos.ru/service/datacenter/vps.html Demos-Internet] - we offer OpenVZ Virtual Private Server based on Linux.  All VPS come with ISPmanager control panel.&lt;br /&gt;
* [http://www.net.ru/service/net9/ www.net.ru] - OpenVZ virtual private servers.&lt;br /&gt;
* [http://www.eurobyte.ru/ Eurobyte.ru] - Linux VDS Hosting from Eurobyte.&lt;br /&gt;
* [https://undergroundprivate.com/russiaoffshorevps.html  UndergroundPrivate.com] - OpenVZ with highly privacy, offshore , DMCA ignored , high confidence, SolusVM and cPanel, managed and non managed service.&lt;br /&gt;
* [http://www.telekom.ru/service/vps.html Elvis Telekom] - OpenVZ hosting with base and cpanel templates from Elvis Telekom.&lt;br /&gt;
* [http://fastvps.ru/vds/ FastVPS] - OpenVZ hosting, ISPmanager, Hetzner, MayFlower.&lt;br /&gt;
* [https://lepus.su/vps.html Lepus] - OpenVZ hosting, SSD, ISPmanager free, Hetzner.&lt;br /&gt;
* [http://www.hts.ru/vds/ HTS] - OpenVZ hosting, ISPmanager, Linux VPS hosting based on OpenVZ in Moscow.&lt;br /&gt;
* [https://selectel.ru/services/vds/ Selectel] - OpenVZ hosting.&lt;br /&gt;
* [https://galaxydata.ru/root-server/ GalaxyData] - Virtuozzo Containers in Cloud Storage.&lt;br /&gt;
* [http://hosterbox.ru/servers/ Hosterbox.ru] - Managed VPS hosting. Based on OpenVZ + SolusVM + ISPmanager.&lt;br /&gt;
* [https://firstvds.ru FirstVDS.ru] - One of the leading hosting companies providing virtual private servers.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Singapore ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://conceptlane.com/?t=hostingservices#ratesvps ConceptLane Pte Ltd] - OpenVZ VPS on dual octa-core AMD Opterons running Debian Wheezy 7, custom control panel with bandwidth graphs, reboot/reinit and web-based VNC access.&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [http://www.qoxy.com/vps QOXY.com] Affordable and Reliable OpenVZ VPS Hosting in a Singapore Data Center.&lt;br /&gt;
* [http://www.secureax.com/ SecureAX Pte Ltd] - Singapore Premium Internet Solution Provider&lt;br /&gt;
* [http://www.planettel.com.sg PlaNetTel] - Affordable and customised OpenVZ containers across 3 data centers - contact Thomas Festus at +65-66936881. [http://pve.proxmox.com/wiki/User:Apmuthu#Squeeze_based_Templates Sponsors OpenVZ Container Template]s for the Open Source community.&lt;br /&gt;
* [http://www.vpsfast.us/singapore-vps VPSFast] - VPS Provider with good prices in Singapore.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Serbia ==&lt;br /&gt;
* [https://www.skyhosting.rs/en/vps-servers SkyHosting] - Fast Linux OpenVZ VPS SSD Hosting with SolusVM control panel.&lt;br /&gt;
* [https://www.ninet.rs/en/vps-servers NiNet Company] - Linux OpenVZ VPS servers. Well known VPS hosting company from Serbia with their own data center&lt;br /&gt;
* [http://www.suonline.net SuOnline.Net ISP] - Linux OpenVZ VPS servers, Docker enabled !!!&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== South Africa ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.host1plus.com/ Host1Plus] - Local South African servers hosted in Johannesburg. OpenVZ VPS servers starting from $3.00 per month.&lt;br /&gt;
* [http://www.vps.co.za/ VPS.CO.ZA] - South Africa's oldest VPS provider. Local South African servers with SolusVM control panel. OpenVZ, Xen and OnApp Cloud.&lt;br /&gt;
* [http://247hosting.co.za/vpshosting.php 247Hosting] - OpenVZ virtual servers locally in South Africa with SolusVM control panel. cPanel option available!&lt;br /&gt;
* [http://www.SoftDux.co.za/ SoftDux] - OpenVZ virtual servers based America &amp;amp; South Africa. All VPS's come with cPanel or Plesk control panels. XEN VPS's also available.&lt;br /&gt;
* [http://www.clickworks.co.za/ Clickworks] - OpenVZ / Xen VPS servers hosted in RSA. Backed by Solusvm control panel.&lt;br /&gt;
* [http://www.elitehost.co.za/ Elite Host] - OpenVZ virtual servers based in America &amp;amp; South Africa. All VPS's come with cPanel and unlimited bandwidth.&lt;br /&gt;
* [http://www.telasera.com/ Telasera] - OpenVZ VPS servers hosted in South Africa. Supermicro Servers powered by Intel Xeon with 24/7 Support.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Spain ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.corpresa.com/servidores-virtuales.html Corpresa Hosting] - Tiene algún proyecto entre manos y un plan de hosting no le hes sufuciente y un servidor dedicado no está dentro de su presupuesto?, una solución de VPS a medida será la que cubrirá todas sus necesidades.&amp;quot;&lt;br /&gt;
* [https://www.datomedia.es Datomedia] - Cloud alta disponibilidad powered by Virtuozzo 6 y Servidores VPS bajo openvz y kvm.&lt;br /&gt;
* [https://www.evidaliahost.com/vps/ EvidaliaHosting] - Servidores VPS totalmente configurados con panel de gestión Plesk 12.5, garantía de devolución de 30 días y posibilidad de discos SSD.&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
* [https://ginernet.com/vps-ssd.php GINERNET] - Servidores VPS alojados en España desde 1.99€/mes.&lt;br /&gt;
* [https://www.hostingplus.com.es Hosting Plus España] provide OpenVZ containers at our own datacenter. Starting from us20/month RAID 10 SSD.&lt;br /&gt;
* [https://www.somtecnologia.com/ Som Tecnologia] - OpenVZ/6 , containers up to Debian 9&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Sweden ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.admax.se/vps/ Admax] - Admax offers enterprise grade virtual servers with great pricing. Custom control panel, API, remote access &amp;amp; more.&lt;br /&gt;
* [https://www.acon.se/vps Acon VPS Server] - VPS Server and Dedicated server provider in Sweden.&lt;br /&gt;
* [https://www.glesys.com/vps.php GleSYS] - VPS Provider with a great control panel and good prices&lt;br /&gt;
* [https://cspacehostings.com CSpace Hostings] Stockholm, Sweden Hosted SSD and Storage VPS based on OpenVZ (OVZ) 7.&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides the highest quality SSD VPS in Stockholm, Sweden. Based on completely pure SSD in RAID-10 and delivering extremely high network &amp;amp; hardware performance along with reliability.&lt;br /&gt;
* [https://www.nametyper.com NameTyper] - VPS and Shared hosting provider. Customize your own OpenVZ Container with 1-12 cores running on SSD and ECC RAM. &lt;br /&gt;
* [https://virtualcenter.se VirtualCenter] - The first Cloud provider with SSD VPS in Sweden. Offer enterprise class hardware and network infrastructure&lt;br /&gt;
* [http://www.vpsfast.us/sweden-vps VPSFast] - VPS Provider with good prices in Sweden.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Switzerland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
* [http://www.vpsfast.us/switzerland-vps VPSFast] - VPS Provider with good prices in Switzerland.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Tanzania==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.aptus.co.tz/ Aptus Solutions] - OpenVZ / SolusVM VPS Servers located in Dar es Salaam - 100meg to TIX. CentOS &amp;amp; Ubuntu.&lt;br /&gt;
&lt;br /&gt;
== UK ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.34sp.com/ 34SP.com] - We're a UK based web hosting company, bridging the gap between sophisticated hosting solutions &amp;amp; affordable prices&lt;br /&gt;
* [http://www.AceShells.com/ AceShells] - Fast, stable, high quality UK based virtual private servers from just £5 a month, operating since 2001&lt;br /&gt;
* [http://www.AtlanticServers.com/ Atlantic Servers] - Affordable VPS, stable, high quality VPS, UK based Data Centre&lt;br /&gt;
* [https://awebhosting.uk/ AWebHosting.uk] VPS hosting offered by [https://awebsolutions.uk/ AWEBSOLUTIONS LIMITED] reliable UK hosting provider located in London, UK and Hosted in UK DataCentre.&lt;br /&gt;
* [http://www.BargainVPS.co.uk/ BargainVPS] - UK / US / EU Instant setup VPS - We have some great Linux &amp;amp; Windows Bargain VPS packages on offer for you here all available Fully Managed.&lt;br /&gt;
* [http://www.cheapvps.co.uk/ CheapVPS] - CheapVPS provide cheap, UK based OpenVZ VPS servers. Hosted on high end hardware, in a top UK datacenter backed up with 24/7/365 support. Choice from a wide range of Linux distros. OpenVZ VPS managed with SolusVM.&lt;br /&gt;
* [http://www.chilliserver.com/ Chilliserver] - Affordable plans starting from just £3.99, not oversold. RHEL6 Kernel with VSwap, TUN/TAP/FUSE and ACL support enabled. SolusVM control panel with custom snapshot system and rescue system. Based in a European data Centre with UK based support.&lt;br /&gt;
* [http://www.chvps.com/ CHVPS] - Switzerland Based VPS, Cheap Pricing with solusVM control panel.&lt;br /&gt;
* [http://www.cislondon.co.uk/virtual-private-servers/ Commercial Internet Solutions] - CIS provides premium hosting at competitive rates, focused on Small Businesses within the M25 orbital. Hosting is on Dual Quad core Intel Xeon supermicro servers in Tier 4 datacenters around London.&lt;br /&gt;
* [http://www.datacorporate.co.uk/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [http://domvps.com/ domVPS] - OpenVZ Virtual Servers in the USA, Germany, France &amp;amp; the Netherlands at a low cost.&lt;br /&gt;
* [http://www.DubHosting.co.uk/ DubHosting] - DubHosting started in 2004 has been providing cost effective hosting to clients world wide. Fully managed OpenVZ servers based in Europe &amp;amp; US are one of their many strong points. They can provide you with a dedicated server and install openvz allowing you to sell your own vps servers. Their servers are located at UKGrid in Manchester with 24/7/365 support&lt;br /&gt;
* [http://www.europhase.net/virtual-private-servers/ Europhase UK Limited, UK VPS] - OpenVZ VPS Hosting, Virtual Dedicated Servers, UK VPS hosted at multiple UK datacentres from £4.99&lt;br /&gt;
* [https://farbyte.uk/vps Farbyte VPS] - UK based OpenVZ VPS and shared web hosting services&lt;br /&gt;
* [http://www.fdqwholesale.co.uk FDQ Wholesale] - UK based hosting services&lt;br /&gt;
* [http://www.gemvps.net/ GemVPS.NET] - UK (Manchester) Based Company, OpenVZ Virtual Servers in the UK &amp;amp; France on Fast nodes.&lt;br /&gt;
* [http://www.hadrill.org.uk Hadrill Online] - Fully managed hosting with unlimited bandwidth. Quotes available through contact form.&lt;br /&gt;
* [http://www.infrenion.com./uk_vps_hosting.html Infrenion Networks UK] Cheap, economical and reliable web hosting solutions, VPS based on the openVZ platform. You can host any YouTube Clone scripts with free FFMPEG setup on our vps servers. Also offers with a choice of selecting DataCenter.&lt;br /&gt;
* [https://www.laws-hosting.co.uk/vps-hosting.php Laws Web Hosting] - Laws Web Hosting offers OpenVZ VPS Hosting with packages starting from £5.50/m that will cater for anyone. We have OpenVZ VPS hosting solutions, and come with moderate DDoS protection.&lt;br /&gt;
* [http://www.letstalkdigital.com/index.php?option=com_content&amp;amp;view=article&amp;amp;id=73&amp;amp;Itemid=65 LetsTalkDigital VPS Hosting] - LetsTalkDigital.com offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from $14.99. Virtual Private Server(VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://www.meteorvps.com/ MeteorVPS] - Professional, Non-Oversold amazing VPS plans pretty cheap using SolusVM management, range from 512MB -&amp;gt; 16GB&lt;br /&gt;
* [http://www.minivps.co.uk miniVPS] miniVPS offers VPS hosting solutions with nodes located in UK, utilising openvz/solusvm with future locations of USA and UK. &lt;br /&gt;
* [https://www.first2host.co.uk First2Host Cheap VPS] - Intel Xeon E5-2630v3 OpenVZ VPS Servers. Don't be defined by a pre-made VPS plan. Create your own VPS Plan by assigning the resources that you require. SATA, SSD or NVMe storage 100 MBPS, 250 MBPS, 500 MBPS, 1GBPS speeds and free cPanel licenses.&lt;br /&gt;
* [http://www.phurix.co.uk/ Phurix] - A UK based web solutions company that provides you with reliable hosting at extremely affordable prices, VPS server virtualization using OpenVZ.&lt;br /&gt;
* [http://www.qualityservers.co.uk Quality Servers] - Affordable OpenVZ virtual servers based in the UK and USA. Choice of control panels and management options.&lt;br /&gt;
* [http://www.rackburst.net/ Rackburst] - UK SSD VPS Hosting with fast UK-based Live Support available from £1.49 per month.&lt;br /&gt;
* [http://www.rshosting.co.uk/vps.html RSHosting UK] - Offering the most secure, reliable, stable and fast UK VPS Web Hosting based on OpenVZ architecture. Our Virtual Dedicated Servers are physically hosted on powerfull Quad Core servers located in multiple UK datacentres.&lt;br /&gt;
* [http://www.sharkserve.rs SharkServers] - Low Cost OpenVZ virtual servers in the UK. Choice of control panels and management options. Own Datacentre.&lt;br /&gt;
* [https://www.ukhost4u.com/ UKHost4u] - A leading provider of VPS solutions for over 19 years!&lt;br /&gt;
* [http://www.vpsfast.us/united-kingdom-vps VPSFast] - VPS Provider with good prices in UK.&lt;br /&gt;
* [http://www.vpsmachine.co.uk/ vpsMachine] Quality openvz hosting platform with a large choice of customer OS templates.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [https://www.webhostuk.co.uk/vps-hosting.html WebHostUK LTD] - Offers Cheap yet Best UK VPS Web Hosting working on OpenVZ Platform.We offers fully Managed UK VPS with true 24/7/365 days support.All our Servers are located in UK London DC.&lt;br /&gt;
* [http://www.webhostinguk.com/vps/vps-hosting.html Web Hosting UK] - Fully managed OpenVZ VPS Hosting offered on fast and reliable and affordable servers in UK &amp;amp; European datacenter with 24x7x365 days lightning fast support.&lt;br /&gt;
* [http://www.weycrest.co.uk/vps-hosting.php Weycrest VPS] - Low Cost, Stable OpenVZ and Parallels' Virtuozzo Virtual Private Server solutions. London UK Hosted at Coreix with a choice of operating systems, and root and control panel options.&lt;br /&gt;
* [http://www.xilo.net/virtual_private_servers-vps/ XILO] - UK-based hosting with UK-based support. VPS services offered with a choice of cPanel, Webmin and other useful applications, VoIP, SIP, VPN to name a few.&lt;br /&gt;
* [http://www.zxvps.co.uk/ ZxVPS VPS Hosting] - Quality, non-oversold VPS based on the openVZ platform, using SolusVM management panel, VPS from 128mb - 2gb, cpanel, direct admin, kloxo, etc.&lt;br /&gt;
&lt;br /&gt;
== Ukraine ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://ekvia.com/ Ekvia] - VDS/VPS based on OpenVZ. Free trial 14 days. Domain registration for VDS/VPS.&lt;br /&gt;
* [http://www.gelihost.com/ Geliar Hosting Solutions] - Fast virtual dedicated servers based on OpenVZ. Geliar Hosting Solutions offering many control panels and other useful services.&lt;br /&gt;
* [http://www.hostpro.ua/ Hostpro.ua] - Full managed OpenVZ servers.&lt;br /&gt;
* [http://www.vpsfast.us/ukraine-vps VPSFast] - VPS Provider with good prices in Ukraine.&lt;br /&gt;
&lt;br /&gt;
== USA ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.a2hosting.com A2 Hosting] is your high-performance [http://a2hosting.com/openvz-vps-hosting OpenVZ VPS Hosting] provider. Design your perfect [http://a2hosting.com/vps-hosting VPS Hosting] account today! Featuring SwiftServers and SSDs with page load speeds up to 300% faster compared to standard drives.&lt;br /&gt;
* [http://www.afterburst.com Afterburst] (Previously FanaticalVPS): affordable unmetered, unmanaged VPS servers in NY.&lt;br /&gt;
* [https://www.asurahosting.com/ AsuraHosting] offers powerful, reliable, and simple OpenVZ VPS to clients. AsuraHosting has a dedicated support team, and quality hosting; Pricing starts at just $5/month!&lt;br /&gt;
* [http://beyondhosting.net BeyondHosting.net] High Performance OpenVZ Virtual Private Servers (VPS)  Tier 1 US Datacenter.&lt;br /&gt;
* [http://buyvm.net BuyVM.net] DDoS Protection, three datacenter locations, Stallion control panel. Affordable quality VPS hosting since 2010!&lt;br /&gt;
* [https://www.binarycpu.com Binary Computer Solutions] has provided OpenVZ based Virtual Private Server hosting for over 5 years.  Network outages are a thing of the past, and oversold services are never heard of here.  Built on solid technology, with infrastructure to match - Binary Computer Solutions will give you hosting you need, without the cost others ask for.  Starting at $30.00/mo.&lt;br /&gt;
* [http://www.bodhost.com/ Bodhost.com] Fast, Reliable and secure web hosting service with 24*7 free customer service.&lt;br /&gt;
* [http://www.buildyourvps.com/ BuildYourVPS.com] mix ‘n’ match your VPS; choose only the bandwidth, RAM, disk capacity, type of IP connection, level server redundancy, and the support/monitoring you want. [http://www.buildyourvps.com/ BuildYourVPS] is the 1st to offer you a highly-customized VPS solution, without making you pay for unused extra features.&lt;br /&gt;
* [https://www.budgetvm.com/openvz-linux-vps.php BudgetVM.com] Each server includes our industry-leading SLA, DDoS protection, 200Gbps networks and 7 * 24-hour customer support.&lt;br /&gt;
* [http://www.byethost.com Byethost.com] offers OpenVZ based VPS Hosting as its main VPS solution, with the hypervm panel. Centos, Debian, Fedora, OpenSuse and Ubuntu Containers are available.&lt;br /&gt;
* [http://cheaperasp.net CheaperASP.Net] provides Quality web hosting on the OpenVZ platform. You also help you get best options at [http://cheaperasp.net/godaddy-1-hosting-free-domain-promo/ affordable] cost.&lt;br /&gt;
* [http://www.chhost.net/vps.htm CH Hosting VPS Hosting] CH Hosting or chhost.net offers OpenVZ based VPS Hosting. 24/7 Support. Upgrade/Downgrade your plan as needed on-the-fly without the risk of downtime. Since 2006. Non-Oversell&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in USA from 1.88EUR/month.&lt;br /&gt;
* [http://www.cloudshards.com Cloud Shards] High Performance, reliable, stable and affordable OpenVZ Virtual Private Servers (VPS) in data centers across the USA.&lt;br /&gt;
* [https://cloudgearhosting.com CloudGear Hosting] - offers OpenVZ hosting in 4 locations across the USA. Including free DDoS Protection and free SSL with cPanel.&lt;br /&gt;
* [https://cspacehostings.com CSpace Hostings LLC] Dallas,TX US Hosted SSD and Storage VPS based on OpenVZ (OVZ) 7.&lt;br /&gt;
* [http://www.datacorporate.com/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [https://www.delimiter.com/storage-vps/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [https://www.cheapdomainnamesdot.com Domain Host SSL] provides Reliable web hosting with OpenVZ platform Since 2003, Located New York city, Atlanta, Los Angeles. &lt;br /&gt;
* [http://www.DubHosting.com/ DubHosting] - DubHosting started in 2004 has been providing cost effective hosting to clients world wide. Fully managed OpenVZ servers based in Europe &amp;amp; US are one of their many strong points. They can provide you with a dedicated server and install openvz allowing you to sell your own vps servers.&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
* [http://www.ethernetservers.com/ Ethernet Servers] A leading provider of OpenVZ Virtual Servers in Los Angeles, Miami and Buffalo with SolusVM.&lt;br /&gt;
* [http://www.evolucix.com/ Evolucix.com] Evolucix offers state of the art, professional, and reliable OpenVZ VPS solutions on top-notch hardware while providing quality support.&lt;br /&gt;
* [http://www.evolvedservers.com Evolvedservers.com] Openvz based vps servers. Hosted in Michigan, USA. 24/7 Support. Hosted in tier-3 and tier-4 datacenter's with multiple redundancies.&lt;br /&gt;
* [http://fastwebhost.com/vps-hosting.html Fastwebhost]: affordable cloud VPS servers using OpenVZ. &lt;br /&gt;
* [http://www.fliphost.net Fliphost.net]: Powerful, affordable instant setup VPS systems. Servers based in Phoenix Az with another location coming soon.&lt;br /&gt;
* [http://www.frontrangehosting.com Front Range Hosting]: SSD Cached KVM &amp;amp; OpenVZ VPS Hosting Prices Start at 2.00/mo, located in Colorado Springs, Colorado.&lt;br /&gt;
* [http://glesys.se GleSYS] is a hosting company specialized in serverhosting. Also offering VPS hosting mainly based on OpenVZ. GleSYS has provided access to server and Cisco hardware for developers from OpenVZ to find problem with VLAN implementation.&lt;br /&gt;
* [http://goodealhosting.com/ GOODEALHOSTING.com] Quality Hosting Solutions! Provides affordable unmanaged/managed VPS based on OpenVZ! start from $10.00, real 24/7 support.&lt;br /&gt;
* [http://gothost.net GotHost.net] Providing OpenVZ based VPS Hosting with SolusVM. All nodes are Quad Core Xeon with RAID-10 for speed and redundancy. Budget plans starting at $7.99.&lt;br /&gt;
* [http://www.greengeeks.com/ GreenGeeks Hosting] VPS Hosting. Dual Intel Xeon 64-Bit CPU's, DDR3 RAM, RAID-10 SSD Storage Arrays. 24/7 Support. cPanel/WHM + more!&lt;br /&gt;
* [http://hostarmor.com HostArmor™] - is best known for low-cost and reliable shared hosting and dedicated servers. Recently the company expanded to offer OpenVZ virtual server plans at 8 worldwide locations, five in the U.S., one in Germany, one in France, and one in the Netherlands. VPS plans start at $13.99/month.&lt;br /&gt;
* [http://www.host4geeks.com Host4Geeks] - Host4Geeks is a premium Fully Managed VPS provider with datacenters across 2 locations in US and in UK. All servers offer a free cPanel license.&lt;br /&gt;
* [http://www.host1plus.com Host1Plus] - OpenVZ based virtual servers in Chicago and Los Angeles. VPS plans start at $2.00 per month.&lt;br /&gt;
* [http://www.hostavps.com HostAVPS] - Providing Fully Managed VPS's on both the West &amp;amp; East Coast.&lt;br /&gt;
* [https://www.hostcapitol.com Host Capitol] offers fast and reliable web hosting services, including OpenVZ VPS Hosting, to clients ranging from small businesses to corporations. Located in Piscataway, New Jersey.&lt;br /&gt;
* [http://www.hostcolor.com Host Color] - OpenVZ based virtual servers hosted in a Tier 4 class data center based out of South Bend, Indiana. Juniper managed, fully-redundant network with uplinks to Level 3, Cogent and Internap.&lt;br /&gt;
* [https://www.hostgalaxy.com HostGalaxy] - OpenVZ based virtual servers. The fastest hosting in the Galaxy!&lt;br /&gt;
* [http://www.hostigation.com Hostigation] - High resource unmanage VPS hosting solutions.&lt;br /&gt;
* [http://www.hostingrails.com Hosting Rails] offers Rails-targeted OpenVZ VPS Hosting and updated Rails-ready OS images.&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [http://www.hostmist.com Host Mist] features budget OpenVZ VPS hosting from four major cities across the US.&lt;br /&gt;
* [http://www.hostrush.com HostRush] Self managed, ssd vps for business and non business. &lt;br /&gt;
* [http://www.dailyhosting.net hostoople] We offer OpenVZ VPS hosting from Dallas Texas, Starting at $29.95/month &lt;br /&gt;
* [https://hostus.us HostUS] provides unmanaged and managed OpenVZ VPS in Atlanta, Dallas and Los Angeles with custom control panel. A large variety of Linux distros are available. Enjoy 15% off with coupon VPS15OFF.&lt;br /&gt;
* [https://www.hostwinds.com Hostwinds] Affordable managed/unmanaged VPS Solutions.&lt;br /&gt;
* [http://hostsia.com Hostsia] With HOSTSIA Web services, you can get an OpenVZ VPS for only $15.00/mo. Each OpenVZ VPS includes multiple free-of-charge bonuses and offers a 99.9% uptime guarantee. You can also use our charge-free Hepsia CP, which is available with each OS – it permits you to host an unmetered number of domains and comprises heaps of handy tools, which will help you better manage your site and your VPS web hosting account.&lt;br /&gt;
* [http://www.infrenion.com./vps_hosting.html Infrenion Networks] Cheap, reliable and secure VPS hosting solutions, based on the openVZ platform. You can host any YouTube Clone scripts with enhanced support quality round the clock.&lt;br /&gt;
* [http://iniz.com/ INIZ VPS Hosting] INIZ provides affordable VPS Hosting in Los Angeles &amp;amp; New York with high resources at low prices.&lt;br /&gt;
* [https://www.interserver.net/ InterServer Web Hosting] Fast &amp;amp; Reliable VPS - 24x7 Support. 99.9% Up-time, Hosting Since 1999!.&lt;br /&gt;
* [http://www.joinvps.com JoinVPS.com] ISPmanager OpenVZ based VPS hosting. 24/7 Technical Support. Free ISPmanager control panel.&lt;br /&gt;
* [http://www.lovevps.com LoveVPS] Budget VPS provider starting at $5.99/month located in the US with Xeon nodes.&lt;br /&gt;
* [http://www.letstalkdigital.com/index.php?option=com_content&amp;amp;view=article&amp;amp;id=73&amp;amp;Itemid=65 LetsTalkDigital VPS Hosting] LetsTalkDigital.com offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from $14.99 Virtual Private Server(VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://lylix.net LYLIX] offers affordable VPS hosting with a choice of eight different Linux distributions, dedicated VPS hosting, and specializes in Asterisk/VOIP based hosting including Trixbox, AsteriskNow, Elastix, and PBX-in-a-Flash.  Popular choice for unmanaged IP-PBX services; entire infrastructure built on a High-availability (HA) network across three regional NOCs.&lt;br /&gt;
* [http://www.micfo.com Micfo.com] offers VPS hosting services for both Linux VPS hosting and Window VPS hosting on affordable price combined with world-class 24x7x365 support.&lt;br /&gt;
* [http://www.neostreams.info/neoshop/cart.php?gid=9 nEo Stream Services] Offer's Top Quality OpenVZ Servers, Starting at $18.95 per month! SolusVM Control panel , 7 day Money Back Guarantee , 24x7 Professional Support.&lt;br /&gt;
* [http://pogiweb.com/vps/ PogiWeb LLC] Instant and free setup. Includes SolusVM control panel and free level 1 support during first month.&lt;br /&gt;
* [http://www.theserverexperts.com TheServerExperts.com] TheServerExperts VPS line is the ideal solution for clients who require the control of a dedicated server matched with the affordability and simplicity of a traditional shared hosting account.&lt;br /&gt;
* [http://thenynoc.com New York NOC] affordable Linux VPS hosting out of New York and Chicago. Plans as low as $5 a month and are backed by a redundant infrastructure and 24/7 support.&lt;br /&gt;
* [http://railsplayground.com RailsPlayground.com] Ruby on Rails VPS with ready to go Rails images with the LxAdmin control panel&lt;br /&gt;
* [http://www.raidlogic.net RaidLogic.NET] RaidLogic.NET offers OpenVZ based Linux VPS out of multiple facilities across the United States, including Miami, Los Angeles, and Chicago. Starting as low as $3.95/month.&lt;br /&gt;
* [http://www.ramhost.us RAM Host] RAM Host offers OpenVZ based Linux VPS out of multiple facilities across the United States, including Atlanta, Kansas City, and Phoenix.&lt;br /&gt;
* [http://www.reconhosting.com Recon Hosting] Recon Hosting offers affordable OpenVZ VPS solutions where you get Quality Hosting at a Fraction of the price. Instant setup with the latest Operating System templates including cPanel.&lt;br /&gt;
* [http://www.rokabear.com Rokabear] Rokabear offers OpenVZ Linux VPS, Dedicated Server, and Colocation. All Hardware setup in High Availability mode including raided drives and redudnant power and network connections. With multiple upstream providers, Rokabear's connectivity is fast and reliable! Rokabear supports LAMP, Openvpn, and Asterisk configurations. VPSes start at $7.99!&lt;br /&gt;
* [https://www.rosehosting.com RoseHosting] offers OpenVZ Linux virtual servers equipped with Enterprise Grade SSD drives. All hosting plans are fully-managed with FREE 24/7 support, FREE website migration, FREE weekly backups and FREE server monitoring included.&lt;br /&gt;
* [http://www.rshosting.com/vps.html RSHosting.com] RSHosting offers the most secure, reliable and stable VPS - Virtual Private Servers based on OpenVZ architecture, powered by the most professional and qualified 24/7 lightening fast support.&lt;br /&gt;
* [http://www.servercomplete.com Server Complete, LLC] Server Complete offers OpenVZ based Linux VPS out of multiple facilities across the United States, including Atlanta, Dallas, and Chicago.&lt;br /&gt;
* [http://www.servergrove.com ServerGrove] uses OpenVZ as the main virtualization platform for its state of the art VPS hosting services.&lt;br /&gt;
* [http://serverswarm.com ServerSwarm] provides stable, affordable, high performance OpenVZ virtual private servers.&lt;br /&gt;
* [http://Sharktech.net Sharktech] provides custom OpenVZ solutions DDOS-protected up to 100Gbps.&lt;br /&gt;
* [http://www.silverrack.com/ SilverRack VPS Hosting] - SilverRack provides affordable VPS hosting using the OpenVZ platform.&lt;br /&gt;
* [http://www.soficol.com/ Soficol] Offers Enterprise OpenVZ based VPS, hosted on a clustered infrastructure and redundant network. Easy to use user management and instant setup.&lt;br /&gt;
* [http://www.spectrohost.com/ Spectro Host] - Offers performance VPS Servers running openvz. Always the most resources and never over committing OpenVZ nodes.&lt;br /&gt;
* [http://www.budgetvds.com/ BudgetVDS] - Offers VPS Servers running openvz we've been in business for 2 years now using openvz platform.&lt;br /&gt;
* [http://www.syera.net/ Syera Networks] Unmetered VPS From $18.88/M, 24/7 Support, OpenVZ/HyperVM, Instant Setup!, Free 1Gbps Upgrade with Coupon: syera1G&lt;br /&gt;
* [http://www.synapseglobal.com/voip_vps.html SynapseGlobal.com] Elastix, Trixbox, PBX in a Flash and Asterisk VPS - OpenVZ based Asterisk VOIP servers with 14 Tier 1 premium bandwidth providers.&lt;br /&gt;
* [http://www.tektonic.net TekTonic] provides VPS hosting services using both Virtuozzo and OpenVZ technology.&lt;br /&gt;
* [http://www.tigerservers.com/ TigerServers] - Provides affordable managed VPS based on OpenVZ. Servers located in Chicago, Illinois&lt;br /&gt;
* [http://www.tocici.com/ TOCICI VPS Hosting Services] Since 1995 TOCICI has offered web hosting services, with 24/7 support commitments and a strong non-oversell policy. Our purpose-built hosting infrastructure has serviced many organizations for over a decade. Offering OpenVZ VPS, data center colocation, and equipment leasing options, visit our website for prices and more details.&lt;br /&gt;
* [http://www.ultravps.com UltraVPS] UltraVPS offers managed and unmanaged OpenVZ-based VPS hosting utilizing dual CPU hardware nodes with redundant, high-performance RAID-10 storage.  UltraVPS offers VPS servers with many popular control panel options and turn-key applications.&lt;br /&gt;
* [http://www.vpsfx.com VPSFX] VPSFX.com offers OpenVZ VPS, data center colocation, and dedicated servers.&lt;br /&gt;
* [http://www.Webhost.US.Com/linuxvps.html US Web Hosting]  Webhost.US.Com offers powerful GUI based VPS management system with full OpenVZ, Xen Paravirtualization and Xen HVM support.All our Virtual Private servers are fully Managed with 99.9% uptime and 24/7 top notch support.&lt;br /&gt;
* [http://unixservice.com Unixservice/unxsVZ] Low cost OpenVZ ONLY hosting we specialize in Mail, DNS and RADIUS multiple container hosting. At the world famous Market St. San Jose, CA Silicon Valley datacenter. Ping times from your containers to local yahoo and google sites guaranteed single digit ms times. Your containers are backed up at 4 local and 2 remote locations. Contact supportgrp at unixservice dot com.&lt;br /&gt;
* [http://www.vogenic.xyz Vogenic: Cloud Services] If you are searching for an upgrade to the shared hosting service, then you should consider our OpenVZ or KVM VPS hosting services.&lt;br /&gt;
* [http://vpslink.com VPSLink.com] provides virtual private server hosting on the OpenVZ platform.&lt;br /&gt;
* [http://www.vpsspeed.com/ VPSSpeed] - VPSSpeed provides unmanaged OpenVZ based VPS hosting with over 50 OS Templates, real 24/7/365 support and fast US servers. No overselling.&lt;br /&gt;
* [http://vpsnoc.com VPSNOC] offers unmanaged vps hosting based in the USA utilizing OpenVZ hypervisor behind an in-house VPS control panel.&lt;br /&gt;
* [https://www.waveride.at/ Waveride] Waveride, an EDIS company, offers budget full gigabit OpenVZ + solusVM VPS in Austria, USA and the Netherlands&lt;br /&gt;
* [http://www.webappcabaret.com WebAppCabaret] provides VPS solutions for hosting applications. We offer OpenVZ with cPanel or Plesk for web site management; and NGASI Universal App Manager for deploying and managing JAVA and RAILS applications.&lt;br /&gt;
* [http://www.wirenine.com/vps-hosting/ WireNine.com VPS Hosting] Low cost fully managed and unmanaged OpenVZ based VPS Hosting with SAS 15k enterprise drives in high-performance RAID-10 storage.&lt;br /&gt;
* [http://www.zoidial.com/ Zoidial Hosting and VPS] - offers VPS and Virtual Dedicated Server solutions utilizing OpenVZ.  In business since 1998, Zoidial Incorporated is a small hosting provider focused on being security conscious, proactive, and offering a positive client experience.&lt;br /&gt;
* [http://zensix.com ZenSix Hosting] Cheap OpenVZ based VPS accounts with the SolusVM control panel.&lt;br /&gt;
* [http://zigothosting.com Zigot Hosting] Affordable and Reliable OpenVZ based VPS's within the SolusVM control panel.&lt;br /&gt;
* [http://www.vpsfast.us/usa-vps VPSFast] - VPS Provider with good prices in USA (Los Angeles, New Jersey, New York, Seattle, Washington, Dallas, Chicago, Atlanta, Ashburn, Miami, Piscataway).&lt;br /&gt;
* [http://www.xarixlite.com Xarix Lite] - offers OpenVZ hosting in Charlotte, SC. OpenVZ plans starting at $2.50/mo&lt;br /&gt;
* [https://www.yourlasthost.com YourLastHost] is your high-performance [https://www.yourlasthost.com/openvz-vps.php OpenVZ VPS Hosting] Provider. Get your perfect [https://www.yourlasthost.com/openvz-vps.php VPS Hosting] account today! Available in Los Angeles, Dallas, Jacksonville, USA and France, Europe.&lt;br /&gt;
&lt;br /&gt;
== Vietnam ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://appvz.com AppVZ.com] (www.appvz.com) is a leading web solution provider offering domain, hosting, reseller and VPS hosting packages from 2009. Just recently, the company has offered discount packages where customers can avail managed and un-managed VPS for only $9.5 per month.&lt;br /&gt;
&lt;br /&gt;
= Hosting providers comparison =&lt;br /&gt;
&lt;br /&gt;
It is hard to compare all virtual private server offers provided by different hosting providers.&lt;br /&gt;
Sites below can help you with it.&lt;br /&gt;
&lt;br /&gt;
* [https://www.cheapvpsservers.co.uk/ Cheap VPS Servers]&lt;br /&gt;
* [https://www.hostingmyths.com/ Hosting Myths]&lt;br /&gt;
* [https://cheapwebhosting.review/ VPS servers comparison]&lt;br /&gt;
* [https://reviewsquirrel.com/web-hosting-reviews/ Review Squirrel]&lt;br /&gt;
* [http://lowendstock.com/ Lowendstock]&lt;br /&gt;
* [https://www.websitehostingrating.com/ Best Web Hosting Services]&lt;br /&gt;
* [https://foxmaya.com/hosting/best-wordpress-hosting-india/ Best Wordpress Hosting Services]&lt;br /&gt;
* [http://serverbear.com/compare?Sort=RAM&amp;amp;Order=asc&amp;amp;Server+Type=VPS&amp;amp;Monthly+Cost=-&amp;amp;HDD=-&amp;amp;RAM=-&amp;amp;Virtualization=OpenVZ Serverbear]&lt;br /&gt;
* [https://www.comparethehosts.com/vps-web-hosting.htm VPS Web Hosting Reviews]&lt;br /&gt;
* [https://thishosting.rocks/best-cheap-managed-vps/ ThisHosting.Rocks - Managed VPS Providers Comparison]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
http://vpscomp.com&lt;br /&gt;
http://reviewsignal.com/webhosting/compare/&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= See also =&lt;br /&gt;
&lt;br /&gt;
* [[Partners]]&lt;br /&gt;
* [[Download mirrors]]&lt;br /&gt;
* [[VPS vs Dedicated]]&lt;/div&gt;</summary>
		<author><name>Vvs</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.openvz.org/index.php?title=Testimonials&amp;diff=23362</id>
		<title>Testimonials</title>
		<link rel="alternate" type="text/html" href="https://wiki.openvz.org/index.php?title=Testimonials&amp;diff=23362"/>
		<updated>2020-09-25T13:28:32Z</updated>

		<summary type="html">&lt;p&gt;Vvs: /* The best option for what we do */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Following are some comments we've received from OpenVZ users.'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I never looked in much detail into OpenVZ but quite honestly I have my doubts that it is completely sealed off and really doesn't suffer by any of the vulnerabilities I pointed out in my other mail.&lt;br /&gt;
&lt;br /&gt;
OpenVZ is probably at a better spot than the vanilla kernel whith container virtualization, but I ''think they define &amp;quot;secure&amp;quot; much more losely than some folks are aware of''.&lt;br /&gt;
&lt;br /&gt;
[http://lists.freedesktop.org/archives/systemd-devel/2011-April/002078.html Lennart Poettering]&lt;br /&gt;
&lt;br /&gt;
I certainly have received a lot of value from using OpenVZ. One of the greatest open source values in the world!&lt;br /&gt;
&lt;br /&gt;
[https://twitter.com/mperkel/status/616622538081218560 Mark Perkel]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
I hope this helps their popularity. OpenVZ is an amazing, production quality lightweight virtualization technology. Used virtuozzo containers for infrastructure servers for years at my previous employer, and used openvz containers to run high traffic web sites for small businesses. It will most likely be years before lxc reaches the capabilities OpenVZ had in 2008.&lt;br /&gt;
&lt;br /&gt;
[https://lwn.net/Articles/647058/ LWN commenter]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
We are very pleased with OpenVZ - stable and very functional.&lt;br /&gt;
Really a 100% recommend for almost any type of infrastructures.&lt;br /&gt;
It would be nice if RHEL7/CentOS7 support is added soon.&lt;br /&gt;
Also seems that the recommended panel - OVZ Web Panel is not very well maintained and a bit outdated.&lt;br /&gt;
We are using it and it is not very stable or production ready for customer usage and is slow developing.&lt;br /&gt;
''Mitkov, VPSBG.eu CEO''&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
We’re booting 120,000 containers per day on OpenVZ, it’s okay I guess.&lt;br /&gt;
&lt;br /&gt;
''[https://twitter.com/roidrage/status/517776484342452226 Mathias Meyer], Travis CI'',  ''[https://twitter.com/travisci/status/311376020034953217 Travis CI Official Twitter]''&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
Bolszoje spasiba! :D&lt;br /&gt;
&lt;br /&gt;
''Paweł Tęcza, Bugzilla {{B|658#c7}}''&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Thank you OpenVZ guys. You rocks!&lt;br /&gt;
 &lt;br /&gt;
''Alex, Bugzilla {{B|796}}''&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
OpenVZ is awesome! We used it to build the entire infrastructure for WebEnabled's Instant Development Platform.&lt;br /&gt;
 &lt;br /&gt;
''Salim Lakhani, [http://WebEnabled.com/ WebEnabled]''&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
I'm curious.  For the past few months, people@openvz.org have discovered&lt;br /&gt;
(and fixed) an ongoing stream of obscure but serious and quite&lt;br /&gt;
long-standing bugs.&lt;br /&gt;
&lt;br /&gt;
How are you discovering these bugs?&lt;br /&gt;
&lt;br /&gt;
''Andrew Morton, [http://openvz.org/pipermail/devel/2007-July/006281.html Devel mailing list]''&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
OpenVZ, which also is vying for inclusion in the mainstream Linux kernel, would complement Xen well and has impressed me in the initial testing I've conducted.&lt;br /&gt;
&lt;br /&gt;
''Jason Brooks, Senior Analyst, Ziff Davis. [http://www.eweek.com/c/a/Linux-and-Open-Source/Red-Hat-Isnt-Exhibiting-XenOphobia/ eweek.com]''&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
I just wanted to congratulate you and the rest of the OpenVZ team for your&lt;br /&gt;
excellent, excellent work. We are now have an OpenVZ subject in our 120&lt;br /&gt;
hours Total Linux course here at the Bluepoint Foundation, and our&lt;br /&gt;
students really appreciate the work you've done. I'm learning a lot from&lt;br /&gt;
lurking in the devel list too. Thanks again and keep 'em coming! :D&lt;br /&gt;
&lt;br /&gt;
''Engels Antonio, [http://bluepoint.com.ph/ Bluepoint Foundation]''&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
I would say, OpenVZ is '''United States of Linux''' because i can run all my lovely different type of GNU/Linux distributions(States) on '''one single machine''' with '''one kernel''' model. As stable as guaranteed for production server and handy for software development (well no more dual, tri, quad boot partition). After all, it is just a good quality software piece for Linux User. Again, welcome to '''United States of Linux''' world!!&lt;br /&gt;
&lt;br /&gt;
''Victor, System Admin, [http://www.kholix.com kholix.com]''&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Thanks for producing OpenVZ, we use it ourselves at PlanetMirror and&lt;br /&gt;
find that it's fantastic.&lt;br /&gt;
&lt;br /&gt;
''Robert McLeay, PlanetMirror.com stuff''&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
OpenVZ is about the greatest thing we've ever found, and we're SO glad for it.&lt;br /&gt;
&lt;br /&gt;
''Gregor Mosheh, HostGIS'' [https://openvz.org/pipermail/users/2007-August/001104.html]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
OpenVZ has me seriously impressed, I was looking to try virtualisation technology and got OpenVZ up and running in only 3 trips to the coffee machine! ''-barf''&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
We've been running OpenVZ in a production environment for a few years for a multitude of tasks.  It's been nothing short of amazing, stable, and resource friendly!  Thanks to all those who have contributed to make OpenVZ even better over the years!&lt;br /&gt;
&lt;br /&gt;
''Eric Thern, Technical Director, [http://www.zoidial.com Zoidial Hosting and VPS]''&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Hello all, just downloaded and installed OpenVZ, and i must say its a big improvement over other container systems that i have tested IMHO.&lt;br /&gt;
[http://forum.openvz.org/index.php?t=tree&amp;amp;goto=646&amp;amp;#msg_646]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Virtuozzo and openvz are wonderful - I don't know why more people aren't&lt;br /&gt;
using them. I hear a lot of hype for xen and usermode but&lt;br /&gt;
virtuozzo/openvz is so great for many common needs.&lt;br /&gt;
[http://forum.openvz.org/index.php?t=rview&amp;amp;goto=650#msg_650]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
For my needs, OpenVZ is better than Xen. The one-kernel approach conserves memory, leaving more for applications. And having all container in one disk partition saves disk space. A surprise bonus was the template cache management with yum. The ease of keeping templates updated and quickly installing new operating environments is yummy!&lt;br /&gt;
[http://forum.openvz.org/index.php?t=rview&amp;amp;goto=3119#msg_3119]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
I agree with you very much. I would say for enterprise use where cost/efficiency is not a factor, Xen has an edge over VZ. However for a service provider or other situation where CPU/RAM/DISK resources are shared among environments to ensure profitability/efficiency, openvz is far superior. Also, VZ is much simpler to use, and all of the command line utilities are well documented.&lt;br /&gt;
[http://forum.openvz.org/index.php?t=tree&amp;amp;th=572&amp;amp;mid=3122]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Last week when we were in limbo about what to do, it was decided to try out XEN Virtualization. From what is written in the press the Xen system has alot of promise, Features such as opensource with live migration and backups sounds great; but was far too complicated to get working in our configuration. OpenVZ was the only virtual server system that was simple to install and get working.&lt;br /&gt;
[http://forum.openvz.org/index.php?t=msg&amp;amp;goto=568#msg_568]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
It still amazes me how well OpenVZ works.&lt;br /&gt;
[http://forum.openvz.org/index.php?t=msg&amp;amp;th=368&amp;amp;#msg_2086]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
[03:30:15] &amp;lt;pookey&amp;gt; well, I've been using openvz for all of about an hour, and I'm pretty impressed so far :)&amp;lt;br/&amp;gt;&lt;br /&gt;
''from #openvz IRC channel''&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
I am playing around for years with all major virtualization environments like all VMware products, Microsoft and several xen based solutions. But OpenVZ is the overall winner. [http://blog.openvz.org/14313.html]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
I messed around with VMWare and Xen. I found VMWare to be somewhat over kill and Xen was damned hard to get working. The user community on the Xen mailing list is rather hostile. It looked like A number of people hang out there for the sole purpose of flaming the clueless.&lt;br /&gt;
&lt;br /&gt;
I've found the OpenVZ folks to be very helpful and knowledgeable. OpenVZ is simple to install and get running. It pretty much satisfies my needs. [http://blog.openvz.org/14313.html?thread=17897#t17897]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
I'm a sysadm and have always used xen/qemu/virtualbox/vmware server for my VMs and my customer's ones. Yesterday I decided to give OpenVZ a try and... I'm amazed. It's fast, easy and reliable.Live migration works like a charm and the use of rsync assures low data transfers. Great. [http://forum.openvz.org/index.php?t=tree&amp;amp;goto=14724&amp;amp;#msg_14724] ''Stefano Marinelli, http://www.dragas.net''&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
OpenVZ is one of the few pieces of software that I truly love. It works wonderfully. It should become part of the mainline kernel. ''Nick Andrew, http://www.nick-andrew.net''&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
And thanks again for OpenVZ. Our business couldn't do what we do, as well as we do, with VMWare or Xen. ''Gregor Mosheh'', System Administrator, HostGIS cartographic development &amp;amp; hosting services.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Thank you for OpenVZ by the way... it is awesome. It saves me hours of work every day. ''Eric Gearhart, http://nixwizard.net''&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
For us at [http://www.signet.nl Signet], OpenVZ is ideal as a virtualization platform as it's open-source, no vendor lock-in's and great performance. It perfectly integrates into our high-availability SAN and server setup so it's great. ''Remco Bressers, http://www.signet.nl''&lt;br /&gt;
For us at [https://webuniversal.pe/hosting-peru-profesional/]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
Indira Gandhi National Open University, India (IGNOU) is the world's largest open university in terms of student enrolments (2.5 + million approx.) for different programmes. Catering web based services to such large student fraternity is indeed a hard task. The systems and services were heavily biased towards proprietary corporations products, thereby, aggravating the quality of service to its intended audience. Moreover, virtualization was a blackbox to the IT department of IGNOU, until May 2009. Thereafter the entire networks and systems were stunned to see at least 4 Mediawiki sites , 1 tomcat based Java application, 2 Subversion server for in-house development &amp;amp; networking team, 1 egroupware server on a single SUN Fire X 4140 powered by Debian &amp;amp; OpenVZ. &lt;br /&gt;
All the services are live with downtime of 5 hours(due to electrical outage, ISP downtime) since May 2009 till date. That makes 99.91 % uptime. &lt;br /&gt;
Kudos to OpenVZ team for making this possible.&lt;br /&gt;
--[[User:Sukant.kole|Sukant Kole]], [http://aciil.ignou.ac.in ACIIL]23:37, 13 January 2010 (UTC)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
OpenVZ helps companies and SMEs who wish to get benefit from IT softwares at a low cost in equipment and electricity. Easy to implement and scalable from a simple to a more complex infrastructure, OpenVZ is currently the best solution we found to run safely an elastic range of SaaS services from the GNU free software suite, and therefore, achieve our business objectives and those of our clients. OpenVZ helps us also to make efficient backups of our servers using rsync and SSH tools and replication for high availability enterprise infrastructure, because that's the most important.&lt;br /&gt;
&lt;br /&gt;
Secure jailing and virtualization, promotes green and energy efficient technology, elastic, easy replication and backups : those are the reasons why we trust and choose OpenVZ.&lt;br /&gt;
 &lt;br /&gt;
''David Côté-Tremblay, [http://solib.ca/ SOLIB Québec - Linux, Logiciel Libre et Open Source]''&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== OpenVZ keeps my spam filtering business running ==&lt;br /&gt;
&lt;br /&gt;
I'm in the spam filtering business, [http://www.junkemailfilter.com Junk Email Filter] and I'm running OpenVZ on everything. I love the virtualization for several reasons. In spam filtering there is a lot of redundancy and duplication across machines. I have a network of front end Exim servers as a front end MTA. I also have Spam Assassin virtual servers, regular name servers, caching name servers, RBL servers, post processing spam servers, and servers gathering statistics and building white and black lists.&lt;br /&gt;
&lt;br /&gt;
By modularizing the functions and creating multiple OpenVZ servers I can move virtual machines from computer to computer to balance loads across several physical servers. I can create servers with different permissions so that many of these servers are more secure in that they only have root as the only real login user. If I need to expand I just buy more computers and populate them with the right combination of virtual servers.&lt;br /&gt;
&lt;br /&gt;
I chose OpenVZ over other virtualizations because OpenVZ is fast and efficient. It is in fact the most fast an efficient because it sacrifices some of the features of true virtualization. It's Linux only and has a single kernel. But my needs are Linux only and OpenVZ has almost no overhead at all. It doesn't leave memory fragmented into virtual machines that never use all their ram. Instead the memory limits are just caps and memory usage depends on what you run.It's fast, it's simple, and it just works.&lt;br /&gt;
{{unsigned|Mperkel|17:23, 22 January 2010}}&lt;br /&gt;
&lt;br /&gt;
== Now My favorite utility ==&lt;br /&gt;
&lt;br /&gt;
OK: I did discover that it has serious failings when used as an FTP server.  But I can run 3 complete and independant web servers on a Pentium-4 machine with 512 Meg ram and a single 80 Gig drive with space, memory, and cycles to spare!!  KILLER!&lt;br /&gt;
&lt;br /&gt;
We now have a true server class machine running about 120 client web sites used for accessing a special web application.  I think LXC might do that, I could not deploy and tune so many in a year: with openvz I could do that many in a week.  It would only take THAT long because of the individual data links for the application.&lt;br /&gt;
&lt;br /&gt;
I just wish Corporate would allow me to purchase commercial product to gain the central management!&lt;br /&gt;
&lt;br /&gt;
Im no way close to even being an amateur Linux System Admin. But this by far blows all other products ive worked with, with flexebility and ease of configuration&lt;br /&gt;
&lt;br /&gt;
== Virtualization solution Found! ==&lt;br /&gt;
&lt;br /&gt;
Looking for a Virtualization solution to add VPS services to my company, OpenVZ works perfectly! - Chad in NY&lt;br /&gt;
&lt;br /&gt;
== Misc ==&lt;br /&gt;
Thanks for producing OpenVZ, We find that it's fantastic. thanks again. {{unsigned|Pooja007|10:01, 21 October 2011}}&lt;br /&gt;
&lt;br /&gt;
== The best option for what we do ==&lt;br /&gt;
We have no other reason to choose any other software! OpenVZ is deficiently the correct choice for our VPS Services.&lt;br /&gt;
&lt;br /&gt;
[http://www.hostsurfuk.com Host Surf UK]&lt;br /&gt;
&lt;br /&gt;
Works very well for what we do.  Low overhead and no problems hosting a real time application.  The guys who work on the OpenVZ kernel are amazing.&lt;br /&gt;
&lt;br /&gt;
[http://vps.powerpbx.org Asterisk Hosting]&lt;br /&gt;
&lt;br /&gt;
Works really well and is very stable! We haven't faced any issues yet and the community is great. ''Jay Svoboda'', [http://tailoredvps.com Tailored VPS]&lt;br /&gt;
&lt;br /&gt;
Our VPS are based on OpenVZ, the best solution we found so far for our Cloud VPS services, no issues so far and great server performance. ''[https://twitter.com/Infranetworking/status/744900443025842176 From Infranetworking's Twitter Account]'' - ''Esteban Borges, https://www.infranetworking.com''&lt;br /&gt;
&lt;br /&gt;
----&lt;/div&gt;</summary>
		<author><name>Vvs</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.openvz.org/index.php?title=Hosting_providers&amp;diff=23361</id>
		<title>Hosting providers</title>
		<link rel="alternate" type="text/html" href="https://wiki.openvz.org/index.php?title=Hosting_providers&amp;diff=23361"/>
		<updated>2020-09-25T13:24:07Z</updated>

		<summary type="html">&lt;p&gt;Vvs: /* Spain */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''OpenVZ is free and open implementation of Virtuozzo containers for Linux.&lt;br /&gt;
Don't forget to keep [[testimonials|testimonial]] and [[donate]] to OpenVZ.'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
OpenVZ makes for a great hosting platform for VPS hosting. The providers below offer VPS services using OpenVZ.&lt;br /&gt;
&lt;br /&gt;
[[File:UsageLocation.svg]]&lt;br /&gt;
&lt;br /&gt;
= OpenVZ hosting providers =&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- @@@@@@@@@@@@@@@@@@@@@@@&lt;br /&gt;
&lt;br /&gt;
IF YOU EDIT THIS PAGE,  PLEASE OBEY TO THE FOLLOWING RULES:&lt;br /&gt;
&lt;br /&gt;
1. Keep your record on ONE line&lt;br /&gt;
2. Keep the list of providers alphabetically sorted, DO NOT insert your record on top.&lt;br /&gt;
3. Keep the list of countries alphabetically sorted as well.&lt;br /&gt;
&lt;br /&gt;
     @@@@@@@@@@@@@@@@@@@@@@@@ --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Andorra ==&lt;br /&gt;
* [https://www.actiu.net/pro/ Actiu informatica] amb servidors dins i fora del principat.&lt;br /&gt;
&lt;br /&gt;
== Argentina ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.fulltech.com.ar/ Full Tech Solutions] Specializes in the virtualization of OpenVZ &amp;amp; Virtuozzo containers, installed in the Full Tech Solutions Data Center located in Villa Elisa, Entre Rios Argentina.  It also offers services hosted in the United States, Netherlands and Germany&lt;br /&gt;
* [http://www.g2khosting.com/ G2K Hosting] offer OpenVZ containers with high level hardware technology from 25 US with Control Panel, various Linux Dists and full support.&lt;br /&gt;
* [https://hostingplus.com.ar/ HostingPlus Argentina] provide OpenVZ containers at our own datacenter in South America with triple internet provider. Starting from  us20/month&lt;br /&gt;
* [https://ibumu.com/ Ibumu] Best containers for wordpress starting from $5.5.&lt;br /&gt;
* [http://www.ihserver.net/ IHServer] Specialized virtualization on OpenVZ containers at Gigared datacenter. We have in Argentina one of the better fiber connection to the US, but also provides services from LSTN in Texas.&lt;br /&gt;
* [https://www.infranetworking.com.ar/ Infranetworking] All our Cloud VPS container solutions for Argentine customers are powered by the all mighty OpenVZ virtualization software.&lt;br /&gt;
* [https://www.neolo.com/ Neolo] provide OpenVZ containers at our own datacenter in South America with double internet provider. Choose your Linux OS and apps. Full support.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [http://www.wiredhosting.com.ar/ WiredHosting] offer XEN and OpenVZ containers with SSD drives, cloudflare security and weekly backups to protect your information. Phone and Helpdesk support. &lt;br /&gt;
&lt;br /&gt;
== Australia == &lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.auhost4u.com/ AUHost4u] - VPS Solutions provided from our D.C. in Sydney.&lt;br /&gt;
* [https://www.conetix.com.au/ Conetix Hosting] Specialising in business grade, fully managed Virtuozzo containers with Virtuzzo Cloud Storage. 100% Australian owned and operated. Brisbane based DC with Enterprise Dell servers.&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides self-managed OpenVZ based SSD VPS located at Equinix SY3 in Sydney, one of the best and well-connected datacenters in the region.&lt;br /&gt;
* [http://www.vpsfast.us/australia-cloud-server VPSFast] - VPS Provider with good prices in Australia.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Austria ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
* [https://kapper.net/ kapper.net] kapper.net offers OpenVZ and Virtuozzo (and other HyperVisors) based server-solutions with kind support and 24x7 maintenance.&lt;br /&gt;
* [https://mdhost.eu/vserver.php MDHost.eu] New Hosting Provider with nice Prices and many Server locations. Austria, Germany, France and more.&lt;br /&gt;
* [https://www.snb.at/ SNB] offers OpenVZ containers and support's also existing vm's in customers environment&lt;br /&gt;
* [https://www.waveride.at/ Waveride] Waveride, an EDIS company, offers budget full gigabit OpenVZ + solusVM VPS in Austria, USA and the Netherlands&lt;br /&gt;
* [http://www.vpsfast.us/austria-cloud-server VPSFast] - VPS Provider with good prices in Austria.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Brazil ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.datacorporate.com.br/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [http://www.globalmedia.com.br/ GlobalMedia] We offers OpenVZ containers hosted on a very fast network with fast setup. Ubuntu, Debian, CentOS.&lt;br /&gt;
* [http://www.host1plus.com.br/ Host1Plus] Servers hosted in São Paulo. We offering reliable and secure OpenVZ VPS Servers with 99.99% up-time, starting from $5.00 per month.&lt;br /&gt;
* [http://www.ipdeck.net/ IPDECK] VPS Linux server from R$15,00/month! Fully customizable according to your needs.&lt;br /&gt;
* [https://www.quantivehost.com.br/ QuantiveHost] VPS Linux with 99.99% uptime. Prices starting from R$ 29,35.&lt;br /&gt;
* [https://www.elevahost.com.br/ Eleva host] Server hosted in Brazil. The best support.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [https://www.ferenz.com.br/ Ferenz Networks] VPS Linux with best support. Prices starting from R$ 29,90.&lt;br /&gt;
&lt;br /&gt;
== Bulgaria ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.cloudhostinghub.com Offshore VPS Hsoting] CloudHostingHub.com is an [https://www.cloudhostinghub.com Cloud Offshore VPS Hosting] located in Buglaria. They provide both OpenVZ and KVM virtualization. CloudHostingHub.com is known for the high privacy protection , performance and stability.&lt;br /&gt;
* [https://www.cyberhour.com CyberHour.com] CyberHour.com is an [https://www.cyberhour.com offshore VPS hosting] provider located in Europe. The provide blazing fast servers and premium Bandwidth of 200Mbps. With high privacy protection.&lt;br /&gt;
* [https://www.linuxssdvps.com Bulgaria VPS] Linux SSD VPS is an [https://www.linuxssdvps.com offshore VPS hosting] provider located in Sofia, Bulgaria. Privacy is very respected and anonymous registrations are allowed, as well as payments via Bitcoin / PayPal.&lt;br /&gt;
* [http://www.webuzo.net Bulgaria VPS] Webuzo Network is an offshore SSD VPS hosting provider located in Bulgaria. Privacy is very respected and anonymous registrations are allowed, as well as payments via Bitcoin / PayPal.&lt;br /&gt;
* [https://vpsbg.eu/en Bulgaria VPS] VPSBG.eu is an offshore SSD VPS hosting provider located in Sofia, Bulgaria. Privacy is very respected and anonymous registrations are allowed, as well as payments via Bitcoin.&lt;br /&gt;
* [http://www.bul.net/ Bul.net] Provides OpenVZ based VPS, perfect user/VPS management via [http://ispsystem.com VDSManager]. Instant creation after online payment. Debian/Ubuntu/CentOS with ISPManager Control panel. Optimal price policy.&lt;br /&gt;
* [http://www.cointech.eu/vps-hosting/ CoInTech] provides OpenVZ based VPS containers, free webmin managment. Containers can be CentOS, Slackware, Ubuntu, custom or our special [http://www.mandriva.com Mandriva Linux] container with own [http://mandriva.cointech.net repository].&lt;br /&gt;
* [http://www.rax.bg/ RAX.bg] Offers OpenVZ based VPS, hosted on a clustered infrastructure and redundant network. Easy to use user management, Instant setup, CentOS (OS).&lt;br /&gt;
* [http://www.jump.bg/ Jump.bg] Provides OpenVZ VPS servers hosted on a redundant network which provides a very easy to manage platform for all clients which gain instant access to their OS ( Ubuntu, CentOS , Debian etc ... )&lt;br /&gt;
* [https://www.fitvps.com/ FitVPS.com] Offers affordable and reliable OpenVZ based VPS in Varna, Bulgaria. Own data center, own multihomed network, with SLA. Instant automatic setup, SolusVM control panel.&lt;br /&gt;
* [http://www.qhoster.com/ QHoster.com] Instant activation OpenVZ VPS in UK, USA, Germany, France and Switzerland. Both 32/64 bit OpenVZ OS VPS templates : CentOS 5/6, Debian 6/7, Ubuntu 12/13.&lt;br /&gt;
* [https://www.verdina.net Verdina.NET] Verdina.net offers dedicated hosting services, provided by powerful dell hardware. Servers are located in Telepoint Datacenter, a Tier 3 DC located in Sofia, Bulgaria.&lt;br /&gt;
* [https://www.vps.ag/ VPS.AG] Affordable and reliable OpenVZ VPS based in Sofia, Bulgaria. Instant setup and 24/7 support.&lt;br /&gt;
* [http://www.vpsfast.us/bulgaria-vps VPSFast] - VPS Provider with good prices in Bulgaria.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Canada ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://4goodhosting.com/linux-vps-hosting 4GooodHosting] - Canadian OpenVZ VPS Servers, Starting from  $18.99/month SSD,. Canada VPS hosting in three different Canadian Data Centers with nightly backups.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [https://whc.ca/canadian-cloud-servers Web Hosting Canada Cloud Servers] - Powerful Cloud servers powered by OpenVZ and located in Canadian datacenters, with fast RAID-10 storage, fully managed with cPanel.&lt;br /&gt;
* [http://compevo.com compevo Clustered VPS Server Hosting Provider] - We offer clustered VPS Servers to avoid downtime and dataloss. Our network and service is second to none and is used by businesses around the world.&lt;br /&gt;
* [http://www.datacorporate.ca/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [https://www.delimiter.com/storage-vps/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [https://www.miditech.com/ MidiTech Hosting Canada] VPS hosting offered by MidiTech Canada are powered by VMware, . Fully Managed VPS with control panels&lt;br /&gt;
* [http://www.gotekky.com Gotekky Cloud VPS Hosting] High quality Cloud VPS packages powered by our own infrastructure and network in Toronto. Scalable from our $5/mo plan all the way to your own dedicated cloud server. Based on OpenVZ and our own proprietary panel.&lt;br /&gt;
* [https://gigebox.com GIGEBOX.COM] GIGEBOX are expert providers of secure business hosting services, we operate high-performance professional servers, specially designed for businesses, powered by the Intel(R) Xeon(R) Hexa-Core CPU Processors and 128 GB DDR3 minimum RAM. Enjoy high availability, performance and security for multiple uses.&lt;br /&gt;
* [http://www.letstalkdigital.com/index.php?option=com_content&amp;amp;view=article&amp;amp;id=73&amp;amp;Itemid=65 LetsTalkDigital VPS Hosting] LetsTalkDigital.com offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from $14.99. Virtual Private Server (VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://secure.media-hosts.com/link.php?id=7 Media-Hosts.com] Provides Quality and Scalable OpenVZ based Virtual Private Servers. 100% network uptime guaranteed. Located in Montreal Quebec with 5 Tier1 upstream providers.&lt;br /&gt;
* [http://www.openvz.ca OpenVZ.ca] Canadian Budget VPS Servers on OpenVZ Platform. &lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [http://protoserver.com ProtoServer] Advanced VPS Hosting from $4.95/month. Many pre-installed VPS Templates available (CMS, E-commerce, Web development, Online community, Media streaming, etc.) No bundles or service plans - mix VPS resources as needed and change VPS configuration anytime. Also offering DNS Hosting, E-mail hosting, Domains Registration.&lt;br /&gt;
* [http://www.vistapages.com/vps Vistapages VPS] - IBM &amp;amp; Dell Hardware. MCI/Verizon Backbone. Distros: Centos, Fedora, Debian &amp;amp; more. Full management available. Located in Toronto.&lt;br /&gt;
* [http://vpsville.ca/ VPSVille] - Good network. Good CPU. Good choice of distros: Centos, Fedora, Debian, Ubuntu, Slackware, Gentoo, OpenSUSE, CERN. My favorite OpenVZ provider. [mailto:jak@isp2dial.com John Kelly]&lt;br /&gt;
* [http://solib.ca/services-offerts/hebergement-haute-vitesse/serveurs-vps/ SOLIB Logiciel Libre Québec] Our company offers DDoS protected server solutions including OpenVZ containers. Very high availability and reliability, all our VPS are located in Quebec, Canada.&lt;br /&gt;
* [https://www.host-stage.net/linux-vps/ HostStage - Linux VPS] - Simple, Reliable OpenVZ VPS packed with 1 GBPS port speed, RAID 10 SSD, Intel Xeon CPU, DDoS Protection from $4.95/month&lt;br /&gt;
* [https://undergroundprivate.com/russiaoffshorevps.html  UndergroundPrivate.com] - OpenVZ with highly privacy, offshore , DMCA ignored , high confidence, SolusVM and cPanel, managed and non managed service.&lt;br /&gt;
* [http://www.vpsfast.us/canada-vps VPSFast] - VPS Provider with good prices in Canada.&lt;br /&gt;
* [https://websavers.ca/canadian-vps-hosting Websavers Inc in Halifax] - VZ containers priced by the resource. Resource changes entirely client-level.&lt;br /&gt;
* [https://www.yoorshop.fr/hosting-ssd-vps-usa-canada.php YOORshop SAS] - High performance NVMe SSD Linux VPS in Canada, daily backup included. Starting from €7,49 /month&lt;br /&gt;
&lt;br /&gt;
== Colombia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.datacorporate.co/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [http://www.soficol.com/ Soficol] Offers Enterprise OpenVZ based VPS, hosted on a clustered infrastructure and redundant network. Easy to use user management and instant setup.&lt;br /&gt;
* [https://www.hostingplus.com.co/ Hosting Plus Colombia] provide OpenVZ containers at our own datacenter in South America with triple internet provider. Starting from  us20/month&lt;br /&gt;
* [https://ibumu.com/ Ibumu] Best containers for wordpress starting from $5.5.&lt;br /&gt;
&lt;br /&gt;
== Czech Republic ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://4smart.cz 4Smart.cz] - prepaid, you are charged only by the system resources you use, therefore you can run a VPS for as little as  1 EUR a month if your vps is not resource hungry. Even if you pay  0,50 EUR  month, you still have 3 GB of RAM and 8 cores available to you VPS.&lt;br /&gt;
* [http://www.freecloud.cz FREECLOUD.CZ] - Free OpenVZ VPS Server - own IP, 800Mhz CPU, 512MB RAM, 50Mbits LAN, 10GB HDD, 100GB Traffic - Debian, Ubuntu, Gentoo, Slackware, Fedora, Centos&lt;br /&gt;
* [http://www.hukot.cz Hukot.cz] - OpenVZ VPS Servers starting from 2.92 €, XEON, 1 Gbps uplink, unlimited traffic. Debian, Ubuntu, CentOS, Scientific, SuSe, Fedora, Elastix.&lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [http://www.ultimatehosting.eu UltimateHosting.eu] - OpenVZ VPS Servers starting from $8 with custom configuration - up to 100 GB HDD, 2048 MB RAM, 2 GHz CPU, and unlimited traffic.&lt;br /&gt;
* [http://www.mujhost.net MUJHOST.NET] - OpenVZ VPS Servers starting from 160 Kč, 100Mbps / 1 Gbps uplink, unlimited traffic. Debian, Ubuntu, CentOS ...&lt;br /&gt;
&lt;br /&gt;
== Chile ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.1h.cl/ 1h.cl Vps - Chile] - VPS High Performance with OpenVZ in Chile&lt;br /&gt;
* [http://www.1hosting.cl/ 1hosting Virtual servers - Chile] - VPS Professional with OpenVZ&lt;br /&gt;
* [http://www.dch.cl/ DCH] - DCH.cl Hosting Chile - High Performance VPS Servers with OpenVZ &lt;br /&gt;
* [https://www.dominioweb.net/ Dominioweb] - Premium Hosting and domain registration&lt;br /&gt;
* [http://ecohosting.cl/ EcoHosting.cl Santiago - Chile] - VPS with OpenVZ in Chile&lt;br /&gt;
* [http://www.host.cl/ Host.cl] - Cloud Computing&lt;br /&gt;
* [https://www.hostingplus.cl/ HostingPlus Internet Limitada] - High Performance Vps provider in Chile&lt;br /&gt;
* [https://www.hostname.cl/ Hostname Ltda] - VPS Hosting with Datacenter in Chile&lt;br /&gt;
* [https://www.inc.cl/ INC Internet Limitada] - VPS Hosting provider in Chile&lt;br /&gt;
&lt;br /&gt;
== Denmark ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.vpsfast.us/denmark-cloud-server VPSFast] - VPS Provider with good prices in Denmark.&lt;br /&gt;
&lt;br /&gt;
== Ecuador ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.dedi.space/ DediSpace Telecom] - VPS Servers in Ecuador - USA, France, Germany, Ecuador Datacenter.&lt;br /&gt;
&lt;br /&gt;
== France ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.BargainVPS.co.uk/ BargainVPS] - UK / US / EU Instant setup VPS - We have some great Linux &amp;amp; Windows Bargain VPS packages on offer for you here all available Fully Managed.&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in France from 1.88EUR/month.&lt;br /&gt;
* [http://www.fixweb.com Fixweb] Great managed hosting provider with strong anti ddos solution - openvz only - leader in managed openvz solution with horizontal scaling and high availability&lt;br /&gt;
* [http://www.Freaksol.com/ FreaKs VPS Hosting] Self reliant hosted on independent networks &amp;amp; DC low ping,No restrictions on file types,Unlimited resources,high ram servers &lt;br /&gt;
* [https://galaxyhostplus.com/ovz GalaxyHostPlus] Cheap VPS Hosting based in Roubaix with new 2016 line starts from $2/Month &lt;br /&gt;
* [http://www.harmony-hosting.com Harmony-Hosting] A high performance VPS hosting - The leader in France&lt;br /&gt;
* [https://www.delimiter.com/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [http://www.lws.fr/serveur_dedie_linux.php LWS - Linux VPS ] - Linux VPS Hosting - Only 9.99€/month, Affordable and Secure OpenVZ VPS Servers with 99.99% up-time, web hosting control panel Included. French datacenter&lt;br /&gt;
* [http://www.ovh.co.uk/vps/ OVH VPS] linux from 3€/month, [http://www.ovh.co.uk/vps/vps-cloud.xml windows] from 12€/month.&lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [https://VPSZ.FR VPSZ] VPS Hosting in France. Starting from 2,99€, Unlimited traffic.&lt;br /&gt;
* [http://www.1euro-hosting.eu BEST EU VPS - 1€ Hosting] - Providing reliable and secure OpenVZ VPS Servers with 99.99% up-time, starting from 8€&lt;br /&gt;
* [https://www.shape.host/linux-vps/ Shape Host - Linux VPS] - OpenVZ virtual servers, Instant Linux VPS&lt;br /&gt;
* [https://undergroundprivate.com/russiaoffshorevps.html  UndergroundPrivate.com] - OpenVZ with highly privacy, offshore , DMCA ignored , high confidence, SolusVM and cPanel, managed and non managed service.&lt;br /&gt;
* [https://www.host-stage.net/linux-vps/ HostStage - Linux VPS] - Simple, Reliable OpenVZ VPS packed with 1 GBPS port speed, RAID 10 SSD, Intel Xeon CPU from $4.95/month&lt;br /&gt;
* [https://www.yoorshop.hosting/hosting-vps-ssd-europe.php YOORshop SAS] - High performance NVMe SSD OpenVZ 7 VPS within 13 countries in Europe, Canada and Singapore. Daily backup included. From €7,49 /month&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Germany ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://afterburst.com Afterburst (Previously FanaticalVPS)]: affordable unmetered, unmanaged VPS servers in Germany.&lt;br /&gt;
* [http://www.b2b-hosting.de/vps/ B2B Hosting]: Professional virtual servers for business applications. Performance and reliability at a fair price. Made with OpenVZ.&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in Germany from 1.88EUR/month.&lt;br /&gt;
* [https://www.delimiter.com/dedicated-servers/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [https://galaxyhostplus.com/ovz GalaxyHostPlus] Cheap VPS Hosting based in Frankfurt with new 2016 line starts from  $2/Month&lt;br /&gt;
* [http://hostmist.com/openvz-vps-germany.html Host Mist]: features budget OpenVZ VPS hosting in Germany.&lt;br /&gt;
* [http://www.host1plus.com/ Host1Plus] Servers based in Frankfurt am Main. Offering reliable OpenVZ based VPS servers in Germany starting from $2.50 per month.&lt;br /&gt;
* [http://www.hostingjuice.com/ HostingJuice] The Superioum VPS and Web Hosting provider, low prices - Premium packages.&lt;br /&gt;
* [http://www.ingate.de/managed-server.html Ingate] offers managed servers with openVZ virtualization. located in germany, great support.&lt;br /&gt;
* [http://linevast.de/angebote/linux-openvz-vserver-mieten.html Linevast] Reliable OpenVZ based VPS with fast support, located in germany&lt;br /&gt;
* [https://cp.myvirtualserver.com/?affid=42 MyVirtualServer]: Cheap VPS (OpenVZ/KVM, 5TB Traffic, 10Gigabit), servers located in Frankfurt (best ping, starting 1.99€) good support (en/de) //New Design!&lt;br /&gt;
* [https://www.nogics.com Nogics Technologies]: Affordable VPS based in Germany. Starts from $5.96/mo.&lt;br /&gt;
* [http://www.plambee.de/vserver.php Plambee.de Webhosting]: Powerfull OpenVZ based VPS servers at low cost with hosting in Germany&lt;br /&gt;
* [https://rackset.com/ Rackset Hosting] Managed Dedicated / VPS and Website Hosting services since 2004.&lt;br /&gt;
* [http://www.serverbiz.de/vserver Serverbiz] Powerful VPS at very low prices.&lt;br /&gt;
* [http://www.synapseglobal.com/voip_vps.html SynapseGlobal.com] Elastix, Trixbox, PBX in a Flash and Asterisk VPS - OpenVZ based Asterisk VOIP servers located in Munich Germany.&lt;br /&gt;
* [http://www.vStarVPS.com vStarVPS]: Reliable VPS Hosting at lowest prices, with 99.9% uptime, Premium Unmetered Bandwidth and Custom HDD/RAM of your choice. Instant and FREE Setup. RapidLeech Allowed.&lt;br /&gt;
* [http://whynotavps.com WhyNOTaVPS]: Instant activated VPS SERVERS!!&lt;br /&gt;
* [http://squote.de/index.php?ref=1421485383 SQuote]: SQuote VPS Hosting and more. VPS 1 Core, 1.024MB RAM, 512MB RAM SWAP, 50 GB HDD, 1x IPv4. 3,89EUR/month. For the best VPS SQuote.de&lt;br /&gt;
* [http://www.vpsfast.us/germany-vps VPSFast] - VPS Provider with good prices in Germany.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Guatemala ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.globalnetcafe.com/gnc/menu/hospedaje.htm Global Net Cafe]: Servicios de hospedaje, reseller, vps, colocacion y servidores. Incluyendo OpenVZ.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Hong Kong ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [https://hostus.us HostUS] features unmanaged and managed OpenVZ VPS in Hong Kong as well as 3 USA locations. Unparalleled connectivity to the Asia Pacific. Enjoy 15% off with coupon VPS15OFF.&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides self-managed OpenVZ based SSD VPS in Hong Kong, located at the Pacnet datacenter. &lt;br /&gt;
* [http://vps.timway.com/linux_vps.html Timway VPS Hosting] - Quality, non-oversold hosting provider focused on being security conscious and offering a positive client experience.   Centos, Debian, Fedora, OpenSuse and Ubuntu Containers are available.&lt;br /&gt;
* [http://www.vpsfast.us/hong-kong-cloud-server VPSFast] - VPS Provider with good prices in Hong Kong.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Hungary ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://elin.hu/index.php?menu=8&amp;amp;nyelv=hu&amp;amp;cim=Virtualis-szerver Virtual server] OpenVZ server: 2xX5650 Intel Xeon, 32GB RAM, 15.000rpm SAS disks, 100Mbit/s, unlimited bandwith.&lt;br /&gt;
* [https://www.ivirtual.co/vps-hosting/ iVirtual.co ] OpenVZ Master Server: 2x Intel Xeon @ 3.0GHZ, 64 GB ECC Ram, 15k RPM SAS HDD's, 1Gbit/s Network, Unlimited bandwith.&lt;br /&gt;
&lt;br /&gt;
== Iceland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
&lt;br /&gt;
== Ireland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== India ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://cochinwebhost.in/budget-vps-hosting/ Low Cost VPS Hosting] Fast SSD VPS Server for Hosting Solutions at budget prices with 24x7 Technical Support.&lt;br /&gt;
* [https://www.cyberhost.in/ Cyberhost] - Affordable OpenVZ containers on high performance quality Servers. Wide choice of virtual dedicated servers with Full management available.&lt;br /&gt;
* [http://www.datacorporate.in/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
*[http://www.fastwebhost.in/vps-hosting.html fastwebhost VPS Hosting] VPS hosting offered by fastwebhost are powered by ''VPS hosting, virtual server hosting and Linux VPS hosting services''. Fully Managed VPS with control panels.&lt;br /&gt;
* [http://www.Freaksol.com/ Freaksol VPS Hosting] Self reliant hosted on independent networks &amp;amp; DC low ping to India,No restrictions on file types,Unlimited resources,high ram servers&lt;br /&gt;
* [https://www.geniushost.in Genius Host] Fully managed [https://www.geniushost.in SSD Web Hosting] offered by Genius Host are powered by ''OpenVZ'' With LiteSpeed Web Server &amp;amp; Mariadb.&lt;br /&gt;
* [http://www.hioxindia.com/virtual-private-server.php VPS Hosting] Reliable and quality VPS Virtual Private Server Hosting&lt;br /&gt;
* [http://www.hostitsmart.com/ Host IT Smart] - One of the best VPS Hosting Provider in India with 24X7X365 Customer support.&lt;br /&gt;
* [https://www.hostnamaste.com HostNamaste] is your high-performance [https://www.hostnamaste.com/openvz-vps.php OpenVZ VPS Hosting] Provider. Get your perfect [https://www.hostnamaste.com/openvz-vps.php VPS Hosting] account today! Available in [https://www.hostnamaste.com/datacenter-losangeles.php Los Angeles], [https://www.hostnamaste.com/datacenter-dallas.php Dallas], [https://www.hostnamaste.com/datacenter-jacksonville.php Jacksonville], USA,  [https://www.hostnamaste.com/datacenter-france.php France], Europe, [https://www.hostnamaste.com/datacenter-mumbai-pune.php Mumbai], India and [https://www.hostnamaste.com/openvz-vps-moscow-russia.php Moscow], Russia.&lt;br /&gt;
* [https://www.hostsoch.in/windows-hosting.html HostSoch Windows Hosting] Windows hosting offered by HostSoch are powered by ''Windows 2012, ASP.NET, MVC, IIS, PHP and More''. 99.9% Uptime, 24/7 Dedicated support guaranteed. &lt;br /&gt;
* [https://www.miditech.co.in/ MidiTech VPS Hosting] VPS hosting offered by MidiTech are powered by ''VMware, ''. Fully Managed VPS with control panels. &lt;br /&gt;
* [http://www.milesweb.com/vps-hosting.php Milesweb VPS Hosting] VPS hosting offered by Milesweb are powered by ''VMware, OpenVZ''. Fully Managed VPS with control panels. &lt;br /&gt;
* [https://www.nogics.com/web/vps-hosting/ Nogics Technologies] Instant provisioning of VPS, VPS starts from $5.96/mo. 30+ OS templates.&lt;br /&gt;
* [http://overlineindia.net/vpshosting-p-62.html Overline India VPS Hosting] Fully managed cPanel Installed VPS Hosting with 24x7x365 Live Chat Tech support, powered by OpenVZ&lt;br /&gt;
* [http://www.prohosterz.com/linux-vps.php ProHosterZ VPS Hosting] Reliable and quality Virtual Dedicated Servers | Virtual Private Servers | XEN VPS | OpenVZ VPS | Virtual Hosting&lt;br /&gt;
* [http://pve.proxmox.com/wiki/User:Apmuthu Ap.Muthu] sponsored by [http://www.gnuacademy.org GNUAcademy], [http://www.planettel.com.sg PlaNetTel] and [http://www.sacollege.net S A College] creates OpenVZ Templates for the Open Source Community and provides hosting in datacenters of clients choice or on site.&lt;br /&gt;
* [http://www.servers.co.in/vps/vps_hosting.php Server Web Hosting] Offers Fully Managed OpenVZ VPS Web hosting in India/US/UK at affordable and cheap rates with best hardware quality and customer service 24/7/365 days&lt;br /&gt;
* [http://touchstone.hosting/ Touchstone Solutions Private Limited] High-performance Enterprise VPS Hosting in India. One of the highest performing VPS Servers available with cPanel Installed.&lt;br /&gt;
* [http://vpsbeach.com VpsBeach Managed Hosting] Fully managed cPanel Installed VPS Hosting with 24x7x365 Live Chat Tech support, powered by OpenVZ&lt;br /&gt;
* [http://www.vpsfast.us/india-vps VPSFast] - VPS Provider with good prices in India.&lt;br /&gt;
* [http://www.vpshostingindia.net/ VPS Hosting India, Fully Managed Server] A Committed Fully Managed VPS Server for Hosting solution in India, Complete Technical Support assistance with commitment of fast, clustered and most supportive DataCenters.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Indonesia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.herza.id/vps-murah/ Herza.ID] Low Cost OpenVZ Virtual Server, starting from IDR 50.000 / Month with RAID 10 SSD, Unlimited Bandwidth with 1 Gbps IIX &amp;amp; OIXP Connection, and 24/7 Technical Support.&lt;br /&gt;
* [https://www.kucingweb.co.id/hosting/vps/ Kucingweb Indonesia] High Performance VPS service with the best choice.&lt;br /&gt;
&lt;br /&gt;
== Iran==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.ehost.ir EHost.ir] - OpenVZ Servers , DUAL XEON Cpus , 12 Gb Ram , 100Mbit Dedicated Connection , SAS HardDisk&lt;br /&gt;
* [https://www.irpower.com IRPOWER Webhostings &amp;amp; Domain] - OpenVZ Servers Since 2005!&lt;br /&gt;
* [http://www.vpsfa.com VPSFa.com] - OpenVZ Servers , DUAL XEON Cpus -  , 24Gb Ram , 1000Mbit Dedicated Connection , SAS HardDisk&lt;br /&gt;
* [https://webramz.com Webramz Host] - With more than 15 years experience in Managed Hosting, Webramz was first vps provider in Iran which used to setup OpenVZ servers. Nowadays we provide wide range of services including CloudLinux based OpenVZ and Managed Vps Servers.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Italy ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
* [http://www.hosting-italia.net hosting italia] - OpenVZ Servers and panel enduser Virtualizor Intel® Core™ i7-920 Quad-Core 48 GB DDR3 RAM - Guaranteed Bandwidth 200 Mbit/s&lt;br /&gt;
* [http://www.vpsfast.us/italy-vps VPSFast] - VPS Provider with good prices in Italy.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Liechtenstein ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
&lt;br /&gt;
== Lithuania ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.cloudlix.com/ CloudLix.com] - Managed and unmanaged OpenVZ virtual servers based on 2.6.32 kernel. Up to 20GHz (Intel SandyBridge) CPU and 10GB RAM. Located in Vilnius and Siauliai.&lt;br /&gt;
* [http://www.databank.lt/ databank.lt] - high-quality professional OpenVZ hosting with cloud computing solutions.&lt;br /&gt;
* [https://www.hostens.com/vps-hosting/ Hostens] - Unmanaged VPS hosting for the great price: clear deals, no hidden conditions, quality service from the heart of Europe. &lt;br /&gt;
* [https://www.lavavps.lt/ lavavps.lt] - Professional high-quality OpenVZ containers (VPS servers) affordable for everyone. Powerful control panel for VPS management.&lt;br /&gt;
* [https://monovm.com/ monovm.com] - High Quality VPS Hosting Provider&lt;br /&gt;
* [http://www.serveriai.lt/ Serveriai.lt] - Affordable OpenVZ containers on quality HP hardware. Wide choice of virtual dedicated servers up to 8 CPU cores and 8 GB RAM. Full management available. Located in Vilnius.&lt;br /&gt;
* [https://www.time4vps.com/?affid=1359 Time4VPS] - Powerful cloud technology based infrastructure will let you build custom virtual machine and pay only for what you really need. Located in Vilnius city.(0.99€/month(2Yr) 512mbRAM, 1TB Traffic// 4.5€/month(2Yr) StorageVps, 1TB, 10TB Traffic)&lt;br /&gt;
* [https://www.vpsnet.lt/en/ VPSnet.lt] - Powerful and high quality servers for a competitive price in Lithuania (Eastern Europe).&lt;br /&gt;
* [http://www.vpsfast.us/lithuania-vps VPSFast] - VPS Provider with good prices in Lithuania.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Latvia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.altnet.lv/ Altnet] - Hosting and colocation services. Any flawor, you name it. &lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
&lt;br /&gt;
* [http://www.vpsfast.us/latvia-vps VPSFast] - VPS Provider with good prices in Latvia.&lt;br /&gt;
&lt;br /&gt;
== Luxembourg ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.vpsfast.us/luxembourg-vps VPSFast] - VPS Provider with good prices in Luxembourg.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Malaysia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.cubiex.com/ Cubiex] - Malaysia Affordable Web Hosting and Domain Name. Affordable Linux VPS Hosting in Malaysia. OpenVZ based, Quad Core Xeon node. cPanel/WHM and DirectAdmin also available.&lt;br /&gt;
* [https://controlvm.com ControlVM] ControlVM Sdn. Bhd. offering OpenVZ VPS in Singapore, Malaysia, USA and Germany.&lt;br /&gt;
* [https://www.yoorshop.fr/hosting-ssd-vps-singapore-asia.php YOORshop SAS] - High performance SSD Linux VPS In Singapore with daily backup included. Starting from €7,49 /month&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Malta ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.a6it.com/ A6iT] - Stable, quality managed OpenVZ VPSs based in Malta.  Redundant network.&lt;br /&gt;
&lt;br /&gt;
== Morocco ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.belsemtech.com/ BelsemTech.CoM] BelsemTech SARL offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from 300 DH. Virtual Private Server (VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://www.hostoweb.com/ HosToWeb] is the only company providing VPS hosting in Morocco Data Center.&lt;br /&gt;
* [http://www.adk-media.com/ ADK Media] provides affordable managed and unmanaged virtual servers based on OpenVZ, Xen Paravirtualization and Xen HVM platforms. 24/7 Technical Support. Distros: Centos, Fedora, Debian, Ubuntu and more.&lt;br /&gt;
* [http://www.naja7host.com/ Naja7Host.CoM] The Naja7host SARL provides affordable VPS hosting using the OpenVZ platform. Running on Full Quality Nodes of up to 8 CPU and 16 GB RAM. . All VPS's come with Real 24/7/365  Technical Support and cPanel free (if option selected  ). Multiple choice of OS 32/64Bits (Centos, fedora, ubuntu, debian .ect ...)&lt;br /&gt;
* [http://www.lehoster.com/ Le Hoster] offers affordable Virtual Private Servers using the OpenVZ and KVM platform. Backed with our amazing customer support.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Netherlands ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.avanpad.com/ Avanpad] offers OpenVZ VPS hosting with 24\7 online support. Customer can request different control panels or templates for installation on his VPS.&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in Netherlands from 1.88EUR/month.&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
* [http://www.Freaksol.com/ FreaKs VPS Hosting] Self reliant hosted on independent networks &amp;amp; DC low ping around the world,No restrictions on file types,Unlimited resources,high ram servers&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [http://www.HostSailor.com/ HostSailor] Number 1 Netherlands Provider HostSailor provides affordable &amp;amp; high quality services such as VPS (XEN, OpenVZ and KVM) Linux or Windows, Dedicated servers, SSL certificates and domain name services.&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides self-managed OpenVZ SSD VPS in Telecity AMS 5, one of the best datacenters located in the Amsterdam area.&lt;br /&gt;
* [https://iniz.com/ INIZ VPS Hosting] INIZ provides affordable VPS Hosting in Amsterdam, Netherlands with high resources at low prices.&lt;br /&gt;
* [https://www.liteserver.nl/ LiteServer] Looking for a quality and affordable VPS in the center of The Netherlands? We provide SSD, Storage and High Bandwidth VPSes, starting at only €16 per year. We operate AS60404.&lt;br /&gt;
* [https://www.mangelot-hosting.nl/ Mangelot Hosting] Mangelot Hosting, A webhosting company located in the Netherlands, offers budget OpenVZ hosting solutions for maximum scalability en performance.&lt;br /&gt;
* [http://www.osbox.nl OsBoX Dutch Network Engineering] Cheap VPS host as low as $1 per month. Very great uptime and a overall good support. Check the website for the server plans.&lt;br /&gt;
* [https://www.scopehosts.com/openvz-vps/netherlands-vps ScopeHosts.Com] - ScopeHosts Provides OpenVZ VPS in Netherlands, Amsterdam Powered with Pure SSD, 1Gbps Uplink, DDOS Protection, Self-Managed and Managed VPS Solutions&lt;br /&gt;
* [http://www.signet.nl/ Signet VPS Hosting] - Signet delivers VPS hosting plans based on CentOS or Debian templates, including control-panel Virtualmin.&lt;br /&gt;
* [http://simple-webhosting.eu/ Simple-webhosting.eu] - OpenVZ based web hosting starting from €0.98 per month.&lt;br /&gt;
* [https://www.seedvps.com SeedVPS] Provides Powerful &amp;amp; Reliable OVZ/KVM VPS Hosting in The Netherlands&lt;br /&gt;
* [http://www.touchvps.com/ TouchVPS] is a company who offer Support and Managed Services for OpenVZ Servers ,also offer templates for openvz ready to go with cPanel , DirectAdmin , Plesk , Games, IRC Services, Desktop and many more.&lt;br /&gt;
* [https://www.totallyhosted.nl/ TotallyHosted] OpenVZ based Premium VPS services located in the Netherlands @ Serverius DC.&lt;br /&gt;
* [https://undergroundprivate.com/russiaoffshorevps.html  UndergroundPrivate.com] - OpenVZ with highly privacy, offshore , DMCA ignored , high confidence, SolusVM and cPanel, managed and non managed service.&lt;br /&gt;
* [http://www.voipcomplete.com/product-overview/dedicated-vps.html VOIPcomplete] offers dedicated VPS plans based on CentOS including a VPS management interface.&lt;br /&gt;
* [http://www.vpsfast.us/netherlands-vps VPSFast] - VPS Provider with good prices in Netherlands.&lt;br /&gt;
* [https://www.vps9.net/netherlands-vps VPS9.NET] - VPS9 OpenVZ Nodes are located in Naaldwijk, Netherlands. We provide OpenVZ VPS Services at very a affordable cost, powered with 20x Faster SSD on RAID-10 Partition.&lt;br /&gt;
* [https://www.waveride.at/ Waveride] Waveride, an EDIS company, offers budget full gigabit OpenVZ + solusVM VPS in Austria, USA and the Netherlands&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Norway ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.vpsfast.us/norway-vps VPSFast] - VPS Provider with good prices in Norway.&lt;br /&gt;
&lt;br /&gt;
== Pakistan ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://vimzaa.com/ Vimzaa] The best hosting in Pakistan.&lt;br /&gt;
&lt;br /&gt;
== Philippines ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.web.com.ph/vps.php Web.com.ph] - provides OpenVZ virtual servers in the Philippines.&lt;br /&gt;
&lt;br /&gt;
== Perú ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.hn.pe/ Hostname] Hostname offers business OpenVZ containers in Perú&lt;br /&gt;
* [http://www.hostingandino.pe/ Hostingandino Lima - Peru] - VPS with OpenVZ in Peru&lt;br /&gt;
* [http://www.hostingplus.pe/ HostingPlus Internet Limitada] - High Performance Vps provider in Peru&lt;br /&gt;
* [https://www.hostingroup.com/ Hostingroup] Web hosting for small businness in Perú.&lt;br /&gt;
* [https://hostingweb.pe/ Hosting Web] The best hosting in PERU.&lt;br /&gt;
* [https://www.inchosting.pe/ HostingINC SAC] OpenVZ virtualization solutions for business in Perú.&lt;br /&gt;
* [https://www.mejorhosting.pe/ Mejor Hosting Perú] Hosting comparison for peruvian hosting providers.&lt;br /&gt;
* [https://webuniversal.pe/ Web Universal] The best hosting in PERU in the World.&lt;br /&gt;
&lt;br /&gt;
== Poland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://hosteam.pl/ HosTeam] offers OpenVZ VPS hosting from their DataCenter in Poland. Customer has choice of all major Linux distros (WARNING!!! restoring your backup is VERY expensive and they charge even if it wasn't restored correctly!), NATIVE IPV6 AVAILABLE!&lt;br /&gt;
&lt;br /&gt;
* [http://ultimahost.pl/ UltimaHost] high grade OpenVZ VPS and FreeBSD jail (DC in Łódź, Poland), brand of statnet.pl, SSD available for more expensive packets, NO IPV6 AVAILABLE (but they can load you tun module)&lt;br /&gt;
&lt;br /&gt;
* [http://budgetvps.pl/ BudgetVPS] very cheap, low end grade OpenVZ VPSes (DC in Gdańsk, Poland), brand of HitMe.pl&lt;br /&gt;
&lt;br /&gt;
* [https://hitme.pl/ HitMe.pl] high grade OpenVZ/Xen PV/Xen HVM VPSes, Virtuozzo (DC in Gdańsk, Poland), NATIVE IPV6 AVAILABLE (/64 on demand for free)!&lt;br /&gt;
&lt;br /&gt;
* [http://www.kr-cpd.pl/oferta/serwery-vps/ KR-CPD] Cracow's Center of Data Processing (DC of course in Cracow, Poland)&lt;br /&gt;
&lt;br /&gt;
* [http://livenet.pl Livenet] cheap, middle/low end OpenVZ VPSes (DC in Łódź, Poland)&lt;br /&gt;
&lt;br /&gt;
* [http://slaskdatacenter.pl/ Śląsk Data Center] high/middle grade OpenVZ VPSes (DC in Silesia province, Poland), SSD available for more expensive packets&lt;br /&gt;
&lt;br /&gt;
* [https://www.ionic.pl/ IONIC.pl] VPS OpenVZ with SolusVM control panel, own DC in Cracow&lt;br /&gt;
&lt;br /&gt;
* [https://microvps.pl/ MicroVPS.pl] Middle And low end OpenVZv7 VPS plans. SSD for regular VPS and HHD for storage plans (up to 1TB)&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Portugal ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.ptservidor.pt/ PTServidor] - OpenVZ virtual servers with free management based in Portugal.&lt;br /&gt;
* [http://www.efeito.net/ Weblevel.pt] - OpenVZ virtual servers based in Portugal.&lt;br /&gt;
* [https://www.webtuga.pt/ WebTuga] - Managed/Unmanaged Virtual Private Servers hosted in a Portuguese Datacenter with lots of extras&lt;br /&gt;
* [https://www.cloudfire.pt/ CloudFire] - OpenVZ VPS at very low prices hosted in Portugal&lt;br /&gt;
* [https://www.linxisp.com/ LINXISP] - High Availability &amp;amp; Performance OpenVZ Containers&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] - Build an OpenVZ VPS in 14 locations WordWide From £2.49&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Romania ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.intovps.com IntoVPS] - offers unmanaged OpenVZ virtual servers based in Romania, Netherlands and USA. A lot of resources for decent prices.&lt;br /&gt;
* [http://www.ename.ro/dedicated.html eName] - managed OpenVZ virtual servers in Bucharest, Romania&lt;br /&gt;
* [http://www.ch-center.com/virtual-servers Ch-center] - unmanaged OpenVZ virtual servers, based in Romania in it's own Data Center&lt;br /&gt;
* [http://www.clouds.ro/servere-virtuale/ Clouds] - OpenVZ virtual servers hosted on premium hardware, in Romania&lt;br /&gt;
* [http://www.HostSailor.com/ HostSailor] HostSailor provides affordable &amp;amp; high quality OpenVZ and KVM servers in Romania&lt;br /&gt;
* [https://www.shape.host/linux-vps/ Linux VPS] - OpenVZ virtual servers, Instant Linux VPS&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Russia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.internoc24.host Internoc24.HOST] is an international [https://www.www.internoc24.host Offshore VPS ] provider with reliable SSD VPS in Moscow, Russia. Focus ist on high privacy protection so they accept several Cryptocurrencies like Bitcoin, Ethereum and others for anonymous payments.&lt;br /&gt;
* [http://www.ihc.ru/vps.html IHC.RU] - VPS hosting in Moscow, Russia starting at $10/month with good set of precreated templates&lt;br /&gt;
* [http://mchost.ru/services/linux-vps/ McHost.ru] - Linux VDS Hosting from McHost.&lt;br /&gt;
* [http://hosting.agava.ru/vps/ AGAVA] - Linux VPS hosting based on OpenVZ.&lt;br /&gt;
* [http://vdsplanet.ru/ VDSPlanet.ru] - unmanaged VDS/VPS hosting starting at 3.99$ a month. Large variety of OS templates and free ISPmanager Lite control panel. Total automation is our goal.&lt;br /&gt;
* [http://www.demos.ru/service/datacenter/vps.html Demos-Internet] - we offer OpenVZ Virtual Private Server based on Linux.  All VPS come with ISPmanager control panel.&lt;br /&gt;
* [http://www.net.ru/service/net9/ www.net.ru] - OpenVZ virtual private servers.&lt;br /&gt;
* [http://www.eurobyte.ru/ Eurobyte.ru] - Linux VDS Hosting from Eurobyte.&lt;br /&gt;
* [https://undergroundprivate.com/russiaoffshorevps.html  UndergroundPrivate.com] - OpenVZ with highly privacy, offshore , DMCA ignored , high confidence, SolusVM and cPanel, managed and non managed service.&lt;br /&gt;
* [http://www.telekom.ru/service/vps.html Elvis Telekom] - OpenVZ hosting with base and cpanel templates from Elvis Telekom.&lt;br /&gt;
* [http://fastvps.ru/vds/ FastVPS] - OpenVZ hosting, ISPmanager, Hetzner, MayFlower.&lt;br /&gt;
* [https://lepus.su/vps.html Lepus] - OpenVZ hosting, SSD, ISPmanager free, Hetzner.&lt;br /&gt;
* [http://www.hts.ru/vds/ HTS] - OpenVZ hosting, ISPmanager, Linux VPS hosting based on OpenVZ in Moscow.&lt;br /&gt;
* [https://selectel.ru/services/vds/ Selectel] - OpenVZ hosting.&lt;br /&gt;
* [https://galaxydata.ru/root-server/ GalaxyData] - Virtuozzo Containers in Cloud Storage.&lt;br /&gt;
* [http://hosterbox.ru/servers/ Hosterbox.ru] - Managed VPS hosting. Based on OpenVZ + SolusVM + ISPmanager.&lt;br /&gt;
* [https://firstvds.ru FirstVDS.ru] - One of the leading hosting companies providing virtual private servers.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Singapore ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://conceptlane.com/?t=hostingservices#ratesvps ConceptLane Pte Ltd] - OpenVZ VPS on dual octa-core AMD Opterons running Debian Wheezy 7, custom control panel with bandwidth graphs, reboot/reinit and web-based VNC access.&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [http://www.qoxy.com/vps QOXY.com] Affordable and Reliable OpenVZ VPS Hosting in a Singapore Data Center.&lt;br /&gt;
* [http://www.secureax.com/ SecureAX Pte Ltd] - Singapore Premium Internet Solution Provider&lt;br /&gt;
* [http://www.planettel.com.sg PlaNetTel] - Affordable and customised OpenVZ containers across 3 data centers - contact Thomas Festus at +65-66936881. [http://pve.proxmox.com/wiki/User:Apmuthu#Squeeze_based_Templates Sponsors OpenVZ Container Template]s for the Open Source community.&lt;br /&gt;
* [http://www.vpsfast.us/singapore-vps VPSFast] - VPS Provider with good prices in Singapore.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Serbia ==&lt;br /&gt;
* [https://www.skyhosting.rs/en/vps-servers SkyHosting] - Fast Linux OpenVZ VPS SSD Hosting with SolusVM control panel.&lt;br /&gt;
* [https://www.ninet.rs/en/vps-servers NiNet Company] - Linux OpenVZ VPS servers. Well known VPS hosting company from Serbia with their own data center&lt;br /&gt;
* [http://www.suonline.net SuOnline.Net ISP] - Linux OpenVZ VPS servers, Docker enabled !!!&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== South Africa ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.host1plus.com/ Host1Plus] - Local South African servers hosted in Johannesburg. OpenVZ VPS servers starting from $3.00 per month.&lt;br /&gt;
* [http://www.vps.co.za/ VPS.CO.ZA] - South Africa's oldest VPS provider. Local South African servers with SolusVM control panel. OpenVZ, Xen and OnApp Cloud.&lt;br /&gt;
* [http://247hosting.co.za/vpshosting.php 247Hosting] - OpenVZ virtual servers locally in South Africa with SolusVM control panel. cPanel option available!&lt;br /&gt;
* [http://www.SoftDux.co.za/ SoftDux] - OpenVZ virtual servers based America &amp;amp; South Africa. All VPS's come with cPanel or Plesk control panels. XEN VPS's also available.&lt;br /&gt;
* [http://www.clickworks.co.za/ Clickworks] - OpenVZ / Xen VPS servers hosted in RSA. Backed by Solusvm control panel.&lt;br /&gt;
* [http://www.elitehost.co.za/ Elite Host] - OpenVZ virtual servers based in America &amp;amp; South Africa. All VPS's come with cPanel and unlimited bandwidth.&lt;br /&gt;
* [http://www.telasera.com/ Telasera] - OpenVZ VPS servers hosted in South Africa. Supermicro Servers powered by Intel Xeon with 24/7 Support.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Spain ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.corpresa.com/servidores-virtuales.html Corpresa Hosting] - Tiene algún proyecto entre manos y un plan de hosting no le hes sufuciente y un servidor dedicado no está dentro de su presupuesto?, una solución de VPS a medida será la que cubrirá todas sus necesidades.&amp;quot;&lt;br /&gt;
* [https://www.datomedia.es Datomedia] - Cloud alta disponibilidad powered by Virtuozzo 6 y Servidores VPS bajo openvz y kvm.&lt;br /&gt;
* [https://www.evidaliahost.com/vps/ EvidaliaHosting] - Servidores VPS totalmente configurados con panel de gestión Plesk 12.5, garantía de devolución de 30 días y posibilidad de discos SSD.&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
* [https://ginernet.com/vps-ssd.php GINERNET] - Servidores VPS alojados en España desde 1.99€/mes.&lt;br /&gt;
* [https://www.hostingplus.com.es Hosting Plus España] provide OpenVZ containers at our own datacenter. Starting from us20/month RAID 10 SSD.&lt;br /&gt;
* [https://www.somtecnologia.com/ Som Tecnologia] - OpenVZ/6 , containers up to Debian 9&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Sweden ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.admax.se/vps/ Admax] - Admax offers enterprise grade virtual servers with great pricing. Custom control panel, API, remote access &amp;amp; more.&lt;br /&gt;
* [https://www.acon.se/vps Acon VPS Server] - VPS Server and Dedicated server provider in Sweden.&lt;br /&gt;
* [https://www.glesys.com/vps.php GleSYS] - VPS Provider with a great control panel and good prices&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides the highest quality SSD VPS in Stockholm, Sweden. Based on completely pure SSD in RAID-10 and delivering extremely high network &amp;amp; hardware performance along with reliability.&lt;br /&gt;
* [https://www.nametyper.com NameTyper] - VPS and Shared hosting provider. Customize your own OpenVZ Container with 1-12 cores running on SSD and ECC RAM. &lt;br /&gt;
* [https://virtualcenter.se VirtualCenter] - The first Cloud provider with SSD VPS in Sweden. Offer enterprise class hardware and network infrastructure&lt;br /&gt;
* [http://www.vpsfast.us/sweden-vps VPSFast] - VPS Provider with good prices in Sweden.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Switzerland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
* [http://www.vpsfast.us/switzerland-vps VPSFast] - VPS Provider with good prices in Switzerland.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Tanzania==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.aptus.co.tz/ Aptus Solutions] - OpenVZ / SolusVM VPS Servers located in Dar es Salaam - 100meg to TIX. CentOS &amp;amp; Ubuntu.&lt;br /&gt;
&lt;br /&gt;
== UK ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.34sp.com/ 34SP.com] - We're a UK based web hosting company, bridging the gap between sophisticated hosting solutions &amp;amp; affordable prices&lt;br /&gt;
* [http://www.AceShells.com/ AceShells] - Fast, stable, high quality UK based virtual private servers from just £5 a month, operating since 2001&lt;br /&gt;
* [http://www.AtlanticServers.com/ Atlantic Servers] - Affordable VPS, stable, high quality VPS, UK based Data Centre&lt;br /&gt;
* [https://awebhosting.uk/ AWebHosting.uk] VPS hosting offered by [https://awebsolutions.uk/ AWEBSOLUTIONS LIMITED] reliable UK hosting provider located in London, UK and Hosted in UK DataCentre.&lt;br /&gt;
* [http://www.BargainVPS.co.uk/ BargainVPS] - UK / US / EU Instant setup VPS - We have some great Linux &amp;amp; Windows Bargain VPS packages on offer for you here all available Fully Managed.&lt;br /&gt;
* [http://www.cheapvps.co.uk/ CheapVPS] - CheapVPS provide cheap, UK based OpenVZ VPS servers. Hosted on high end hardware, in a top UK datacenter backed up with 24/7/365 support. Choice from a wide range of Linux distros. OpenVZ VPS managed with SolusVM.&lt;br /&gt;
* [http://www.chilliserver.com/ Chilliserver] - Affordable plans starting from just £3.99, not oversold. RHEL6 Kernel with VSwap, TUN/TAP/FUSE and ACL support enabled. SolusVM control panel with custom snapshot system and rescue system. Based in a European data Centre with UK based support.&lt;br /&gt;
* [http://www.chvps.com/ CHVPS] - Switzerland Based VPS, Cheap Pricing with solusVM control panel.&lt;br /&gt;
* [http://www.cislondon.co.uk/virtual-private-servers/ Commercial Internet Solutions] - CIS provides premium hosting at competitive rates, focused on Small Businesses within the M25 orbital. Hosting is on Dual Quad core Intel Xeon supermicro servers in Tier 4 datacenters around London.&lt;br /&gt;
* [http://www.datacorporate.co.uk/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [http://domvps.com/ domVPS] - OpenVZ Virtual Servers in the USA, Germany, France &amp;amp; the Netherlands at a low cost.&lt;br /&gt;
* [http://www.DubHosting.co.uk/ DubHosting] - DubHosting started in 2004 has been providing cost effective hosting to clients world wide. Fully managed OpenVZ servers based in Europe &amp;amp; US are one of their many strong points. They can provide you with a dedicated server and install openvz allowing you to sell your own vps servers. Their servers are located at UKGrid in Manchester with 24/7/365 support&lt;br /&gt;
* [http://www.europhase.net/virtual-private-servers/ Europhase UK Limited, UK VPS] - OpenVZ VPS Hosting, Virtual Dedicated Servers, UK VPS hosted at multiple UK datacentres from £4.99&lt;br /&gt;
* [https://farbyte.uk/vps Farbyte VPS] - UK based OpenVZ VPS and shared web hosting services&lt;br /&gt;
* [http://www.fdqwholesale.co.uk FDQ Wholesale] - UK based hosting services&lt;br /&gt;
* [http://www.gemvps.net/ GemVPS.NET] - UK (Manchester) Based Company, OpenVZ Virtual Servers in the UK &amp;amp; France on Fast nodes.&lt;br /&gt;
* [http://www.hadrill.org.uk Hadrill Online] - Fully managed hosting with unlimited bandwidth. Quotes available through contact form.&lt;br /&gt;
* [http://www.infrenion.com./uk_vps_hosting.html Infrenion Networks UK] Cheap, economical and reliable web hosting solutions, VPS based on the openVZ platform. You can host any YouTube Clone scripts with free FFMPEG setup on our vps servers. Also offers with a choice of selecting DataCenter.&lt;br /&gt;
* [https://www.laws-hosting.co.uk/vps-hosting.php Laws Web Hosting] - Laws Web Hosting offers OpenVZ VPS Hosting with packages starting from £5.50/m that will cater for anyone. We have OpenVZ VPS hosting solutions, and come with moderate DDoS protection.&lt;br /&gt;
* [http://www.letstalkdigital.com/index.php?option=com_content&amp;amp;view=article&amp;amp;id=73&amp;amp;Itemid=65 LetsTalkDigital VPS Hosting] - LetsTalkDigital.com offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from $14.99. Virtual Private Server(VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://www.meteorvps.com/ MeteorVPS] - Professional, Non-Oversold amazing VPS plans pretty cheap using SolusVM management, range from 512MB -&amp;gt; 16GB&lt;br /&gt;
* [http://www.minivps.co.uk miniVPS] miniVPS offers VPS hosting solutions with nodes located in UK, utilising openvz/solusvm with future locations of USA and UK. &lt;br /&gt;
* [https://www.first2host.co.uk First2Host Cheap VPS] - Intel Xeon E5-2630v3 OpenVZ VPS Servers. Don't be defined by a pre-made VPS plan. Create your own VPS Plan by assigning the resources that you require. SATA, SSD or NVMe storage 100 MBPS, 250 MBPS, 500 MBPS, 1GBPS speeds and free cPanel licenses.&lt;br /&gt;
* [http://www.phurix.co.uk/ Phurix] - A UK based web solutions company that provides you with reliable hosting at extremely affordable prices, VPS server virtualization using OpenVZ.&lt;br /&gt;
* [http://www.qualityservers.co.uk Quality Servers] - Affordable OpenVZ virtual servers based in the UK and USA. Choice of control panels and management options.&lt;br /&gt;
* [http://www.rackburst.net/ Rackburst] - UK SSD VPS Hosting with fast UK-based Live Support available from £1.49 per month.&lt;br /&gt;
* [http://www.rshosting.co.uk/vps.html RSHosting UK] - Offering the most secure, reliable, stable and fast UK VPS Web Hosting based on OpenVZ architecture. Our Virtual Dedicated Servers are physically hosted on powerfull Quad Core servers located in multiple UK datacentres.&lt;br /&gt;
* [http://www.sharkserve.rs SharkServers] - Low Cost OpenVZ virtual servers in the UK. Choice of control panels and management options. Own Datacentre.&lt;br /&gt;
* [https://www.ukhost4u.com/ UKHost4u] - A leading provider of VPS solutions for over 19 years!&lt;br /&gt;
* [http://www.vpsfast.us/united-kingdom-vps VPSFast] - VPS Provider with good prices in UK.&lt;br /&gt;
* [http://www.vpsmachine.co.uk/ vpsMachine] Quality openvz hosting platform with a large choice of customer OS templates.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [https://www.webhostuk.co.uk/vps-hosting.html WebHostUK LTD] - Offers Cheap yet Best UK VPS Web Hosting working on OpenVZ Platform.We offers fully Managed UK VPS with true 24/7/365 days support.All our Servers are located in UK London DC.&lt;br /&gt;
* [http://www.webhostinguk.com/vps/vps-hosting.html Web Hosting UK] - Fully managed OpenVZ VPS Hosting offered on fast and reliable and affordable servers in UK &amp;amp; European datacenter with 24x7x365 days lightning fast support.&lt;br /&gt;
* [http://www.weycrest.co.uk/vps-hosting.php Weycrest VPS] - Low Cost, Stable OpenVZ and Parallels' Virtuozzo Virtual Private Server solutions. London UK Hosted at Coreix with a choice of operating systems, and root and control panel options.&lt;br /&gt;
* [http://www.xilo.net/virtual_private_servers-vps/ XILO] - UK-based hosting with UK-based support. VPS services offered with a choice of cPanel, Webmin and other useful applications, VoIP, SIP, VPN to name a few.&lt;br /&gt;
* [http://www.zxvps.co.uk/ ZxVPS VPS Hosting] - Quality, non-oversold VPS based on the openVZ platform, using SolusVM management panel, VPS from 128mb - 2gb, cpanel, direct admin, kloxo, etc.&lt;br /&gt;
&lt;br /&gt;
== Ukraine ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://ekvia.com/ Ekvia] - VDS/VPS based on OpenVZ. Free trial 14 days. Domain registration for VDS/VPS.&lt;br /&gt;
* [http://www.gelihost.com/ Geliar Hosting Solutions] - Fast virtual dedicated servers based on OpenVZ. Geliar Hosting Solutions offering many control panels and other useful services.&lt;br /&gt;
* [http://www.hostpro.ua/ Hostpro.ua] - Full managed OpenVZ servers.&lt;br /&gt;
* [http://www.vpsfast.us/ukraine-vps VPSFast] - VPS Provider with good prices in Ukraine.&lt;br /&gt;
&lt;br /&gt;
== USA ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.a2hosting.com A2 Hosting] is your high-performance [http://a2hosting.com/openvz-vps-hosting OpenVZ VPS Hosting] provider. Design your perfect [http://a2hosting.com/vps-hosting VPS Hosting] account today! Featuring SwiftServers and SSDs with page load speeds up to 300% faster compared to standard drives.&lt;br /&gt;
* [http://www.afterburst.com Afterburst] (Previously FanaticalVPS): affordable unmetered, unmanaged VPS servers in NY.&lt;br /&gt;
* [https://www.asurahosting.com/ AsuraHosting] offers powerful, reliable, and simple OpenVZ VPS to clients. AsuraHosting has a dedicated support team, and quality hosting; Pricing starts at just $5/month!&lt;br /&gt;
* [http://beyondhosting.net BeyondHosting.net] High Performance OpenVZ Virtual Private Servers (VPS)  Tier 1 US Datacenter.&lt;br /&gt;
* [http://buyvm.net BuyVM.net] DDoS Protection, three datacenter locations, Stallion control panel. Affordable quality VPS hosting since 2010!&lt;br /&gt;
* [https://www.binarycpu.com Binary Computer Solutions] has provided OpenVZ based Virtual Private Server hosting for over 5 years.  Network outages are a thing of the past, and oversold services are never heard of here.  Built on solid technology, with infrastructure to match - Binary Computer Solutions will give you hosting you need, without the cost others ask for.  Starting at $30.00/mo.&lt;br /&gt;
* [http://www.bodhost.com/ Bodhost.com] Fast, Reliable and secure web hosting service with 24*7 free customer service.&lt;br /&gt;
* [http://www.buildyourvps.com/ BuildYourVPS.com] mix ‘n’ match your VPS; choose only the bandwidth, RAM, disk capacity, type of IP connection, level server redundancy, and the support/monitoring you want. [http://www.buildyourvps.com/ BuildYourVPS] is the 1st to offer you a highly-customized VPS solution, without making you pay for unused extra features.&lt;br /&gt;
* [https://www.budgetvm.com/openvz-linux-vps.php BudgetVM.com] Each server includes our industry-leading SLA, DDoS protection, 200Gbps networks and 7 * 24-hour customer support.&lt;br /&gt;
* [http://www.byethost.com Byethost.com] offers OpenVZ based VPS Hosting as its main VPS solution, with the hypervm panel. Centos, Debian, Fedora, OpenSuse and Ubuntu Containers are available.&lt;br /&gt;
* [http://cheaperasp.net CheaperASP.Net] provides Quality web hosting on the OpenVZ platform. You also help you get best options at [http://cheaperasp.net/godaddy-1-hosting-free-domain-promo/ affordable] cost.&lt;br /&gt;
* [http://www.chhost.net/vps.htm CH Hosting VPS Hosting] CH Hosting or chhost.net offers OpenVZ based VPS Hosting. 24/7 Support. Upgrade/Downgrade your plan as needed on-the-fly without the risk of downtime. Since 2006. Non-Oversell&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in USA from 1.88EUR/month.&lt;br /&gt;
* [http://www.cloudshards.com Cloud Shards] High Performance, reliable, stable and affordable OpenVZ Virtual Private Servers (VPS) in data centers across the USA.&lt;br /&gt;
* [https://cloudgearhosting.com CloudGear Hosting] - offers OpenVZ hosting in 4 locations across the USA. Including free DDoS Protection and free SSL with cPanel.&lt;br /&gt;
* [http://www.datacorporate.com/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [https://www.delimiter.com/storage-vps/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [https://www.cheapdomainnamesdot.com Domain Host SSL] provides Reliable web hosting with OpenVZ platform Since 2003, Located New York city, Atlanta, Los Angeles. &lt;br /&gt;
* [http://www.DubHosting.com/ DubHosting] - DubHosting started in 2004 has been providing cost effective hosting to clients world wide. Fully managed OpenVZ servers based in Europe &amp;amp; US are one of their many strong points. They can provide you with a dedicated server and install openvz allowing you to sell your own vps servers.&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
* [http://www.ethernetservers.com/ Ethernet Servers] A leading provider of OpenVZ Virtual Servers in Los Angeles, Miami and Buffalo with SolusVM.&lt;br /&gt;
* [http://www.evolucix.com/ Evolucix.com] Evolucix offers state of the art, professional, and reliable OpenVZ VPS solutions on top-notch hardware while providing quality support.&lt;br /&gt;
* [http://www.evolvedservers.com Evolvedservers.com] Openvz based vps servers. Hosted in Michigan, USA. 24/7 Support. Hosted in tier-3 and tier-4 datacenter's with multiple redundancies.&lt;br /&gt;
* [http://fastwebhost.com/vps-hosting.html Fastwebhost]: affordable cloud VPS servers using OpenVZ. &lt;br /&gt;
* [http://www.fliphost.net Fliphost.net]: Powerful, affordable instant setup VPS systems. Servers based in Phoenix Az with another location coming soon.&lt;br /&gt;
* [http://www.frontrangehosting.com Front Range Hosting]: SSD Cached KVM &amp;amp; OpenVZ VPS Hosting Prices Start at 2.00/mo, located in Colorado Springs, Colorado.&lt;br /&gt;
* [http://glesys.se GleSYS] is a hosting company specialized in serverhosting. Also offering VPS hosting mainly based on OpenVZ. GleSYS has provided access to server and Cisco hardware for developers from OpenVZ to find problem with VLAN implementation.&lt;br /&gt;
* [http://goodealhosting.com/ GOODEALHOSTING.com] Quality Hosting Solutions! Provides affordable unmanaged/managed VPS based on OpenVZ! start from $10.00, real 24/7 support.&lt;br /&gt;
* [http://gothost.net GotHost.net] Providing OpenVZ based VPS Hosting with SolusVM. All nodes are Quad Core Xeon with RAID-10 for speed and redundancy. Budget plans starting at $7.99.&lt;br /&gt;
* [http://www.greengeeks.com/ GreenGeeks Hosting] VPS Hosting. Dual Intel Xeon 64-Bit CPU's, DDR3 RAM, RAID-10 SSD Storage Arrays. 24/7 Support. cPanel/WHM + more!&lt;br /&gt;
* [http://hostarmor.com HostArmor™] - is best known for low-cost and reliable shared hosting and dedicated servers. Recently the company expanded to offer OpenVZ virtual server plans at 8 worldwide locations, five in the U.S., one in Germany, one in France, and one in the Netherlands. VPS plans start at $13.99/month.&lt;br /&gt;
* [http://www.host4geeks.com Host4Geeks] - Host4Geeks is a premium Fully Managed VPS provider with datacenters across 2 locations in US and in UK. All servers offer a free cPanel license.&lt;br /&gt;
* [http://www.host1plus.com Host1Plus] - OpenVZ based virtual servers in Chicago and Los Angeles. VPS plans start at $2.00 per month.&lt;br /&gt;
* [http://www.hostavps.com HostAVPS] - Providing Fully Managed VPS's on both the West &amp;amp; East Coast.&lt;br /&gt;
* [https://www.hostcapitol.com Host Capitol] offers fast and reliable web hosting services, including OpenVZ VPS Hosting, to clients ranging from small businesses to corporations. Located in Piscataway, New Jersey.&lt;br /&gt;
* [http://www.hostcolor.com Host Color] - OpenVZ based virtual servers hosted in a Tier 4 class data center based out of South Bend, Indiana. Juniper managed, fully-redundant network with uplinks to Level 3, Cogent and Internap.&lt;br /&gt;
* [https://www.hostgalaxy.com HostGalaxy] - OpenVZ based virtual servers. The fastest hosting in the Galaxy!&lt;br /&gt;
* [http://www.hostigation.com Hostigation] - High resource unmanage VPS hosting solutions.&lt;br /&gt;
* [http://www.hostingrails.com Hosting Rails] offers Rails-targeted OpenVZ VPS Hosting and updated Rails-ready OS images.&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [http://www.hostmist.com Host Mist] features budget OpenVZ VPS hosting from four major cities across the US.&lt;br /&gt;
* [http://www.hostrush.com HostRush] Self managed, ssd vps for business and non business. &lt;br /&gt;
* [http://www.dailyhosting.net hostoople] We offer OpenVZ VPS hosting from Dallas Texas, Starting at $29.95/month &lt;br /&gt;
* [https://hostus.us HostUS] provides unmanaged and managed OpenVZ VPS in Atlanta, Dallas and Los Angeles with custom control panel. A large variety of Linux distros are available. Enjoy 15% off with coupon VPS15OFF.&lt;br /&gt;
* [https://www.hostwinds.com Hostwinds] Affordable managed/unmanaged VPS Solutions.&lt;br /&gt;
* [http://hostsia.com Hostsia] With HOSTSIA Web services, you can get an OpenVZ VPS for only $15.00/mo. Each OpenVZ VPS includes multiple free-of-charge bonuses and offers a 99.9% uptime guarantee. You can also use our charge-free Hepsia CP, which is available with each OS – it permits you to host an unmetered number of domains and comprises heaps of handy tools, which will help you better manage your site and your VPS web hosting account.&lt;br /&gt;
* [http://www.infrenion.com./vps_hosting.html Infrenion Networks] Cheap, reliable and secure VPS hosting solutions, based on the openVZ platform. You can host any YouTube Clone scripts with enhanced support quality round the clock.&lt;br /&gt;
* [http://iniz.com/ INIZ VPS Hosting] INIZ provides affordable VPS Hosting in Los Angeles &amp;amp; New York with high resources at low prices.&lt;br /&gt;
* [https://www.interserver.net/ InterServer Web Hosting] Fast &amp;amp; Reliable VPS - 24x7 Support. 99.9% Up-time, Hosting Since 1999!.&lt;br /&gt;
* [http://www.joinvps.com JoinVPS.com] ISPmanager OpenVZ based VPS hosting. 24/7 Technical Support. Free ISPmanager control panel.&lt;br /&gt;
* [http://www.lovevps.com LoveVPS] Budget VPS provider starting at $5.99/month located in the US with Xeon nodes.&lt;br /&gt;
* [http://www.letstalkdigital.com/index.php?option=com_content&amp;amp;view=article&amp;amp;id=73&amp;amp;Itemid=65 LetsTalkDigital VPS Hosting] LetsTalkDigital.com offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from $14.99 Virtual Private Server(VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://lylix.net LYLIX] offers affordable VPS hosting with a choice of eight different Linux distributions, dedicated VPS hosting, and specializes in Asterisk/VOIP based hosting including Trixbox, AsteriskNow, Elastix, and PBX-in-a-Flash.  Popular choice for unmanaged IP-PBX services; entire infrastructure built on a High-availability (HA) network across three regional NOCs.&lt;br /&gt;
* [http://www.micfo.com Micfo.com] offers VPS hosting services for both Linux VPS hosting and Window VPS hosting on affordable price combined with world-class 24x7x365 support.&lt;br /&gt;
* [http://www.neostreams.info/neoshop/cart.php?gid=9 nEo Stream Services] Offer's Top Quality OpenVZ Servers, Starting at $18.95 per month! SolusVM Control panel , 7 day Money Back Guarantee , 24x7 Professional Support.&lt;br /&gt;
* [http://pogiweb.com/vps/ PogiWeb LLC] Instant and free setup. Includes SolusVM control panel and free level 1 support during first month.&lt;br /&gt;
* [http://www.theserverexperts.com TheServerExperts.com] TheServerExperts VPS line is the ideal solution for clients who require the control of a dedicated server matched with the affordability and simplicity of a traditional shared hosting account.&lt;br /&gt;
* [http://thenynoc.com New York NOC] affordable Linux VPS hosting out of New York and Chicago. Plans as low as $5 a month and are backed by a redundant infrastructure and 24/7 support.&lt;br /&gt;
* [http://railsplayground.com RailsPlayground.com] Ruby on Rails VPS with ready to go Rails images with the LxAdmin control panel&lt;br /&gt;
* [http://www.raidlogic.net RaidLogic.NET] RaidLogic.NET offers OpenVZ based Linux VPS out of multiple facilities across the United States, including Miami, Los Angeles, and Chicago. Starting as low as $3.95/month.&lt;br /&gt;
* [http://www.ramhost.us RAM Host] RAM Host offers OpenVZ based Linux VPS out of multiple facilities across the United States, including Atlanta, Kansas City, and Phoenix.&lt;br /&gt;
* [http://www.reconhosting.com Recon Hosting] Recon Hosting offers affordable OpenVZ VPS solutions where you get Quality Hosting at a Fraction of the price. Instant setup with the latest Operating System templates including cPanel.&lt;br /&gt;
* [http://www.rokabear.com Rokabear] Rokabear offers OpenVZ Linux VPS, Dedicated Server, and Colocation. All Hardware setup in High Availability mode including raided drives and redudnant power and network connections. With multiple upstream providers, Rokabear's connectivity is fast and reliable! Rokabear supports LAMP, Openvpn, and Asterisk configurations. VPSes start at $7.99!&lt;br /&gt;
* [https://www.rosehosting.com RoseHosting] offers OpenVZ Linux virtual servers equipped with Enterprise Grade SSD drives. All hosting plans are fully-managed with FREE 24/7 support, FREE website migration, FREE weekly backups and FREE server monitoring included.&lt;br /&gt;
* [http://www.rshosting.com/vps.html RSHosting.com] RSHosting offers the most secure, reliable and stable VPS - Virtual Private Servers based on OpenVZ architecture, powered by the most professional and qualified 24/7 lightening fast support.&lt;br /&gt;
* [http://www.servercomplete.com Server Complete, LLC] Server Complete offers OpenVZ based Linux VPS out of multiple facilities across the United States, including Atlanta, Dallas, and Chicago.&lt;br /&gt;
* [http://www.servergrove.com ServerGrove] uses OpenVZ as the main virtualization platform for its state of the art VPS hosting services.&lt;br /&gt;
* [http://serverswarm.com ServerSwarm] provides stable, affordable, high performance OpenVZ virtual private servers.&lt;br /&gt;
* [http://Sharktech.net Sharktech] provides custom OpenVZ solutions DDOS-protected up to 100Gbps.&lt;br /&gt;
* [http://www.silverrack.com/ SilverRack VPS Hosting] - SilverRack provides affordable VPS hosting using the OpenVZ platform.&lt;br /&gt;
* [http://www.soficol.com/ Soficol] Offers Enterprise OpenVZ based VPS, hosted on a clustered infrastructure and redundant network. Easy to use user management and instant setup.&lt;br /&gt;
* [http://www.spectrohost.com/ Spectro Host] - Offers performance VPS Servers running openvz. Always the most resources and never over committing OpenVZ nodes.&lt;br /&gt;
* [http://www.budgetvds.com/ BudgetVDS] - Offers VPS Servers running openvz we've been in business for 2 years now using openvz platform.&lt;br /&gt;
* [http://www.syera.net/ Syera Networks] Unmetered VPS From $18.88/M, 24/7 Support, OpenVZ/HyperVM, Instant Setup!, Free 1Gbps Upgrade with Coupon: syera1G&lt;br /&gt;
* [http://www.synapseglobal.com/voip_vps.html SynapseGlobal.com] Elastix, Trixbox, PBX in a Flash and Asterisk VPS - OpenVZ based Asterisk VOIP servers with 14 Tier 1 premium bandwidth providers.&lt;br /&gt;
* [http://www.tektonic.net TekTonic] provides VPS hosting services using both Virtuozzo and OpenVZ technology.&lt;br /&gt;
* [http://www.tigerservers.com/ TigerServers] - Provides affordable managed VPS based on OpenVZ. Servers located in Chicago, Illinois&lt;br /&gt;
* [http://www.tocici.com/ TOCICI VPS Hosting Services] Since 1995 TOCICI has offered web hosting services, with 24/7 support commitments and a strong non-oversell policy. Our purpose-built hosting infrastructure has serviced many organizations for over a decade. Offering OpenVZ VPS, data center colocation, and equipment leasing options, visit our website for prices and more details.&lt;br /&gt;
* [http://www.ultravps.com UltraVPS] UltraVPS offers managed and unmanaged OpenVZ-based VPS hosting utilizing dual CPU hardware nodes with redundant, high-performance RAID-10 storage.  UltraVPS offers VPS servers with many popular control panel options and turn-key applications.&lt;br /&gt;
* [http://www.vpsfx.com VPSFX] VPSFX.com offers OpenVZ VPS, data center colocation, and dedicated servers.&lt;br /&gt;
* [http://www.Webhost.US.Com/linuxvps.html US Web Hosting]  Webhost.US.Com offers powerful GUI based VPS management system with full OpenVZ, Xen Paravirtualization and Xen HVM support.All our Virtual Private servers are fully Managed with 99.9% uptime and 24/7 top notch support.&lt;br /&gt;
* [http://unixservice.com Unixservice/unxsVZ] Low cost OpenVZ ONLY hosting we specialize in Mail, DNS and RADIUS multiple container hosting. At the world famous Market St. San Jose, CA Silicon Valley datacenter. Ping times from your containers to local yahoo and google sites guaranteed single digit ms times. Your containers are backed up at 4 local and 2 remote locations. Contact supportgrp at unixservice dot com.&lt;br /&gt;
* [http://www.vogenic.xyz Vogenic: Cloud Services] If you are searching for an upgrade to the shared hosting service, then you should consider our OpenVZ or KVM VPS hosting services.&lt;br /&gt;
* [http://vpslink.com VPSLink.com] provides virtual private server hosting on the OpenVZ platform.&lt;br /&gt;
* [http://www.vpsspeed.com/ VPSSpeed] - VPSSpeed provides unmanaged OpenVZ based VPS hosting with over 50 OS Templates, real 24/7/365 support and fast US servers. No overselling.&lt;br /&gt;
* [http://vpsnoc.com VPSNOC] offers unmanaged vps hosting based in the USA utilizing OpenVZ hypervisor behind an in-house VPS control panel.&lt;br /&gt;
* [https://www.waveride.at/ Waveride] Waveride, an EDIS company, offers budget full gigabit OpenVZ + solusVM VPS in Austria, USA and the Netherlands&lt;br /&gt;
* [http://www.webappcabaret.com WebAppCabaret] provides VPS solutions for hosting applications. We offer OpenVZ with cPanel or Plesk for web site management; and NGASI Universal App Manager for deploying and managing JAVA and RAILS applications.&lt;br /&gt;
* [http://www.wirenine.com/vps-hosting/ WireNine.com VPS Hosting] Low cost fully managed and unmanaged OpenVZ based VPS Hosting with SAS 15k enterprise drives in high-performance RAID-10 storage.&lt;br /&gt;
* [http://www.zoidial.com/ Zoidial Hosting and VPS] - offers VPS and Virtual Dedicated Server solutions utilizing OpenVZ.  In business since 1998, Zoidial Incorporated is a small hosting provider focused on being security conscious, proactive, and offering a positive client experience.&lt;br /&gt;
* [http://zensix.com ZenSix Hosting] Cheap OpenVZ based VPS accounts with the SolusVM control panel.&lt;br /&gt;
* [http://zigothosting.com Zigot Hosting] Affordable and Reliable OpenVZ based VPS's within the SolusVM control panel.&lt;br /&gt;
* [http://www.vpsfast.us/usa-vps VPSFast] - VPS Provider with good prices in USA (Los Angeles, New Jersey, New York, Seattle, Washington, Dallas, Chicago, Atlanta, Ashburn, Miami, Piscataway).&lt;br /&gt;
* [http://www.xarixlite.com Xarix Lite] - offers OpenVZ hosting in Charlotte, SC. OpenVZ plans starting at $2.50/mo&lt;br /&gt;
* [https://www.yourlasthost.com YourLastHost] is your high-performance [https://www.yourlasthost.com/openvz-vps.php OpenVZ VPS Hosting] Provider. Get your perfect [https://www.yourlasthost.com/openvz-vps.php VPS Hosting] account today! Available in Los Angeles, Dallas, Jacksonville, USA and France, Europe.&lt;br /&gt;
&lt;br /&gt;
== Vietnam ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://appvz.com AppVZ.com] (www.appvz.com) is a leading web solution provider offering domain, hosting, reseller and VPS hosting packages from 2009. Just recently, the company has offered discount packages where customers can avail managed and un-managed VPS for only $9.5 per month.&lt;br /&gt;
&lt;br /&gt;
= Hosting providers comparison =&lt;br /&gt;
&lt;br /&gt;
It is hard to compare all virtual private server offers provided by different hosting providers.&lt;br /&gt;
Sites below can help you with it.&lt;br /&gt;
&lt;br /&gt;
* [https://www.cheapvpsservers.co.uk/ Cheap VPS Servers]&lt;br /&gt;
* [https://www.hostingmyths.com/ Hosting Myths]&lt;br /&gt;
* [https://cheapwebhosting.review/ VPS servers comparison]&lt;br /&gt;
* [https://reviewsquirrel.com/web-hosting-reviews/ Review Squirrel]&lt;br /&gt;
* [http://lowendstock.com/ Lowendstock]&lt;br /&gt;
* [https://www.websitehostingrating.com/ Best Web Hosting Services]&lt;br /&gt;
* [https://foxmaya.com/hosting/best-wordpress-hosting-india/ Best Wordpress Hosting Services]&lt;br /&gt;
* [http://serverbear.com/compare?Sort=RAM&amp;amp;Order=asc&amp;amp;Server+Type=VPS&amp;amp;Monthly+Cost=-&amp;amp;HDD=-&amp;amp;RAM=-&amp;amp;Virtualization=OpenVZ Serverbear]&lt;br /&gt;
* [https://www.comparethehosts.com/vps-web-hosting.htm VPS Web Hosting Reviews]&lt;br /&gt;
* [https://thishosting.rocks/best-cheap-managed-vps/ ThisHosting.Rocks - Managed VPS Providers Comparison]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
http://vpscomp.com&lt;br /&gt;
http://reviewsignal.com/webhosting/compare/&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= See also =&lt;br /&gt;
&lt;br /&gt;
* [[Partners]]&lt;br /&gt;
* [[Download mirrors]]&lt;br /&gt;
* [[VPS vs Dedicated]]&lt;/div&gt;</summary>
		<author><name>Vvs</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.openvz.org/index.php?title=Hosting_providers&amp;diff=23360</id>
		<title>Hosting providers</title>
		<link rel="alternate" type="text/html" href="https://wiki.openvz.org/index.php?title=Hosting_providers&amp;diff=23360"/>
		<updated>2020-09-25T13:22:25Z</updated>

		<summary type="html">&lt;p&gt;Vvs: /* See also */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''OpenVZ is free and open implementation of Virtuozzo containers for Linux.&lt;br /&gt;
Don't forget to keep [[testimonials|testimonial]] and [[donate]] to OpenVZ.'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
OpenVZ makes for a great hosting platform for VPS hosting. The providers below offer VPS services using OpenVZ.&lt;br /&gt;
&lt;br /&gt;
[[File:UsageLocation.svg]]&lt;br /&gt;
&lt;br /&gt;
= OpenVZ hosting providers =&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- @@@@@@@@@@@@@@@@@@@@@@@&lt;br /&gt;
&lt;br /&gt;
IF YOU EDIT THIS PAGE,  PLEASE OBEY TO THE FOLLOWING RULES:&lt;br /&gt;
&lt;br /&gt;
1. Keep your record on ONE line&lt;br /&gt;
2. Keep the list of providers alphabetically sorted, DO NOT insert your record on top.&lt;br /&gt;
3. Keep the list of countries alphabetically sorted as well.&lt;br /&gt;
&lt;br /&gt;
     @@@@@@@@@@@@@@@@@@@@@@@@ --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Andorra ==&lt;br /&gt;
* [https://www.actiu.net/pro/ Actiu informatica] amb servidors dins i fora del principat.&lt;br /&gt;
&lt;br /&gt;
== Argentina ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.fulltech.com.ar/ Full Tech Solutions] Specializes in the virtualization of OpenVZ &amp;amp; Virtuozzo containers, installed in the Full Tech Solutions Data Center located in Villa Elisa, Entre Rios Argentina.  It also offers services hosted in the United States, Netherlands and Germany&lt;br /&gt;
* [http://www.g2khosting.com/ G2K Hosting] offer OpenVZ containers with high level hardware technology from 25 US with Control Panel, various Linux Dists and full support.&lt;br /&gt;
* [https://hostingplus.com.ar/ HostingPlus Argentina] provide OpenVZ containers at our own datacenter in South America with triple internet provider. Starting from  us20/month&lt;br /&gt;
* [https://ibumu.com/ Ibumu] Best containers for wordpress starting from $5.5.&lt;br /&gt;
* [http://www.ihserver.net/ IHServer] Specialized virtualization on OpenVZ containers at Gigared datacenter. We have in Argentina one of the better fiber connection to the US, but also provides services from LSTN in Texas.&lt;br /&gt;
* [https://www.infranetworking.com.ar/ Infranetworking] All our Cloud VPS container solutions for Argentine customers are powered by the all mighty OpenVZ virtualization software.&lt;br /&gt;
* [https://www.neolo.com/ Neolo] provide OpenVZ containers at our own datacenter in South America with double internet provider. Choose your Linux OS and apps. Full support.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [http://www.wiredhosting.com.ar/ WiredHosting] offer XEN and OpenVZ containers with SSD drives, cloudflare security and weekly backups to protect your information. Phone and Helpdesk support. &lt;br /&gt;
&lt;br /&gt;
== Australia == &lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.auhost4u.com/ AUHost4u] - VPS Solutions provided from our D.C. in Sydney.&lt;br /&gt;
* [https://www.conetix.com.au/ Conetix Hosting] Specialising in business grade, fully managed Virtuozzo containers with Virtuzzo Cloud Storage. 100% Australian owned and operated. Brisbane based DC with Enterprise Dell servers.&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides self-managed OpenVZ based SSD VPS located at Equinix SY3 in Sydney, one of the best and well-connected datacenters in the region.&lt;br /&gt;
* [http://www.vpsfast.us/australia-cloud-server VPSFast] - VPS Provider with good prices in Australia.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Austria ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
* [https://kapper.net/ kapper.net] kapper.net offers OpenVZ and Virtuozzo (and other HyperVisors) based server-solutions with kind support and 24x7 maintenance.&lt;br /&gt;
* [https://mdhost.eu/vserver.php MDHost.eu] New Hosting Provider with nice Prices and many Server locations. Austria, Germany, France and more.&lt;br /&gt;
* [https://www.snb.at/ SNB] offers OpenVZ containers and support's also existing vm's in customers environment&lt;br /&gt;
* [https://www.waveride.at/ Waveride] Waveride, an EDIS company, offers budget full gigabit OpenVZ + solusVM VPS in Austria, USA and the Netherlands&lt;br /&gt;
* [http://www.vpsfast.us/austria-cloud-server VPSFast] - VPS Provider with good prices in Austria.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Brazil ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.datacorporate.com.br/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [http://www.globalmedia.com.br/ GlobalMedia] We offers OpenVZ containers hosted on a very fast network with fast setup. Ubuntu, Debian, CentOS.&lt;br /&gt;
* [http://www.host1plus.com.br/ Host1Plus] Servers hosted in São Paulo. We offering reliable and secure OpenVZ VPS Servers with 99.99% up-time, starting from $5.00 per month.&lt;br /&gt;
* [http://www.ipdeck.net/ IPDECK] VPS Linux server from R$15,00/month! Fully customizable according to your needs.&lt;br /&gt;
* [https://www.quantivehost.com.br/ QuantiveHost] VPS Linux with 99.99% uptime. Prices starting from R$ 29,35.&lt;br /&gt;
* [https://www.elevahost.com.br/ Eleva host] Server hosted in Brazil. The best support.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [https://www.ferenz.com.br/ Ferenz Networks] VPS Linux with best support. Prices starting from R$ 29,90.&lt;br /&gt;
&lt;br /&gt;
== Bulgaria ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.cloudhostinghub.com Offshore VPS Hsoting] CloudHostingHub.com is an [https://www.cloudhostinghub.com Cloud Offshore VPS Hosting] located in Buglaria. They provide both OpenVZ and KVM virtualization. CloudHostingHub.com is known for the high privacy protection , performance and stability.&lt;br /&gt;
* [https://www.cyberhour.com CyberHour.com] CyberHour.com is an [https://www.cyberhour.com offshore VPS hosting] provider located in Europe. The provide blazing fast servers and premium Bandwidth of 200Mbps. With high privacy protection.&lt;br /&gt;
* [https://www.linuxssdvps.com Bulgaria VPS] Linux SSD VPS is an [https://www.linuxssdvps.com offshore VPS hosting] provider located in Sofia, Bulgaria. Privacy is very respected and anonymous registrations are allowed, as well as payments via Bitcoin / PayPal.&lt;br /&gt;
* [http://www.webuzo.net Bulgaria VPS] Webuzo Network is an offshore SSD VPS hosting provider located in Bulgaria. Privacy is very respected and anonymous registrations are allowed, as well as payments via Bitcoin / PayPal.&lt;br /&gt;
* [https://vpsbg.eu/en Bulgaria VPS] VPSBG.eu is an offshore SSD VPS hosting provider located in Sofia, Bulgaria. Privacy is very respected and anonymous registrations are allowed, as well as payments via Bitcoin.&lt;br /&gt;
* [http://www.bul.net/ Bul.net] Provides OpenVZ based VPS, perfect user/VPS management via [http://ispsystem.com VDSManager]. Instant creation after online payment. Debian/Ubuntu/CentOS with ISPManager Control panel. Optimal price policy.&lt;br /&gt;
* [http://www.cointech.eu/vps-hosting/ CoInTech] provides OpenVZ based VPS containers, free webmin managment. Containers can be CentOS, Slackware, Ubuntu, custom or our special [http://www.mandriva.com Mandriva Linux] container with own [http://mandriva.cointech.net repository].&lt;br /&gt;
* [http://www.rax.bg/ RAX.bg] Offers OpenVZ based VPS, hosted on a clustered infrastructure and redundant network. Easy to use user management, Instant setup, CentOS (OS).&lt;br /&gt;
* [http://www.jump.bg/ Jump.bg] Provides OpenVZ VPS servers hosted on a redundant network which provides a very easy to manage platform for all clients which gain instant access to their OS ( Ubuntu, CentOS , Debian etc ... )&lt;br /&gt;
* [https://www.fitvps.com/ FitVPS.com] Offers affordable and reliable OpenVZ based VPS in Varna, Bulgaria. Own data center, own multihomed network, with SLA. Instant automatic setup, SolusVM control panel.&lt;br /&gt;
* [http://www.qhoster.com/ QHoster.com] Instant activation OpenVZ VPS in UK, USA, Germany, France and Switzerland. Both 32/64 bit OpenVZ OS VPS templates : CentOS 5/6, Debian 6/7, Ubuntu 12/13.&lt;br /&gt;
* [https://www.verdina.net Verdina.NET] Verdina.net offers dedicated hosting services, provided by powerful dell hardware. Servers are located in Telepoint Datacenter, a Tier 3 DC located in Sofia, Bulgaria.&lt;br /&gt;
* [https://www.vps.ag/ VPS.AG] Affordable and reliable OpenVZ VPS based in Sofia, Bulgaria. Instant setup and 24/7 support.&lt;br /&gt;
* [http://www.vpsfast.us/bulgaria-vps VPSFast] - VPS Provider with good prices in Bulgaria.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Canada ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://4goodhosting.com/linux-vps-hosting 4GooodHosting] - Canadian OpenVZ VPS Servers, Starting from  $18.99/month SSD,. Canada VPS hosting in three different Canadian Data Centers with nightly backups.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [https://whc.ca/canadian-cloud-servers Web Hosting Canada Cloud Servers] - Powerful Cloud servers powered by OpenVZ and located in Canadian datacenters, with fast RAID-10 storage, fully managed with cPanel.&lt;br /&gt;
* [http://compevo.com compevo Clustered VPS Server Hosting Provider] - We offer clustered VPS Servers to avoid downtime and dataloss. Our network and service is second to none and is used by businesses around the world.&lt;br /&gt;
* [http://www.datacorporate.ca/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [https://www.delimiter.com/storage-vps/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [https://www.miditech.com/ MidiTech Hosting Canada] VPS hosting offered by MidiTech Canada are powered by VMware, . Fully Managed VPS with control panels&lt;br /&gt;
* [http://www.gotekky.com Gotekky Cloud VPS Hosting] High quality Cloud VPS packages powered by our own infrastructure and network in Toronto. Scalable from our $5/mo plan all the way to your own dedicated cloud server. Based on OpenVZ and our own proprietary panel.&lt;br /&gt;
* [https://gigebox.com GIGEBOX.COM] GIGEBOX are expert providers of secure business hosting services, we operate high-performance professional servers, specially designed for businesses, powered by the Intel(R) Xeon(R) Hexa-Core CPU Processors and 128 GB DDR3 minimum RAM. Enjoy high availability, performance and security for multiple uses.&lt;br /&gt;
* [http://www.letstalkdigital.com/index.php?option=com_content&amp;amp;view=article&amp;amp;id=73&amp;amp;Itemid=65 LetsTalkDigital VPS Hosting] LetsTalkDigital.com offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from $14.99. Virtual Private Server (VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://secure.media-hosts.com/link.php?id=7 Media-Hosts.com] Provides Quality and Scalable OpenVZ based Virtual Private Servers. 100% network uptime guaranteed. Located in Montreal Quebec with 5 Tier1 upstream providers.&lt;br /&gt;
* [http://www.openvz.ca OpenVZ.ca] Canadian Budget VPS Servers on OpenVZ Platform. &lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [http://protoserver.com ProtoServer] Advanced VPS Hosting from $4.95/month. Many pre-installed VPS Templates available (CMS, E-commerce, Web development, Online community, Media streaming, etc.) No bundles or service plans - mix VPS resources as needed and change VPS configuration anytime. Also offering DNS Hosting, E-mail hosting, Domains Registration.&lt;br /&gt;
* [http://www.vistapages.com/vps Vistapages VPS] - IBM &amp;amp; Dell Hardware. MCI/Verizon Backbone. Distros: Centos, Fedora, Debian &amp;amp; more. Full management available. Located in Toronto.&lt;br /&gt;
* [http://vpsville.ca/ VPSVille] - Good network. Good CPU. Good choice of distros: Centos, Fedora, Debian, Ubuntu, Slackware, Gentoo, OpenSUSE, CERN. My favorite OpenVZ provider. [mailto:jak@isp2dial.com John Kelly]&lt;br /&gt;
* [http://solib.ca/services-offerts/hebergement-haute-vitesse/serveurs-vps/ SOLIB Logiciel Libre Québec] Our company offers DDoS protected server solutions including OpenVZ containers. Very high availability and reliability, all our VPS are located in Quebec, Canada.&lt;br /&gt;
* [https://www.host-stage.net/linux-vps/ HostStage - Linux VPS] - Simple, Reliable OpenVZ VPS packed with 1 GBPS port speed, RAID 10 SSD, Intel Xeon CPU, DDoS Protection from $4.95/month&lt;br /&gt;
* [https://undergroundprivate.com/russiaoffshorevps.html  UndergroundPrivate.com] - OpenVZ with highly privacy, offshore , DMCA ignored , high confidence, SolusVM and cPanel, managed and non managed service.&lt;br /&gt;
* [http://www.vpsfast.us/canada-vps VPSFast] - VPS Provider with good prices in Canada.&lt;br /&gt;
* [https://websavers.ca/canadian-vps-hosting Websavers Inc in Halifax] - VZ containers priced by the resource. Resource changes entirely client-level.&lt;br /&gt;
* [https://www.yoorshop.fr/hosting-ssd-vps-usa-canada.php YOORshop SAS] - High performance NVMe SSD Linux VPS in Canada, daily backup included. Starting from €7,49 /month&lt;br /&gt;
&lt;br /&gt;
== Colombia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.datacorporate.co/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [http://www.soficol.com/ Soficol] Offers Enterprise OpenVZ based VPS, hosted on a clustered infrastructure and redundant network. Easy to use user management and instant setup.&lt;br /&gt;
* [https://www.hostingplus.com.co/ Hosting Plus Colombia] provide OpenVZ containers at our own datacenter in South America with triple internet provider. Starting from  us20/month&lt;br /&gt;
* [https://ibumu.com/ Ibumu] Best containers for wordpress starting from $5.5.&lt;br /&gt;
&lt;br /&gt;
== Czech Republic ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://4smart.cz 4Smart.cz] - prepaid, you are charged only by the system resources you use, therefore you can run a VPS for as little as  1 EUR a month if your vps is not resource hungry. Even if you pay  0,50 EUR  month, you still have 3 GB of RAM and 8 cores available to you VPS.&lt;br /&gt;
* [http://www.freecloud.cz FREECLOUD.CZ] - Free OpenVZ VPS Server - own IP, 800Mhz CPU, 512MB RAM, 50Mbits LAN, 10GB HDD, 100GB Traffic - Debian, Ubuntu, Gentoo, Slackware, Fedora, Centos&lt;br /&gt;
* [http://www.hukot.cz Hukot.cz] - OpenVZ VPS Servers starting from 2.92 €, XEON, 1 Gbps uplink, unlimited traffic. Debian, Ubuntu, CentOS, Scientific, SuSe, Fedora, Elastix.&lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [http://www.ultimatehosting.eu UltimateHosting.eu] - OpenVZ VPS Servers starting from $8 with custom configuration - up to 100 GB HDD, 2048 MB RAM, 2 GHz CPU, and unlimited traffic.&lt;br /&gt;
* [http://www.mujhost.net MUJHOST.NET] - OpenVZ VPS Servers starting from 160 Kč, 100Mbps / 1 Gbps uplink, unlimited traffic. Debian, Ubuntu, CentOS ...&lt;br /&gt;
&lt;br /&gt;
== Chile ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.1h.cl/ 1h.cl Vps - Chile] - VPS High Performance with OpenVZ in Chile&lt;br /&gt;
* [http://www.1hosting.cl/ 1hosting Virtual servers - Chile] - VPS Professional with OpenVZ&lt;br /&gt;
* [http://www.dch.cl/ DCH] - DCH.cl Hosting Chile - High Performance VPS Servers with OpenVZ &lt;br /&gt;
* [https://www.dominioweb.net/ Dominioweb] - Premium Hosting and domain registration&lt;br /&gt;
* [http://ecohosting.cl/ EcoHosting.cl Santiago - Chile] - VPS with OpenVZ in Chile&lt;br /&gt;
* [http://www.host.cl/ Host.cl] - Cloud Computing&lt;br /&gt;
* [https://www.hostingplus.cl/ HostingPlus Internet Limitada] - High Performance Vps provider in Chile&lt;br /&gt;
* [https://www.hostname.cl/ Hostname Ltda] - VPS Hosting with Datacenter in Chile&lt;br /&gt;
* [https://www.inc.cl/ INC Internet Limitada] - VPS Hosting provider in Chile&lt;br /&gt;
&lt;br /&gt;
== Denmark ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.vpsfast.us/denmark-cloud-server VPSFast] - VPS Provider with good prices in Denmark.&lt;br /&gt;
&lt;br /&gt;
== Ecuador ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.dedi.space/ DediSpace Telecom] - VPS Servers in Ecuador - USA, France, Germany, Ecuador Datacenter.&lt;br /&gt;
&lt;br /&gt;
== France ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.BargainVPS.co.uk/ BargainVPS] - UK / US / EU Instant setup VPS - We have some great Linux &amp;amp; Windows Bargain VPS packages on offer for you here all available Fully Managed.&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in France from 1.88EUR/month.&lt;br /&gt;
* [http://www.fixweb.com Fixweb] Great managed hosting provider with strong anti ddos solution - openvz only - leader in managed openvz solution with horizontal scaling and high availability&lt;br /&gt;
* [http://www.Freaksol.com/ FreaKs VPS Hosting] Self reliant hosted on independent networks &amp;amp; DC low ping,No restrictions on file types,Unlimited resources,high ram servers &lt;br /&gt;
* [https://galaxyhostplus.com/ovz GalaxyHostPlus] Cheap VPS Hosting based in Roubaix with new 2016 line starts from $2/Month &lt;br /&gt;
* [http://www.harmony-hosting.com Harmony-Hosting] A high performance VPS hosting - The leader in France&lt;br /&gt;
* [https://www.delimiter.com/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [http://www.lws.fr/serveur_dedie_linux.php LWS - Linux VPS ] - Linux VPS Hosting - Only 9.99€/month, Affordable and Secure OpenVZ VPS Servers with 99.99% up-time, web hosting control panel Included. French datacenter&lt;br /&gt;
* [http://www.ovh.co.uk/vps/ OVH VPS] linux from 3€/month, [http://www.ovh.co.uk/vps/vps-cloud.xml windows] from 12€/month.&lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [https://VPSZ.FR VPSZ] VPS Hosting in France. Starting from 2,99€, Unlimited traffic.&lt;br /&gt;
* [http://www.1euro-hosting.eu BEST EU VPS - 1€ Hosting] - Providing reliable and secure OpenVZ VPS Servers with 99.99% up-time, starting from 8€&lt;br /&gt;
* [https://www.shape.host/linux-vps/ Shape Host - Linux VPS] - OpenVZ virtual servers, Instant Linux VPS&lt;br /&gt;
* [https://undergroundprivate.com/russiaoffshorevps.html  UndergroundPrivate.com] - OpenVZ with highly privacy, offshore , DMCA ignored , high confidence, SolusVM and cPanel, managed and non managed service.&lt;br /&gt;
* [https://www.host-stage.net/linux-vps/ HostStage - Linux VPS] - Simple, Reliable OpenVZ VPS packed with 1 GBPS port speed, RAID 10 SSD, Intel Xeon CPU from $4.95/month&lt;br /&gt;
* [https://www.yoorshop.hosting/hosting-vps-ssd-europe.php YOORshop SAS] - High performance NVMe SSD OpenVZ 7 VPS within 13 countries in Europe, Canada and Singapore. Daily backup included. From €7,49 /month&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Germany ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://afterburst.com Afterburst (Previously FanaticalVPS)]: affordable unmetered, unmanaged VPS servers in Germany.&lt;br /&gt;
* [http://www.b2b-hosting.de/vps/ B2B Hosting]: Professional virtual servers for business applications. Performance and reliability at a fair price. Made with OpenVZ.&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in Germany from 1.88EUR/month.&lt;br /&gt;
* [https://www.delimiter.com/dedicated-servers/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [https://galaxyhostplus.com/ovz GalaxyHostPlus] Cheap VPS Hosting based in Frankfurt with new 2016 line starts from  $2/Month&lt;br /&gt;
* [http://hostmist.com/openvz-vps-germany.html Host Mist]: features budget OpenVZ VPS hosting in Germany.&lt;br /&gt;
* [http://www.host1plus.com/ Host1Plus] Servers based in Frankfurt am Main. Offering reliable OpenVZ based VPS servers in Germany starting from $2.50 per month.&lt;br /&gt;
* [http://www.hostingjuice.com/ HostingJuice] The Superioum VPS and Web Hosting provider, low prices - Premium packages.&lt;br /&gt;
* [http://www.ingate.de/managed-server.html Ingate] offers managed servers with openVZ virtualization. located in germany, great support.&lt;br /&gt;
* [http://linevast.de/angebote/linux-openvz-vserver-mieten.html Linevast] Reliable OpenVZ based VPS with fast support, located in germany&lt;br /&gt;
* [https://cp.myvirtualserver.com/?affid=42 MyVirtualServer]: Cheap VPS (OpenVZ/KVM, 5TB Traffic, 10Gigabit), servers located in Frankfurt (best ping, starting 1.99€) good support (en/de) //New Design!&lt;br /&gt;
* [https://www.nogics.com Nogics Technologies]: Affordable VPS based in Germany. Starts from $5.96/mo.&lt;br /&gt;
* [http://www.plambee.de/vserver.php Plambee.de Webhosting]: Powerfull OpenVZ based VPS servers at low cost with hosting in Germany&lt;br /&gt;
* [https://rackset.com/ Rackset Hosting] Managed Dedicated / VPS and Website Hosting services since 2004.&lt;br /&gt;
* [http://www.serverbiz.de/vserver Serverbiz] Powerful VPS at very low prices.&lt;br /&gt;
* [http://www.synapseglobal.com/voip_vps.html SynapseGlobal.com] Elastix, Trixbox, PBX in a Flash and Asterisk VPS - OpenVZ based Asterisk VOIP servers located in Munich Germany.&lt;br /&gt;
* [http://www.vStarVPS.com vStarVPS]: Reliable VPS Hosting at lowest prices, with 99.9% uptime, Premium Unmetered Bandwidth and Custom HDD/RAM of your choice. Instant and FREE Setup. RapidLeech Allowed.&lt;br /&gt;
* [http://whynotavps.com WhyNOTaVPS]: Instant activated VPS SERVERS!!&lt;br /&gt;
* [http://squote.de/index.php?ref=1421485383 SQuote]: SQuote VPS Hosting and more. VPS 1 Core, 1.024MB RAM, 512MB RAM SWAP, 50 GB HDD, 1x IPv4. 3,89EUR/month. For the best VPS SQuote.de&lt;br /&gt;
* [http://www.vpsfast.us/germany-vps VPSFast] - VPS Provider with good prices in Germany.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Guatemala ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.globalnetcafe.com/gnc/menu/hospedaje.htm Global Net Cafe]: Servicios de hospedaje, reseller, vps, colocacion y servidores. Incluyendo OpenVZ.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Hong Kong ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [https://hostus.us HostUS] features unmanaged and managed OpenVZ VPS in Hong Kong as well as 3 USA locations. Unparalleled connectivity to the Asia Pacific. Enjoy 15% off with coupon VPS15OFF.&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides self-managed OpenVZ based SSD VPS in Hong Kong, located at the Pacnet datacenter. &lt;br /&gt;
* [http://vps.timway.com/linux_vps.html Timway VPS Hosting] - Quality, non-oversold hosting provider focused on being security conscious and offering a positive client experience.   Centos, Debian, Fedora, OpenSuse and Ubuntu Containers are available.&lt;br /&gt;
* [http://www.vpsfast.us/hong-kong-cloud-server VPSFast] - VPS Provider with good prices in Hong Kong.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Hungary ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://elin.hu/index.php?menu=8&amp;amp;nyelv=hu&amp;amp;cim=Virtualis-szerver Virtual server] OpenVZ server: 2xX5650 Intel Xeon, 32GB RAM, 15.000rpm SAS disks, 100Mbit/s, unlimited bandwith.&lt;br /&gt;
* [https://www.ivirtual.co/vps-hosting/ iVirtual.co ] OpenVZ Master Server: 2x Intel Xeon @ 3.0GHZ, 64 GB ECC Ram, 15k RPM SAS HDD's, 1Gbit/s Network, Unlimited bandwith.&lt;br /&gt;
&lt;br /&gt;
== Iceland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
&lt;br /&gt;
== Ireland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== India ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://cochinwebhost.in/budget-vps-hosting/ Low Cost VPS Hosting] Fast SSD VPS Server for Hosting Solutions at budget prices with 24x7 Technical Support.&lt;br /&gt;
* [https://www.cyberhost.in/ Cyberhost] - Affordable OpenVZ containers on high performance quality Servers. Wide choice of virtual dedicated servers with Full management available.&lt;br /&gt;
* [http://www.datacorporate.in/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
*[http://www.fastwebhost.in/vps-hosting.html fastwebhost VPS Hosting] VPS hosting offered by fastwebhost are powered by ''VPS hosting, virtual server hosting and Linux VPS hosting services''. Fully Managed VPS with control panels.&lt;br /&gt;
* [http://www.Freaksol.com/ Freaksol VPS Hosting] Self reliant hosted on independent networks &amp;amp; DC low ping to India,No restrictions on file types,Unlimited resources,high ram servers&lt;br /&gt;
* [https://www.geniushost.in Genius Host] Fully managed [https://www.geniushost.in SSD Web Hosting] offered by Genius Host are powered by ''OpenVZ'' With LiteSpeed Web Server &amp;amp; Mariadb.&lt;br /&gt;
* [http://www.hioxindia.com/virtual-private-server.php VPS Hosting] Reliable and quality VPS Virtual Private Server Hosting&lt;br /&gt;
* [http://www.hostitsmart.com/ Host IT Smart] - One of the best VPS Hosting Provider in India with 24X7X365 Customer support.&lt;br /&gt;
* [https://www.hostnamaste.com HostNamaste] is your high-performance [https://www.hostnamaste.com/openvz-vps.php OpenVZ VPS Hosting] Provider. Get your perfect [https://www.hostnamaste.com/openvz-vps.php VPS Hosting] account today! Available in [https://www.hostnamaste.com/datacenter-losangeles.php Los Angeles], [https://www.hostnamaste.com/datacenter-dallas.php Dallas], [https://www.hostnamaste.com/datacenter-jacksonville.php Jacksonville], USA,  [https://www.hostnamaste.com/datacenter-france.php France], Europe, [https://www.hostnamaste.com/datacenter-mumbai-pune.php Mumbai], India and [https://www.hostnamaste.com/openvz-vps-moscow-russia.php Moscow], Russia.&lt;br /&gt;
* [https://www.hostsoch.in/windows-hosting.html HostSoch Windows Hosting] Windows hosting offered by HostSoch are powered by ''Windows 2012, ASP.NET, MVC, IIS, PHP and More''. 99.9% Uptime, 24/7 Dedicated support guaranteed. &lt;br /&gt;
* [https://www.miditech.co.in/ MidiTech VPS Hosting] VPS hosting offered by MidiTech are powered by ''VMware, ''. Fully Managed VPS with control panels. &lt;br /&gt;
* [http://www.milesweb.com/vps-hosting.php Milesweb VPS Hosting] VPS hosting offered by Milesweb are powered by ''VMware, OpenVZ''. Fully Managed VPS with control panels. &lt;br /&gt;
* [https://www.nogics.com/web/vps-hosting/ Nogics Technologies] Instant provisioning of VPS, VPS starts from $5.96/mo. 30+ OS templates.&lt;br /&gt;
* [http://overlineindia.net/vpshosting-p-62.html Overline India VPS Hosting] Fully managed cPanel Installed VPS Hosting with 24x7x365 Live Chat Tech support, powered by OpenVZ&lt;br /&gt;
* [http://www.prohosterz.com/linux-vps.php ProHosterZ VPS Hosting] Reliable and quality Virtual Dedicated Servers | Virtual Private Servers | XEN VPS | OpenVZ VPS | Virtual Hosting&lt;br /&gt;
* [http://pve.proxmox.com/wiki/User:Apmuthu Ap.Muthu] sponsored by [http://www.gnuacademy.org GNUAcademy], [http://www.planettel.com.sg PlaNetTel] and [http://www.sacollege.net S A College] creates OpenVZ Templates for the Open Source Community and provides hosting in datacenters of clients choice or on site.&lt;br /&gt;
* [http://www.servers.co.in/vps/vps_hosting.php Server Web Hosting] Offers Fully Managed OpenVZ VPS Web hosting in India/US/UK at affordable and cheap rates with best hardware quality and customer service 24/7/365 days&lt;br /&gt;
* [http://touchstone.hosting/ Touchstone Solutions Private Limited] High-performance Enterprise VPS Hosting in India. One of the highest performing VPS Servers available with cPanel Installed.&lt;br /&gt;
* [http://vpsbeach.com VpsBeach Managed Hosting] Fully managed cPanel Installed VPS Hosting with 24x7x365 Live Chat Tech support, powered by OpenVZ&lt;br /&gt;
* [http://www.vpsfast.us/india-vps VPSFast] - VPS Provider with good prices in India.&lt;br /&gt;
* [http://www.vpshostingindia.net/ VPS Hosting India, Fully Managed Server] A Committed Fully Managed VPS Server for Hosting solution in India, Complete Technical Support assistance with commitment of fast, clustered and most supportive DataCenters.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Indonesia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.herza.id/vps-murah/ Herza.ID] Low Cost OpenVZ Virtual Server, starting from IDR 50.000 / Month with RAID 10 SSD, Unlimited Bandwidth with 1 Gbps IIX &amp;amp; OIXP Connection, and 24/7 Technical Support.&lt;br /&gt;
* [https://www.kucingweb.co.id/hosting/vps/ Kucingweb Indonesia] High Performance VPS service with the best choice.&lt;br /&gt;
&lt;br /&gt;
== Iran==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.ehost.ir EHost.ir] - OpenVZ Servers , DUAL XEON Cpus , 12 Gb Ram , 100Mbit Dedicated Connection , SAS HardDisk&lt;br /&gt;
* [https://www.irpower.com IRPOWER Webhostings &amp;amp; Domain] - OpenVZ Servers Since 2005!&lt;br /&gt;
* [http://www.vpsfa.com VPSFa.com] - OpenVZ Servers , DUAL XEON Cpus -  , 24Gb Ram , 1000Mbit Dedicated Connection , SAS HardDisk&lt;br /&gt;
* [https://webramz.com Webramz Host] - With more than 15 years experience in Managed Hosting, Webramz was first vps provider in Iran which used to setup OpenVZ servers. Nowadays we provide wide range of services including CloudLinux based OpenVZ and Managed Vps Servers.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Italy ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
* [http://www.hosting-italia.net hosting italia] - OpenVZ Servers and panel enduser Virtualizor Intel® Core™ i7-920 Quad-Core 48 GB DDR3 RAM - Guaranteed Bandwidth 200 Mbit/s&lt;br /&gt;
* [http://www.vpsfast.us/italy-vps VPSFast] - VPS Provider with good prices in Italy.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Liechtenstein ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
&lt;br /&gt;
== Lithuania ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.cloudlix.com/ CloudLix.com] - Managed and unmanaged OpenVZ virtual servers based on 2.6.32 kernel. Up to 20GHz (Intel SandyBridge) CPU and 10GB RAM. Located in Vilnius and Siauliai.&lt;br /&gt;
* [http://www.databank.lt/ databank.lt] - high-quality professional OpenVZ hosting with cloud computing solutions.&lt;br /&gt;
* [https://www.hostens.com/vps-hosting/ Hostens] - Unmanaged VPS hosting for the great price: clear deals, no hidden conditions, quality service from the heart of Europe. &lt;br /&gt;
* [https://www.lavavps.lt/ lavavps.lt] - Professional high-quality OpenVZ containers (VPS servers) affordable for everyone. Powerful control panel for VPS management.&lt;br /&gt;
* [https://monovm.com/ monovm.com] - High Quality VPS Hosting Provider&lt;br /&gt;
* [http://www.serveriai.lt/ Serveriai.lt] - Affordable OpenVZ containers on quality HP hardware. Wide choice of virtual dedicated servers up to 8 CPU cores and 8 GB RAM. Full management available. Located in Vilnius.&lt;br /&gt;
* [https://www.time4vps.com/?affid=1359 Time4VPS] - Powerful cloud technology based infrastructure will let you build custom virtual machine and pay only for what you really need. Located in Vilnius city.(0.99€/month(2Yr) 512mbRAM, 1TB Traffic// 4.5€/month(2Yr) StorageVps, 1TB, 10TB Traffic)&lt;br /&gt;
* [https://www.vpsnet.lt/en/ VPSnet.lt] - Powerful and high quality servers for a competitive price in Lithuania (Eastern Europe).&lt;br /&gt;
* [http://www.vpsfast.us/lithuania-vps VPSFast] - VPS Provider with good prices in Lithuania.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Latvia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.altnet.lv/ Altnet] - Hosting and colocation services. Any flawor, you name it. &lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
&lt;br /&gt;
* [http://www.vpsfast.us/latvia-vps VPSFast] - VPS Provider with good prices in Latvia.&lt;br /&gt;
&lt;br /&gt;
== Luxembourg ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.vpsfast.us/luxembourg-vps VPSFast] - VPS Provider with good prices in Luxembourg.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Malaysia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.cubiex.com/ Cubiex] - Malaysia Affordable Web Hosting and Domain Name. Affordable Linux VPS Hosting in Malaysia. OpenVZ based, Quad Core Xeon node. cPanel/WHM and DirectAdmin also available.&lt;br /&gt;
* [https://controlvm.com ControlVM] ControlVM Sdn. Bhd. offering OpenVZ VPS in Singapore, Malaysia, USA and Germany.&lt;br /&gt;
* [https://www.yoorshop.fr/hosting-ssd-vps-singapore-asia.php YOORshop SAS] - High performance SSD Linux VPS In Singapore with daily backup included. Starting from €7,49 /month&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Malta ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.a6it.com/ A6iT] - Stable, quality managed OpenVZ VPSs based in Malta.  Redundant network.&lt;br /&gt;
&lt;br /&gt;
== Morocco ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.belsemtech.com/ BelsemTech.CoM] BelsemTech SARL offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from 300 DH. Virtual Private Server (VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://www.hostoweb.com/ HosToWeb] is the only company providing VPS hosting in Morocco Data Center.&lt;br /&gt;
* [http://www.adk-media.com/ ADK Media] provides affordable managed and unmanaged virtual servers based on OpenVZ, Xen Paravirtualization and Xen HVM platforms. 24/7 Technical Support. Distros: Centos, Fedora, Debian, Ubuntu and more.&lt;br /&gt;
* [http://www.naja7host.com/ Naja7Host.CoM] The Naja7host SARL provides affordable VPS hosting using the OpenVZ platform. Running on Full Quality Nodes of up to 8 CPU and 16 GB RAM. . All VPS's come with Real 24/7/365  Technical Support and cPanel free (if option selected  ). Multiple choice of OS 32/64Bits (Centos, fedora, ubuntu, debian .ect ...)&lt;br /&gt;
* [http://www.lehoster.com/ Le Hoster] offers affordable Virtual Private Servers using the OpenVZ and KVM platform. Backed with our amazing customer support.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Netherlands ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.avanpad.com/ Avanpad] offers OpenVZ VPS hosting with 24\7 online support. Customer can request different control panels or templates for installation on his VPS.&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in Netherlands from 1.88EUR/month.&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
* [http://www.Freaksol.com/ FreaKs VPS Hosting] Self reliant hosted on independent networks &amp;amp; DC low ping around the world,No restrictions on file types,Unlimited resources,high ram servers&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [http://www.HostSailor.com/ HostSailor] Number 1 Netherlands Provider HostSailor provides affordable &amp;amp; high quality services such as VPS (XEN, OpenVZ and KVM) Linux or Windows, Dedicated servers, SSL certificates and domain name services.&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides self-managed OpenVZ SSD VPS in Telecity AMS 5, one of the best datacenters located in the Amsterdam area.&lt;br /&gt;
* [https://iniz.com/ INIZ VPS Hosting] INIZ provides affordable VPS Hosting in Amsterdam, Netherlands with high resources at low prices.&lt;br /&gt;
* [https://www.liteserver.nl/ LiteServer] Looking for a quality and affordable VPS in the center of The Netherlands? We provide SSD, Storage and High Bandwidth VPSes, starting at only €16 per year. We operate AS60404.&lt;br /&gt;
* [https://www.mangelot-hosting.nl/ Mangelot Hosting] Mangelot Hosting, A webhosting company located in the Netherlands, offers budget OpenVZ hosting solutions for maximum scalability en performance.&lt;br /&gt;
* [http://www.osbox.nl OsBoX Dutch Network Engineering] Cheap VPS host as low as $1 per month. Very great uptime and a overall good support. Check the website for the server plans.&lt;br /&gt;
* [https://www.scopehosts.com/openvz-vps/netherlands-vps ScopeHosts.Com] - ScopeHosts Provides OpenVZ VPS in Netherlands, Amsterdam Powered with Pure SSD, 1Gbps Uplink, DDOS Protection, Self-Managed and Managed VPS Solutions&lt;br /&gt;
* [http://www.signet.nl/ Signet VPS Hosting] - Signet delivers VPS hosting plans based on CentOS or Debian templates, including control-panel Virtualmin.&lt;br /&gt;
* [http://simple-webhosting.eu/ Simple-webhosting.eu] - OpenVZ based web hosting starting from €0.98 per month.&lt;br /&gt;
* [https://www.seedvps.com SeedVPS] Provides Powerful &amp;amp; Reliable OVZ/KVM VPS Hosting in The Netherlands&lt;br /&gt;
* [http://www.touchvps.com/ TouchVPS] is a company who offer Support and Managed Services for OpenVZ Servers ,also offer templates for openvz ready to go with cPanel , DirectAdmin , Plesk , Games, IRC Services, Desktop and many more.&lt;br /&gt;
* [https://www.totallyhosted.nl/ TotallyHosted] OpenVZ based Premium VPS services located in the Netherlands @ Serverius DC.&lt;br /&gt;
* [https://undergroundprivate.com/russiaoffshorevps.html  UndergroundPrivate.com] - OpenVZ with highly privacy, offshore , DMCA ignored , high confidence, SolusVM and cPanel, managed and non managed service.&lt;br /&gt;
* [http://www.voipcomplete.com/product-overview/dedicated-vps.html VOIPcomplete] offers dedicated VPS plans based on CentOS including a VPS management interface.&lt;br /&gt;
* [http://www.vpsfast.us/netherlands-vps VPSFast] - VPS Provider with good prices in Netherlands.&lt;br /&gt;
* [https://www.vps9.net/netherlands-vps VPS9.NET] - VPS9 OpenVZ Nodes are located in Naaldwijk, Netherlands. We provide OpenVZ VPS Services at very a affordable cost, powered with 20x Faster SSD on RAID-10 Partition.&lt;br /&gt;
* [https://www.waveride.at/ Waveride] Waveride, an EDIS company, offers budget full gigabit OpenVZ + solusVM VPS in Austria, USA and the Netherlands&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Norway ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.vpsfast.us/norway-vps VPSFast] - VPS Provider with good prices in Norway.&lt;br /&gt;
&lt;br /&gt;
== Pakistan ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://vimzaa.com/ Vimzaa] The best hosting in Pakistan.&lt;br /&gt;
&lt;br /&gt;
== Philippines ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.web.com.ph/vps.php Web.com.ph] - provides OpenVZ virtual servers in the Philippines.&lt;br /&gt;
&lt;br /&gt;
== Perú ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.hn.pe/ Hostname] Hostname offers business OpenVZ containers in Perú&lt;br /&gt;
* [http://www.hostingandino.pe/ Hostingandino Lima - Peru] - VPS with OpenVZ in Peru&lt;br /&gt;
* [http://www.hostingplus.pe/ HostingPlus Internet Limitada] - High Performance Vps provider in Peru&lt;br /&gt;
* [https://www.hostingroup.com/ Hostingroup] Web hosting for small businness in Perú.&lt;br /&gt;
* [https://hostingweb.pe/ Hosting Web] The best hosting in PERU.&lt;br /&gt;
* [https://www.inchosting.pe/ HostingINC SAC] OpenVZ virtualization solutions for business in Perú.&lt;br /&gt;
* [https://www.mejorhosting.pe/ Mejor Hosting Perú] Hosting comparison for peruvian hosting providers.&lt;br /&gt;
* [https://webuniversal.pe/ Web Universal] The best hosting in PERU in the World.&lt;br /&gt;
&lt;br /&gt;
== Poland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://hosteam.pl/ HosTeam] offers OpenVZ VPS hosting from their DataCenter in Poland. Customer has choice of all major Linux distros (WARNING!!! restoring your backup is VERY expensive and they charge even if it wasn't restored correctly!), NATIVE IPV6 AVAILABLE!&lt;br /&gt;
&lt;br /&gt;
* [http://ultimahost.pl/ UltimaHost] high grade OpenVZ VPS and FreeBSD jail (DC in Łódź, Poland), brand of statnet.pl, SSD available for more expensive packets, NO IPV6 AVAILABLE (but they can load you tun module)&lt;br /&gt;
&lt;br /&gt;
* [http://budgetvps.pl/ BudgetVPS] very cheap, low end grade OpenVZ VPSes (DC in Gdańsk, Poland), brand of HitMe.pl&lt;br /&gt;
&lt;br /&gt;
* [https://hitme.pl/ HitMe.pl] high grade OpenVZ/Xen PV/Xen HVM VPSes, Virtuozzo (DC in Gdańsk, Poland), NATIVE IPV6 AVAILABLE (/64 on demand for free)!&lt;br /&gt;
&lt;br /&gt;
* [http://www.kr-cpd.pl/oferta/serwery-vps/ KR-CPD] Cracow's Center of Data Processing (DC of course in Cracow, Poland)&lt;br /&gt;
&lt;br /&gt;
* [http://livenet.pl Livenet] cheap, middle/low end OpenVZ VPSes (DC in Łódź, Poland)&lt;br /&gt;
&lt;br /&gt;
* [http://slaskdatacenter.pl/ Śląsk Data Center] high/middle grade OpenVZ VPSes (DC in Silesia province, Poland), SSD available for more expensive packets&lt;br /&gt;
&lt;br /&gt;
* [https://www.ionic.pl/ IONIC.pl] VPS OpenVZ with SolusVM control panel, own DC in Cracow&lt;br /&gt;
&lt;br /&gt;
* [https://microvps.pl/ MicroVPS.pl] Middle And low end OpenVZv7 VPS plans. SSD for regular VPS and HHD for storage plans (up to 1TB)&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Portugal ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.ptservidor.pt/ PTServidor] - OpenVZ virtual servers with free management based in Portugal.&lt;br /&gt;
* [http://www.efeito.net/ Weblevel.pt] - OpenVZ virtual servers based in Portugal.&lt;br /&gt;
* [https://www.webtuga.pt/ WebTuga] - Managed/Unmanaged Virtual Private Servers hosted in a Portuguese Datacenter with lots of extras&lt;br /&gt;
* [https://www.cloudfire.pt/ CloudFire] - OpenVZ VPS at very low prices hosted in Portugal&lt;br /&gt;
* [https://www.linxisp.com/ LINXISP] - High Availability &amp;amp; Performance OpenVZ Containers&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] - Build an OpenVZ VPS in 14 locations WordWide From £2.49&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Romania ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.intovps.com IntoVPS] - offers unmanaged OpenVZ virtual servers based in Romania, Netherlands and USA. A lot of resources for decent prices.&lt;br /&gt;
* [http://www.ename.ro/dedicated.html eName] - managed OpenVZ virtual servers in Bucharest, Romania&lt;br /&gt;
* [http://www.ch-center.com/virtual-servers Ch-center] - unmanaged OpenVZ virtual servers, based in Romania in it's own Data Center&lt;br /&gt;
* [http://www.clouds.ro/servere-virtuale/ Clouds] - OpenVZ virtual servers hosted on premium hardware, in Romania&lt;br /&gt;
* [http://www.HostSailor.com/ HostSailor] HostSailor provides affordable &amp;amp; high quality OpenVZ and KVM servers in Romania&lt;br /&gt;
* [https://www.shape.host/linux-vps/ Linux VPS] - OpenVZ virtual servers, Instant Linux VPS&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Russia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.internoc24.host Internoc24.HOST] is an international [https://www.www.internoc24.host Offshore VPS ] provider with reliable SSD VPS in Moscow, Russia. Focus ist on high privacy protection so they accept several Cryptocurrencies like Bitcoin, Ethereum and others for anonymous payments.&lt;br /&gt;
* [http://www.ihc.ru/vps.html IHC.RU] - VPS hosting in Moscow, Russia starting at $10/month with good set of precreated templates&lt;br /&gt;
* [http://mchost.ru/services/linux-vps/ McHost.ru] - Linux VDS Hosting from McHost.&lt;br /&gt;
* [http://hosting.agava.ru/vps/ AGAVA] - Linux VPS hosting based on OpenVZ.&lt;br /&gt;
* [http://vdsplanet.ru/ VDSPlanet.ru] - unmanaged VDS/VPS hosting starting at 3.99$ a month. Large variety of OS templates and free ISPmanager Lite control panel. Total automation is our goal.&lt;br /&gt;
* [http://www.demos.ru/service/datacenter/vps.html Demos-Internet] - we offer OpenVZ Virtual Private Server based on Linux.  All VPS come with ISPmanager control panel.&lt;br /&gt;
* [http://www.net.ru/service/net9/ www.net.ru] - OpenVZ virtual private servers.&lt;br /&gt;
* [http://www.eurobyte.ru/ Eurobyte.ru] - Linux VDS Hosting from Eurobyte.&lt;br /&gt;
* [https://undergroundprivate.com/russiaoffshorevps.html  UndergroundPrivate.com] - OpenVZ with highly privacy, offshore , DMCA ignored , high confidence, SolusVM and cPanel, managed and non managed service.&lt;br /&gt;
* [http://www.telekom.ru/service/vps.html Elvis Telekom] - OpenVZ hosting with base and cpanel templates from Elvis Telekom.&lt;br /&gt;
* [http://fastvps.ru/vds/ FastVPS] - OpenVZ hosting, ISPmanager, Hetzner, MayFlower.&lt;br /&gt;
* [https://lepus.su/vps.html Lepus] - OpenVZ hosting, SSD, ISPmanager free, Hetzner.&lt;br /&gt;
* [http://www.hts.ru/vds/ HTS] - OpenVZ hosting, ISPmanager, Linux VPS hosting based on OpenVZ in Moscow.&lt;br /&gt;
* [https://selectel.ru/services/vds/ Selectel] - OpenVZ hosting.&lt;br /&gt;
* [https://galaxydata.ru/root-server/ GalaxyData] - Virtuozzo Containers in Cloud Storage.&lt;br /&gt;
* [http://hosterbox.ru/servers/ Hosterbox.ru] - Managed VPS hosting. Based on OpenVZ + SolusVM + ISPmanager.&lt;br /&gt;
* [https://firstvds.ru FirstVDS.ru] - One of the leading hosting companies providing virtual private servers.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Singapore ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://conceptlane.com/?t=hostingservices#ratesvps ConceptLane Pte Ltd] - OpenVZ VPS on dual octa-core AMD Opterons running Debian Wheezy 7, custom control panel with bandwidth graphs, reboot/reinit and web-based VNC access.&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [http://www.qoxy.com/vps QOXY.com] Affordable and Reliable OpenVZ VPS Hosting in a Singapore Data Center.&lt;br /&gt;
* [http://www.secureax.com/ SecureAX Pte Ltd] - Singapore Premium Internet Solution Provider&lt;br /&gt;
* [http://www.planettel.com.sg PlaNetTel] - Affordable and customised OpenVZ containers across 3 data centers - contact Thomas Festus at +65-66936881. [http://pve.proxmox.com/wiki/User:Apmuthu#Squeeze_based_Templates Sponsors OpenVZ Container Template]s for the Open Source community.&lt;br /&gt;
* [http://www.vpsfast.us/singapore-vps VPSFast] - VPS Provider with good prices in Singapore.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Serbia ==&lt;br /&gt;
* [https://www.skyhosting.rs/en/vps-servers SkyHosting] - Fast Linux OpenVZ VPS SSD Hosting with SolusVM control panel.&lt;br /&gt;
* [https://www.ninet.rs/en/vps-servers NiNet Company] - Linux OpenVZ VPS servers. Well known VPS hosting company from Serbia with their own data center&lt;br /&gt;
* [http://www.suonline.net SuOnline.Net ISP] - Linux OpenVZ VPS servers, Docker enabled !!!&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== South Africa ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.host1plus.com/ Host1Plus] - Local South African servers hosted in Johannesburg. OpenVZ VPS servers starting from $3.00 per month.&lt;br /&gt;
* [http://www.vps.co.za/ VPS.CO.ZA] - South Africa's oldest VPS provider. Local South African servers with SolusVM control panel. OpenVZ, Xen and OnApp Cloud.&lt;br /&gt;
* [http://247hosting.co.za/vpshosting.php 247Hosting] - OpenVZ virtual servers locally in South Africa with SolusVM control panel. cPanel option available!&lt;br /&gt;
* [http://www.SoftDux.co.za/ SoftDux] - OpenVZ virtual servers based America &amp;amp; South Africa. All VPS's come with cPanel or Plesk control panels. XEN VPS's also available.&lt;br /&gt;
* [http://www.clickworks.co.za/ Clickworks] - OpenVZ / Xen VPS servers hosted in RSA. Backed by Solusvm control panel.&lt;br /&gt;
* [http://www.elitehost.co.za/ Elite Host] - OpenVZ virtual servers based in America &amp;amp; South Africa. All VPS's come with cPanel and unlimited bandwidth.&lt;br /&gt;
* [http://www.telasera.com/ Telasera] - OpenVZ VPS servers hosted in South Africa. Supermicro Servers powered by Intel Xeon with 24/7 Support.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Spain ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.somtecnologia.com/ Som Tecnologia] - OpenVZ/6 , containers up to Debian 9&lt;br /&gt;
* [http://www.corpresa.com/servidores-virtuales.html Corpresa Hosting] - Tiene algún proyecto entre manos y un plan de hosting no le hes sufuciente y un servidor dedicado no está dentro de su presupuesto?, una solución de VPS a medida será la que cubrirá todas sus necesidades.&amp;quot;&lt;br /&gt;
* [https://www.datomedia.es Datomedia] - Cloud alta disponibilidad powered by Virtuozzo 6 y Servidores VPS bajo openvz y kvm.&lt;br /&gt;
* [https://www.evidaliahost.com/vps/ EvidaliaHosting] - Servidores VPS totalmente configurados con panel de gestión Plesk 12.5, garantía de devolución de 30 días y posibilidad de discos SSD.&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
* [https://ginernet.com/vps-ssd.php GINERNET] - Servidores VPS alojados en España desde 1.99€/mes.&lt;br /&gt;
* [https://www.hostingplus.com.es Hosting Plus España] provide OpenVZ containers at our own datacenter. Starting from us20/month RAID 10 SSD.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Sweden ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.admax.se/vps/ Admax] - Admax offers enterprise grade virtual servers with great pricing. Custom control panel, API, remote access &amp;amp; more.&lt;br /&gt;
* [https://www.acon.se/vps Acon VPS Server] - VPS Server and Dedicated server provider in Sweden.&lt;br /&gt;
* [https://www.glesys.com/vps.php GleSYS] - VPS Provider with a great control panel and good prices&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides the highest quality SSD VPS in Stockholm, Sweden. Based on completely pure SSD in RAID-10 and delivering extremely high network &amp;amp; hardware performance along with reliability.&lt;br /&gt;
* [https://www.nametyper.com NameTyper] - VPS and Shared hosting provider. Customize your own OpenVZ Container with 1-12 cores running on SSD and ECC RAM. &lt;br /&gt;
* [https://virtualcenter.se VirtualCenter] - The first Cloud provider with SSD VPS in Sweden. Offer enterprise class hardware and network infrastructure&lt;br /&gt;
* [http://www.vpsfast.us/sweden-vps VPSFast] - VPS Provider with good prices in Sweden.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Switzerland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
* [http://www.vpsfast.us/switzerland-vps VPSFast] - VPS Provider with good prices in Switzerland.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Tanzania==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.aptus.co.tz/ Aptus Solutions] - OpenVZ / SolusVM VPS Servers located in Dar es Salaam - 100meg to TIX. CentOS &amp;amp; Ubuntu.&lt;br /&gt;
&lt;br /&gt;
== UK ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.34sp.com/ 34SP.com] - We're a UK based web hosting company, bridging the gap between sophisticated hosting solutions &amp;amp; affordable prices&lt;br /&gt;
* [http://www.AceShells.com/ AceShells] - Fast, stable, high quality UK based virtual private servers from just £5 a month, operating since 2001&lt;br /&gt;
* [http://www.AtlanticServers.com/ Atlantic Servers] - Affordable VPS, stable, high quality VPS, UK based Data Centre&lt;br /&gt;
* [https://awebhosting.uk/ AWebHosting.uk] VPS hosting offered by [https://awebsolutions.uk/ AWEBSOLUTIONS LIMITED] reliable UK hosting provider located in London, UK and Hosted in UK DataCentre.&lt;br /&gt;
* [http://www.BargainVPS.co.uk/ BargainVPS] - UK / US / EU Instant setup VPS - We have some great Linux &amp;amp; Windows Bargain VPS packages on offer for you here all available Fully Managed.&lt;br /&gt;
* [http://www.cheapvps.co.uk/ CheapVPS] - CheapVPS provide cheap, UK based OpenVZ VPS servers. Hosted on high end hardware, in a top UK datacenter backed up with 24/7/365 support. Choice from a wide range of Linux distros. OpenVZ VPS managed with SolusVM.&lt;br /&gt;
* [http://www.chilliserver.com/ Chilliserver] - Affordable plans starting from just £3.99, not oversold. RHEL6 Kernel with VSwap, TUN/TAP/FUSE and ACL support enabled. SolusVM control panel with custom snapshot system and rescue system. Based in a European data Centre with UK based support.&lt;br /&gt;
* [http://www.chvps.com/ CHVPS] - Switzerland Based VPS, Cheap Pricing with solusVM control panel.&lt;br /&gt;
* [http://www.cislondon.co.uk/virtual-private-servers/ Commercial Internet Solutions] - CIS provides premium hosting at competitive rates, focused on Small Businesses within the M25 orbital. Hosting is on Dual Quad core Intel Xeon supermicro servers in Tier 4 datacenters around London.&lt;br /&gt;
* [http://www.datacorporate.co.uk/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [http://domvps.com/ domVPS] - OpenVZ Virtual Servers in the USA, Germany, France &amp;amp; the Netherlands at a low cost.&lt;br /&gt;
* [http://www.DubHosting.co.uk/ DubHosting] - DubHosting started in 2004 has been providing cost effective hosting to clients world wide. Fully managed OpenVZ servers based in Europe &amp;amp; US are one of their many strong points. They can provide you with a dedicated server and install openvz allowing you to sell your own vps servers. Their servers are located at UKGrid in Manchester with 24/7/365 support&lt;br /&gt;
* [http://www.europhase.net/virtual-private-servers/ Europhase UK Limited, UK VPS] - OpenVZ VPS Hosting, Virtual Dedicated Servers, UK VPS hosted at multiple UK datacentres from £4.99&lt;br /&gt;
* [https://farbyte.uk/vps Farbyte VPS] - UK based OpenVZ VPS and shared web hosting services&lt;br /&gt;
* [http://www.fdqwholesale.co.uk FDQ Wholesale] - UK based hosting services&lt;br /&gt;
* [http://www.gemvps.net/ GemVPS.NET] - UK (Manchester) Based Company, OpenVZ Virtual Servers in the UK &amp;amp; France on Fast nodes.&lt;br /&gt;
* [http://www.hadrill.org.uk Hadrill Online] - Fully managed hosting with unlimited bandwidth. Quotes available through contact form.&lt;br /&gt;
* [http://www.infrenion.com./uk_vps_hosting.html Infrenion Networks UK] Cheap, economical and reliable web hosting solutions, VPS based on the openVZ platform. You can host any YouTube Clone scripts with free FFMPEG setup on our vps servers. Also offers with a choice of selecting DataCenter.&lt;br /&gt;
* [https://www.laws-hosting.co.uk/vps-hosting.php Laws Web Hosting] - Laws Web Hosting offers OpenVZ VPS Hosting with packages starting from £5.50/m that will cater for anyone. We have OpenVZ VPS hosting solutions, and come with moderate DDoS protection.&lt;br /&gt;
* [http://www.letstalkdigital.com/index.php?option=com_content&amp;amp;view=article&amp;amp;id=73&amp;amp;Itemid=65 LetsTalkDigital VPS Hosting] - LetsTalkDigital.com offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from $14.99. Virtual Private Server(VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://www.meteorvps.com/ MeteorVPS] - Professional, Non-Oversold amazing VPS plans pretty cheap using SolusVM management, range from 512MB -&amp;gt; 16GB&lt;br /&gt;
* [http://www.minivps.co.uk miniVPS] miniVPS offers VPS hosting solutions with nodes located in UK, utilising openvz/solusvm with future locations of USA and UK. &lt;br /&gt;
* [https://www.first2host.co.uk First2Host Cheap VPS] - Intel Xeon E5-2630v3 OpenVZ VPS Servers. Don't be defined by a pre-made VPS plan. Create your own VPS Plan by assigning the resources that you require. SATA, SSD or NVMe storage 100 MBPS, 250 MBPS, 500 MBPS, 1GBPS speeds and free cPanel licenses.&lt;br /&gt;
* [http://www.phurix.co.uk/ Phurix] - A UK based web solutions company that provides you with reliable hosting at extremely affordable prices, VPS server virtualization using OpenVZ.&lt;br /&gt;
* [http://www.qualityservers.co.uk Quality Servers] - Affordable OpenVZ virtual servers based in the UK and USA. Choice of control panels and management options.&lt;br /&gt;
* [http://www.rackburst.net/ Rackburst] - UK SSD VPS Hosting with fast UK-based Live Support available from £1.49 per month.&lt;br /&gt;
* [http://www.rshosting.co.uk/vps.html RSHosting UK] - Offering the most secure, reliable, stable and fast UK VPS Web Hosting based on OpenVZ architecture. Our Virtual Dedicated Servers are physically hosted on powerfull Quad Core servers located in multiple UK datacentres.&lt;br /&gt;
* [http://www.sharkserve.rs SharkServers] - Low Cost OpenVZ virtual servers in the UK. Choice of control panels and management options. Own Datacentre.&lt;br /&gt;
* [https://www.ukhost4u.com/ UKHost4u] - A leading provider of VPS solutions for over 19 years!&lt;br /&gt;
* [http://www.vpsfast.us/united-kingdom-vps VPSFast] - VPS Provider with good prices in UK.&lt;br /&gt;
* [http://www.vpsmachine.co.uk/ vpsMachine] Quality openvz hosting platform with a large choice of customer OS templates.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [https://www.webhostuk.co.uk/vps-hosting.html WebHostUK LTD] - Offers Cheap yet Best UK VPS Web Hosting working on OpenVZ Platform.We offers fully Managed UK VPS with true 24/7/365 days support.All our Servers are located in UK London DC.&lt;br /&gt;
* [http://www.webhostinguk.com/vps/vps-hosting.html Web Hosting UK] - Fully managed OpenVZ VPS Hosting offered on fast and reliable and affordable servers in UK &amp;amp; European datacenter with 24x7x365 days lightning fast support.&lt;br /&gt;
* [http://www.weycrest.co.uk/vps-hosting.php Weycrest VPS] - Low Cost, Stable OpenVZ and Parallels' Virtuozzo Virtual Private Server solutions. London UK Hosted at Coreix with a choice of operating systems, and root and control panel options.&lt;br /&gt;
* [http://www.xilo.net/virtual_private_servers-vps/ XILO] - UK-based hosting with UK-based support. VPS services offered with a choice of cPanel, Webmin and other useful applications, VoIP, SIP, VPN to name a few.&lt;br /&gt;
* [http://www.zxvps.co.uk/ ZxVPS VPS Hosting] - Quality, non-oversold VPS based on the openVZ platform, using SolusVM management panel, VPS from 128mb - 2gb, cpanel, direct admin, kloxo, etc.&lt;br /&gt;
&lt;br /&gt;
== Ukraine ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://ekvia.com/ Ekvia] - VDS/VPS based on OpenVZ. Free trial 14 days. Domain registration for VDS/VPS.&lt;br /&gt;
* [http://www.gelihost.com/ Geliar Hosting Solutions] - Fast virtual dedicated servers based on OpenVZ. Geliar Hosting Solutions offering many control panels and other useful services.&lt;br /&gt;
* [http://www.hostpro.ua/ Hostpro.ua] - Full managed OpenVZ servers.&lt;br /&gt;
* [http://www.vpsfast.us/ukraine-vps VPSFast] - VPS Provider with good prices in Ukraine.&lt;br /&gt;
&lt;br /&gt;
== USA ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.a2hosting.com A2 Hosting] is your high-performance [http://a2hosting.com/openvz-vps-hosting OpenVZ VPS Hosting] provider. Design your perfect [http://a2hosting.com/vps-hosting VPS Hosting] account today! Featuring SwiftServers and SSDs with page load speeds up to 300% faster compared to standard drives.&lt;br /&gt;
* [http://www.afterburst.com Afterburst] (Previously FanaticalVPS): affordable unmetered, unmanaged VPS servers in NY.&lt;br /&gt;
* [https://www.asurahosting.com/ AsuraHosting] offers powerful, reliable, and simple OpenVZ VPS to clients. AsuraHosting has a dedicated support team, and quality hosting; Pricing starts at just $5/month!&lt;br /&gt;
* [http://beyondhosting.net BeyondHosting.net] High Performance OpenVZ Virtual Private Servers (VPS)  Tier 1 US Datacenter.&lt;br /&gt;
* [http://buyvm.net BuyVM.net] DDoS Protection, three datacenter locations, Stallion control panel. Affordable quality VPS hosting since 2010!&lt;br /&gt;
* [https://www.binarycpu.com Binary Computer Solutions] has provided OpenVZ based Virtual Private Server hosting for over 5 years.  Network outages are a thing of the past, and oversold services are never heard of here.  Built on solid technology, with infrastructure to match - Binary Computer Solutions will give you hosting you need, without the cost others ask for.  Starting at $30.00/mo.&lt;br /&gt;
* [http://www.bodhost.com/ Bodhost.com] Fast, Reliable and secure web hosting service with 24*7 free customer service.&lt;br /&gt;
* [http://www.buildyourvps.com/ BuildYourVPS.com] mix ‘n’ match your VPS; choose only the bandwidth, RAM, disk capacity, type of IP connection, level server redundancy, and the support/monitoring you want. [http://www.buildyourvps.com/ BuildYourVPS] is the 1st to offer you a highly-customized VPS solution, without making you pay for unused extra features.&lt;br /&gt;
* [https://www.budgetvm.com/openvz-linux-vps.php BudgetVM.com] Each server includes our industry-leading SLA, DDoS protection, 200Gbps networks and 7 * 24-hour customer support.&lt;br /&gt;
* [http://www.byethost.com Byethost.com] offers OpenVZ based VPS Hosting as its main VPS solution, with the hypervm panel. Centos, Debian, Fedora, OpenSuse and Ubuntu Containers are available.&lt;br /&gt;
* [http://cheaperasp.net CheaperASP.Net] provides Quality web hosting on the OpenVZ platform. You also help you get best options at [http://cheaperasp.net/godaddy-1-hosting-free-domain-promo/ affordable] cost.&lt;br /&gt;
* [http://www.chhost.net/vps.htm CH Hosting VPS Hosting] CH Hosting or chhost.net offers OpenVZ based VPS Hosting. 24/7 Support. Upgrade/Downgrade your plan as needed on-the-fly without the risk of downtime. Since 2006. Non-Oversell&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in USA from 1.88EUR/month.&lt;br /&gt;
* [http://www.cloudshards.com Cloud Shards] High Performance, reliable, stable and affordable OpenVZ Virtual Private Servers (VPS) in data centers across the USA.&lt;br /&gt;
* [https://cloudgearhosting.com CloudGear Hosting] - offers OpenVZ hosting in 4 locations across the USA. Including free DDoS Protection and free SSL with cPanel.&lt;br /&gt;
* [http://www.datacorporate.com/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [https://www.delimiter.com/storage-vps/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [https://www.cheapdomainnamesdot.com Domain Host SSL] provides Reliable web hosting with OpenVZ platform Since 2003, Located New York city, Atlanta, Los Angeles. &lt;br /&gt;
* [http://www.DubHosting.com/ DubHosting] - DubHosting started in 2004 has been providing cost effective hosting to clients world wide. Fully managed OpenVZ servers based in Europe &amp;amp; US are one of their many strong points. They can provide you with a dedicated server and install openvz allowing you to sell your own vps servers.&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
* [http://www.ethernetservers.com/ Ethernet Servers] A leading provider of OpenVZ Virtual Servers in Los Angeles, Miami and Buffalo with SolusVM.&lt;br /&gt;
* [http://www.evolucix.com/ Evolucix.com] Evolucix offers state of the art, professional, and reliable OpenVZ VPS solutions on top-notch hardware while providing quality support.&lt;br /&gt;
* [http://www.evolvedservers.com Evolvedservers.com] Openvz based vps servers. Hosted in Michigan, USA. 24/7 Support. Hosted in tier-3 and tier-4 datacenter's with multiple redundancies.&lt;br /&gt;
* [http://fastwebhost.com/vps-hosting.html Fastwebhost]: affordable cloud VPS servers using OpenVZ. &lt;br /&gt;
* [http://www.fliphost.net Fliphost.net]: Powerful, affordable instant setup VPS systems. Servers based in Phoenix Az with another location coming soon.&lt;br /&gt;
* [http://www.frontrangehosting.com Front Range Hosting]: SSD Cached KVM &amp;amp; OpenVZ VPS Hosting Prices Start at 2.00/mo, located in Colorado Springs, Colorado.&lt;br /&gt;
* [http://glesys.se GleSYS] is a hosting company specialized in serverhosting. Also offering VPS hosting mainly based on OpenVZ. GleSYS has provided access to server and Cisco hardware for developers from OpenVZ to find problem with VLAN implementation.&lt;br /&gt;
* [http://goodealhosting.com/ GOODEALHOSTING.com] Quality Hosting Solutions! Provides affordable unmanaged/managed VPS based on OpenVZ! start from $10.00, real 24/7 support.&lt;br /&gt;
* [http://gothost.net GotHost.net] Providing OpenVZ based VPS Hosting with SolusVM. All nodes are Quad Core Xeon with RAID-10 for speed and redundancy. Budget plans starting at $7.99.&lt;br /&gt;
* [http://www.greengeeks.com/ GreenGeeks Hosting] VPS Hosting. Dual Intel Xeon 64-Bit CPU's, DDR3 RAM, RAID-10 SSD Storage Arrays. 24/7 Support. cPanel/WHM + more!&lt;br /&gt;
* [http://hostarmor.com HostArmor™] - is best known for low-cost and reliable shared hosting and dedicated servers. Recently the company expanded to offer OpenVZ virtual server plans at 8 worldwide locations, five in the U.S., one in Germany, one in France, and one in the Netherlands. VPS plans start at $13.99/month.&lt;br /&gt;
* [http://www.host4geeks.com Host4Geeks] - Host4Geeks is a premium Fully Managed VPS provider with datacenters across 2 locations in US and in UK. All servers offer a free cPanel license.&lt;br /&gt;
* [http://www.host1plus.com Host1Plus] - OpenVZ based virtual servers in Chicago and Los Angeles. VPS plans start at $2.00 per month.&lt;br /&gt;
* [http://www.hostavps.com HostAVPS] - Providing Fully Managed VPS's on both the West &amp;amp; East Coast.&lt;br /&gt;
* [https://www.hostcapitol.com Host Capitol] offers fast and reliable web hosting services, including OpenVZ VPS Hosting, to clients ranging from small businesses to corporations. Located in Piscataway, New Jersey.&lt;br /&gt;
* [http://www.hostcolor.com Host Color] - OpenVZ based virtual servers hosted in a Tier 4 class data center based out of South Bend, Indiana. Juniper managed, fully-redundant network with uplinks to Level 3, Cogent and Internap.&lt;br /&gt;
* [https://www.hostgalaxy.com HostGalaxy] - OpenVZ based virtual servers. The fastest hosting in the Galaxy!&lt;br /&gt;
* [http://www.hostigation.com Hostigation] - High resource unmanage VPS hosting solutions.&lt;br /&gt;
* [http://www.hostingrails.com Hosting Rails] offers Rails-targeted OpenVZ VPS Hosting and updated Rails-ready OS images.&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [http://www.hostmist.com Host Mist] features budget OpenVZ VPS hosting from four major cities across the US.&lt;br /&gt;
* [http://www.hostrush.com HostRush] Self managed, ssd vps for business and non business. &lt;br /&gt;
* [http://www.dailyhosting.net hostoople] We offer OpenVZ VPS hosting from Dallas Texas, Starting at $29.95/month &lt;br /&gt;
* [https://hostus.us HostUS] provides unmanaged and managed OpenVZ VPS in Atlanta, Dallas and Los Angeles with custom control panel. A large variety of Linux distros are available. Enjoy 15% off with coupon VPS15OFF.&lt;br /&gt;
* [https://www.hostwinds.com Hostwinds] Affordable managed/unmanaged VPS Solutions.&lt;br /&gt;
* [http://hostsia.com Hostsia] With HOSTSIA Web services, you can get an OpenVZ VPS for only $15.00/mo. Each OpenVZ VPS includes multiple free-of-charge bonuses and offers a 99.9% uptime guarantee. You can also use our charge-free Hepsia CP, which is available with each OS – it permits you to host an unmetered number of domains and comprises heaps of handy tools, which will help you better manage your site and your VPS web hosting account.&lt;br /&gt;
* [http://www.infrenion.com./vps_hosting.html Infrenion Networks] Cheap, reliable and secure VPS hosting solutions, based on the openVZ platform. You can host any YouTube Clone scripts with enhanced support quality round the clock.&lt;br /&gt;
* [http://iniz.com/ INIZ VPS Hosting] INIZ provides affordable VPS Hosting in Los Angeles &amp;amp; New York with high resources at low prices.&lt;br /&gt;
* [https://www.interserver.net/ InterServer Web Hosting] Fast &amp;amp; Reliable VPS - 24x7 Support. 99.9% Up-time, Hosting Since 1999!.&lt;br /&gt;
* [http://www.joinvps.com JoinVPS.com] ISPmanager OpenVZ based VPS hosting. 24/7 Technical Support. Free ISPmanager control panel.&lt;br /&gt;
* [http://www.lovevps.com LoveVPS] Budget VPS provider starting at $5.99/month located in the US with Xeon nodes.&lt;br /&gt;
* [http://www.letstalkdigital.com/index.php?option=com_content&amp;amp;view=article&amp;amp;id=73&amp;amp;Itemid=65 LetsTalkDigital VPS Hosting] LetsTalkDigital.com offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from $14.99 Virtual Private Server(VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://lylix.net LYLIX] offers affordable VPS hosting with a choice of eight different Linux distributions, dedicated VPS hosting, and specializes in Asterisk/VOIP based hosting including Trixbox, AsteriskNow, Elastix, and PBX-in-a-Flash.  Popular choice for unmanaged IP-PBX services; entire infrastructure built on a High-availability (HA) network across three regional NOCs.&lt;br /&gt;
* [http://www.micfo.com Micfo.com] offers VPS hosting services for both Linux VPS hosting and Window VPS hosting on affordable price combined with world-class 24x7x365 support.&lt;br /&gt;
* [http://www.neostreams.info/neoshop/cart.php?gid=9 nEo Stream Services] Offer's Top Quality OpenVZ Servers, Starting at $18.95 per month! SolusVM Control panel , 7 day Money Back Guarantee , 24x7 Professional Support.&lt;br /&gt;
* [http://pogiweb.com/vps/ PogiWeb LLC] Instant and free setup. Includes SolusVM control panel and free level 1 support during first month.&lt;br /&gt;
* [http://www.theserverexperts.com TheServerExperts.com] TheServerExperts VPS line is the ideal solution for clients who require the control of a dedicated server matched with the affordability and simplicity of a traditional shared hosting account.&lt;br /&gt;
* [http://thenynoc.com New York NOC] affordable Linux VPS hosting out of New York and Chicago. Plans as low as $5 a month and are backed by a redundant infrastructure and 24/7 support.&lt;br /&gt;
* [http://railsplayground.com RailsPlayground.com] Ruby on Rails VPS with ready to go Rails images with the LxAdmin control panel&lt;br /&gt;
* [http://www.raidlogic.net RaidLogic.NET] RaidLogic.NET offers OpenVZ based Linux VPS out of multiple facilities across the United States, including Miami, Los Angeles, and Chicago. Starting as low as $3.95/month.&lt;br /&gt;
* [http://www.ramhost.us RAM Host] RAM Host offers OpenVZ based Linux VPS out of multiple facilities across the United States, including Atlanta, Kansas City, and Phoenix.&lt;br /&gt;
* [http://www.reconhosting.com Recon Hosting] Recon Hosting offers affordable OpenVZ VPS solutions where you get Quality Hosting at a Fraction of the price. Instant setup with the latest Operating System templates including cPanel.&lt;br /&gt;
* [http://www.rokabear.com Rokabear] Rokabear offers OpenVZ Linux VPS, Dedicated Server, and Colocation. All Hardware setup in High Availability mode including raided drives and redudnant power and network connections. With multiple upstream providers, Rokabear's connectivity is fast and reliable! Rokabear supports LAMP, Openvpn, and Asterisk configurations. VPSes start at $7.99!&lt;br /&gt;
* [https://www.rosehosting.com RoseHosting] offers OpenVZ Linux virtual servers equipped with Enterprise Grade SSD drives. All hosting plans are fully-managed with FREE 24/7 support, FREE website migration, FREE weekly backups and FREE server monitoring included.&lt;br /&gt;
* [http://www.rshosting.com/vps.html RSHosting.com] RSHosting offers the most secure, reliable and stable VPS - Virtual Private Servers based on OpenVZ architecture, powered by the most professional and qualified 24/7 lightening fast support.&lt;br /&gt;
* [http://www.servercomplete.com Server Complete, LLC] Server Complete offers OpenVZ based Linux VPS out of multiple facilities across the United States, including Atlanta, Dallas, and Chicago.&lt;br /&gt;
* [http://www.servergrove.com ServerGrove] uses OpenVZ as the main virtualization platform for its state of the art VPS hosting services.&lt;br /&gt;
* [http://serverswarm.com ServerSwarm] provides stable, affordable, high performance OpenVZ virtual private servers.&lt;br /&gt;
* [http://Sharktech.net Sharktech] provides custom OpenVZ solutions DDOS-protected up to 100Gbps.&lt;br /&gt;
* [http://www.silverrack.com/ SilverRack VPS Hosting] - SilverRack provides affordable VPS hosting using the OpenVZ platform.&lt;br /&gt;
* [http://www.soficol.com/ Soficol] Offers Enterprise OpenVZ based VPS, hosted on a clustered infrastructure and redundant network. Easy to use user management and instant setup.&lt;br /&gt;
* [http://www.spectrohost.com/ Spectro Host] - Offers performance VPS Servers running openvz. Always the most resources and never over committing OpenVZ nodes.&lt;br /&gt;
* [http://www.budgetvds.com/ BudgetVDS] - Offers VPS Servers running openvz we've been in business for 2 years now using openvz platform.&lt;br /&gt;
* [http://www.syera.net/ Syera Networks] Unmetered VPS From $18.88/M, 24/7 Support, OpenVZ/HyperVM, Instant Setup!, Free 1Gbps Upgrade with Coupon: syera1G&lt;br /&gt;
* [http://www.synapseglobal.com/voip_vps.html SynapseGlobal.com] Elastix, Trixbox, PBX in a Flash and Asterisk VPS - OpenVZ based Asterisk VOIP servers with 14 Tier 1 premium bandwidth providers.&lt;br /&gt;
* [http://www.tektonic.net TekTonic] provides VPS hosting services using both Virtuozzo and OpenVZ technology.&lt;br /&gt;
* [http://www.tigerservers.com/ TigerServers] - Provides affordable managed VPS based on OpenVZ. Servers located in Chicago, Illinois&lt;br /&gt;
* [http://www.tocici.com/ TOCICI VPS Hosting Services] Since 1995 TOCICI has offered web hosting services, with 24/7 support commitments and a strong non-oversell policy. Our purpose-built hosting infrastructure has serviced many organizations for over a decade. Offering OpenVZ VPS, data center colocation, and equipment leasing options, visit our website for prices and more details.&lt;br /&gt;
* [http://www.ultravps.com UltraVPS] UltraVPS offers managed and unmanaged OpenVZ-based VPS hosting utilizing dual CPU hardware nodes with redundant, high-performance RAID-10 storage.  UltraVPS offers VPS servers with many popular control panel options and turn-key applications.&lt;br /&gt;
* [http://www.vpsfx.com VPSFX] VPSFX.com offers OpenVZ VPS, data center colocation, and dedicated servers.&lt;br /&gt;
* [http://www.Webhost.US.Com/linuxvps.html US Web Hosting]  Webhost.US.Com offers powerful GUI based VPS management system with full OpenVZ, Xen Paravirtualization and Xen HVM support.All our Virtual Private servers are fully Managed with 99.9% uptime and 24/7 top notch support.&lt;br /&gt;
* [http://unixservice.com Unixservice/unxsVZ] Low cost OpenVZ ONLY hosting we specialize in Mail, DNS and RADIUS multiple container hosting. At the world famous Market St. San Jose, CA Silicon Valley datacenter. Ping times from your containers to local yahoo and google sites guaranteed single digit ms times. Your containers are backed up at 4 local and 2 remote locations. Contact supportgrp at unixservice dot com.&lt;br /&gt;
* [http://www.vogenic.xyz Vogenic: Cloud Services] If you are searching for an upgrade to the shared hosting service, then you should consider our OpenVZ or KVM VPS hosting services.&lt;br /&gt;
* [http://vpslink.com VPSLink.com] provides virtual private server hosting on the OpenVZ platform.&lt;br /&gt;
* [http://www.vpsspeed.com/ VPSSpeed] - VPSSpeed provides unmanaged OpenVZ based VPS hosting with over 50 OS Templates, real 24/7/365 support and fast US servers. No overselling.&lt;br /&gt;
* [http://vpsnoc.com VPSNOC] offers unmanaged vps hosting based in the USA utilizing OpenVZ hypervisor behind an in-house VPS control panel.&lt;br /&gt;
* [https://www.waveride.at/ Waveride] Waveride, an EDIS company, offers budget full gigabit OpenVZ + solusVM VPS in Austria, USA and the Netherlands&lt;br /&gt;
* [http://www.webappcabaret.com WebAppCabaret] provides VPS solutions for hosting applications. We offer OpenVZ with cPanel or Plesk for web site management; and NGASI Universal App Manager for deploying and managing JAVA and RAILS applications.&lt;br /&gt;
* [http://www.wirenine.com/vps-hosting/ WireNine.com VPS Hosting] Low cost fully managed and unmanaged OpenVZ based VPS Hosting with SAS 15k enterprise drives in high-performance RAID-10 storage.&lt;br /&gt;
* [http://www.zoidial.com/ Zoidial Hosting and VPS] - offers VPS and Virtual Dedicated Server solutions utilizing OpenVZ.  In business since 1998, Zoidial Incorporated is a small hosting provider focused on being security conscious, proactive, and offering a positive client experience.&lt;br /&gt;
* [http://zensix.com ZenSix Hosting] Cheap OpenVZ based VPS accounts with the SolusVM control panel.&lt;br /&gt;
* [http://zigothosting.com Zigot Hosting] Affordable and Reliable OpenVZ based VPS's within the SolusVM control panel.&lt;br /&gt;
* [http://www.vpsfast.us/usa-vps VPSFast] - VPS Provider with good prices in USA (Los Angeles, New Jersey, New York, Seattle, Washington, Dallas, Chicago, Atlanta, Ashburn, Miami, Piscataway).&lt;br /&gt;
* [http://www.xarixlite.com Xarix Lite] - offers OpenVZ hosting in Charlotte, SC. OpenVZ plans starting at $2.50/mo&lt;br /&gt;
* [https://www.yourlasthost.com YourLastHost] is your high-performance [https://www.yourlasthost.com/openvz-vps.php OpenVZ VPS Hosting] Provider. Get your perfect [https://www.yourlasthost.com/openvz-vps.php VPS Hosting] account today! Available in Los Angeles, Dallas, Jacksonville, USA and France, Europe.&lt;br /&gt;
&lt;br /&gt;
== Vietnam ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://appvz.com AppVZ.com] (www.appvz.com) is a leading web solution provider offering domain, hosting, reseller and VPS hosting packages from 2009. Just recently, the company has offered discount packages where customers can avail managed and un-managed VPS for only $9.5 per month.&lt;br /&gt;
&lt;br /&gt;
= Hosting providers comparison =&lt;br /&gt;
&lt;br /&gt;
It is hard to compare all virtual private server offers provided by different hosting providers.&lt;br /&gt;
Sites below can help you with it.&lt;br /&gt;
&lt;br /&gt;
* [https://www.cheapvpsservers.co.uk/ Cheap VPS Servers]&lt;br /&gt;
* [https://www.hostingmyths.com/ Hosting Myths]&lt;br /&gt;
* [https://cheapwebhosting.review/ VPS servers comparison]&lt;br /&gt;
* [https://reviewsquirrel.com/web-hosting-reviews/ Review Squirrel]&lt;br /&gt;
* [http://lowendstock.com/ Lowendstock]&lt;br /&gt;
* [https://www.websitehostingrating.com/ Best Web Hosting Services]&lt;br /&gt;
* [https://foxmaya.com/hosting/best-wordpress-hosting-india/ Best Wordpress Hosting Services]&lt;br /&gt;
* [http://serverbear.com/compare?Sort=RAM&amp;amp;Order=asc&amp;amp;Server+Type=VPS&amp;amp;Monthly+Cost=-&amp;amp;HDD=-&amp;amp;RAM=-&amp;amp;Virtualization=OpenVZ Serverbear]&lt;br /&gt;
* [https://www.comparethehosts.com/vps-web-hosting.htm VPS Web Hosting Reviews]&lt;br /&gt;
* [https://thishosting.rocks/best-cheap-managed-vps/ ThisHosting.Rocks - Managed VPS Providers Comparison]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
http://vpscomp.com&lt;br /&gt;
http://reviewsignal.com/webhosting/compare/&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= See also =&lt;br /&gt;
&lt;br /&gt;
* [[Partners]]&lt;br /&gt;
* [[Download mirrors]]&lt;br /&gt;
* [[VPS vs Dedicated]]&lt;/div&gt;</summary>
		<author><name>Vvs</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.openvz.org/index.php?title=Hosting_providers&amp;diff=23359</id>
		<title>Hosting providers</title>
		<link rel="alternate" type="text/html" href="https://wiki.openvz.org/index.php?title=Hosting_providers&amp;diff=23359"/>
		<updated>2020-09-25T13:18:50Z</updated>

		<summary type="html">&lt;p&gt;Vvs: /* UK */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''OpenVZ is free and open implementation of Virtuozzo containers for Linux.&lt;br /&gt;
Don't forget to keep [[testimonials|testimonial]] and [[donate]] to OpenVZ.'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
OpenVZ makes for a great hosting platform for VPS hosting. The providers below offer VPS services using OpenVZ.&lt;br /&gt;
&lt;br /&gt;
[[File:UsageLocation.svg]]&lt;br /&gt;
&lt;br /&gt;
= OpenVZ hosting providers =&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- @@@@@@@@@@@@@@@@@@@@@@@&lt;br /&gt;
&lt;br /&gt;
IF YOU EDIT THIS PAGE,  PLEASE OBEY TO THE FOLLOWING RULES:&lt;br /&gt;
&lt;br /&gt;
1. Keep your record on ONE line&lt;br /&gt;
2. Keep the list of providers alphabetically sorted, DO NOT insert your record on top.&lt;br /&gt;
3. Keep the list of countries alphabetically sorted as well.&lt;br /&gt;
&lt;br /&gt;
     @@@@@@@@@@@@@@@@@@@@@@@@ --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Andorra ==&lt;br /&gt;
* [https://www.actiu.net/pro/ Actiu informatica] amb servidors dins i fora del principat.&lt;br /&gt;
&lt;br /&gt;
== Argentina ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.fulltech.com.ar/ Full Tech Solutions] Specializes in the virtualization of OpenVZ &amp;amp; Virtuozzo containers, installed in the Full Tech Solutions Data Center located in Villa Elisa, Entre Rios Argentina.  It also offers services hosted in the United States, Netherlands and Germany&lt;br /&gt;
* [http://www.g2khosting.com/ G2K Hosting] offer OpenVZ containers with high level hardware technology from 25 US with Control Panel, various Linux Dists and full support.&lt;br /&gt;
* [https://hostingplus.com.ar/ HostingPlus Argentina] provide OpenVZ containers at our own datacenter in South America with triple internet provider. Starting from  us20/month&lt;br /&gt;
* [https://ibumu.com/ Ibumu] Best containers for wordpress starting from $5.5.&lt;br /&gt;
* [http://www.ihserver.net/ IHServer] Specialized virtualization on OpenVZ containers at Gigared datacenter. We have in Argentina one of the better fiber connection to the US, but also provides services from LSTN in Texas.&lt;br /&gt;
* [https://www.infranetworking.com.ar/ Infranetworking] All our Cloud VPS container solutions for Argentine customers are powered by the all mighty OpenVZ virtualization software.&lt;br /&gt;
* [https://www.neolo.com/ Neolo] provide OpenVZ containers at our own datacenter in South America with double internet provider. Choose your Linux OS and apps. Full support.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [http://www.wiredhosting.com.ar/ WiredHosting] offer XEN and OpenVZ containers with SSD drives, cloudflare security and weekly backups to protect your information. Phone and Helpdesk support. &lt;br /&gt;
&lt;br /&gt;
== Australia == &lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.auhost4u.com/ AUHost4u] - VPS Solutions provided from our D.C. in Sydney.&lt;br /&gt;
* [https://www.conetix.com.au/ Conetix Hosting] Specialising in business grade, fully managed Virtuozzo containers with Virtuzzo Cloud Storage. 100% Australian owned and operated. Brisbane based DC with Enterprise Dell servers.&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides self-managed OpenVZ based SSD VPS located at Equinix SY3 in Sydney, one of the best and well-connected datacenters in the region.&lt;br /&gt;
* [http://www.vpsfast.us/australia-cloud-server VPSFast] - VPS Provider with good prices in Australia.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Austria ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
* [https://kapper.net/ kapper.net] kapper.net offers OpenVZ and Virtuozzo (and other HyperVisors) based server-solutions with kind support and 24x7 maintenance.&lt;br /&gt;
* [https://mdhost.eu/vserver.php MDHost.eu] New Hosting Provider with nice Prices and many Server locations. Austria, Germany, France and more.&lt;br /&gt;
* [https://www.snb.at/ SNB] offers OpenVZ containers and support's also existing vm's in customers environment&lt;br /&gt;
* [https://www.waveride.at/ Waveride] Waveride, an EDIS company, offers budget full gigabit OpenVZ + solusVM VPS in Austria, USA and the Netherlands&lt;br /&gt;
* [http://www.vpsfast.us/austria-cloud-server VPSFast] - VPS Provider with good prices in Austria.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Brazil ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.datacorporate.com.br/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [http://www.globalmedia.com.br/ GlobalMedia] We offers OpenVZ containers hosted on a very fast network with fast setup. Ubuntu, Debian, CentOS.&lt;br /&gt;
* [http://www.host1plus.com.br/ Host1Plus] Servers hosted in São Paulo. We offering reliable and secure OpenVZ VPS Servers with 99.99% up-time, starting from $5.00 per month.&lt;br /&gt;
* [http://www.ipdeck.net/ IPDECK] VPS Linux server from R$15,00/month! Fully customizable according to your needs.&lt;br /&gt;
* [https://www.quantivehost.com.br/ QuantiveHost] VPS Linux with 99.99% uptime. Prices starting from R$ 29,35.&lt;br /&gt;
* [https://www.elevahost.com.br/ Eleva host] Server hosted in Brazil. The best support.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [https://www.ferenz.com.br/ Ferenz Networks] VPS Linux with best support. Prices starting from R$ 29,90.&lt;br /&gt;
&lt;br /&gt;
== Bulgaria ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.cloudhostinghub.com Offshore VPS Hsoting] CloudHostingHub.com is an [https://www.cloudhostinghub.com Cloud Offshore VPS Hosting] located in Buglaria. They provide both OpenVZ and KVM virtualization. CloudHostingHub.com is known for the high privacy protection , performance and stability.&lt;br /&gt;
* [https://www.cyberhour.com CyberHour.com] CyberHour.com is an [https://www.cyberhour.com offshore VPS hosting] provider located in Europe. The provide blazing fast servers and premium Bandwidth of 200Mbps. With high privacy protection.&lt;br /&gt;
* [https://www.linuxssdvps.com Bulgaria VPS] Linux SSD VPS is an [https://www.linuxssdvps.com offshore VPS hosting] provider located in Sofia, Bulgaria. Privacy is very respected and anonymous registrations are allowed, as well as payments via Bitcoin / PayPal.&lt;br /&gt;
* [http://www.webuzo.net Bulgaria VPS] Webuzo Network is an offshore SSD VPS hosting provider located in Bulgaria. Privacy is very respected and anonymous registrations are allowed, as well as payments via Bitcoin / PayPal.&lt;br /&gt;
* [https://vpsbg.eu/en Bulgaria VPS] VPSBG.eu is an offshore SSD VPS hosting provider located in Sofia, Bulgaria. Privacy is very respected and anonymous registrations are allowed, as well as payments via Bitcoin.&lt;br /&gt;
* [http://www.bul.net/ Bul.net] Provides OpenVZ based VPS, perfect user/VPS management via [http://ispsystem.com VDSManager]. Instant creation after online payment. Debian/Ubuntu/CentOS with ISPManager Control panel. Optimal price policy.&lt;br /&gt;
* [http://www.cointech.eu/vps-hosting/ CoInTech] provides OpenVZ based VPS containers, free webmin managment. Containers can be CentOS, Slackware, Ubuntu, custom or our special [http://www.mandriva.com Mandriva Linux] container with own [http://mandriva.cointech.net repository].&lt;br /&gt;
* [http://www.rax.bg/ RAX.bg] Offers OpenVZ based VPS, hosted on a clustered infrastructure and redundant network. Easy to use user management, Instant setup, CentOS (OS).&lt;br /&gt;
* [http://www.jump.bg/ Jump.bg] Provides OpenVZ VPS servers hosted on a redundant network which provides a very easy to manage platform for all clients which gain instant access to their OS ( Ubuntu, CentOS , Debian etc ... )&lt;br /&gt;
* [https://www.fitvps.com/ FitVPS.com] Offers affordable and reliable OpenVZ based VPS in Varna, Bulgaria. Own data center, own multihomed network, with SLA. Instant automatic setup, SolusVM control panel.&lt;br /&gt;
* [http://www.qhoster.com/ QHoster.com] Instant activation OpenVZ VPS in UK, USA, Germany, France and Switzerland. Both 32/64 bit OpenVZ OS VPS templates : CentOS 5/6, Debian 6/7, Ubuntu 12/13.&lt;br /&gt;
* [https://www.verdina.net Verdina.NET] Verdina.net offers dedicated hosting services, provided by powerful dell hardware. Servers are located in Telepoint Datacenter, a Tier 3 DC located in Sofia, Bulgaria.&lt;br /&gt;
* [https://www.vps.ag/ VPS.AG] Affordable and reliable OpenVZ VPS based in Sofia, Bulgaria. Instant setup and 24/7 support.&lt;br /&gt;
* [http://www.vpsfast.us/bulgaria-vps VPSFast] - VPS Provider with good prices in Bulgaria.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Canada ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://4goodhosting.com/linux-vps-hosting 4GooodHosting] - Canadian OpenVZ VPS Servers, Starting from  $18.99/month SSD,. Canada VPS hosting in three different Canadian Data Centers with nightly backups.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [https://whc.ca/canadian-cloud-servers Web Hosting Canada Cloud Servers] - Powerful Cloud servers powered by OpenVZ and located in Canadian datacenters, with fast RAID-10 storage, fully managed with cPanel.&lt;br /&gt;
* [http://compevo.com compevo Clustered VPS Server Hosting Provider] - We offer clustered VPS Servers to avoid downtime and dataloss. Our network and service is second to none and is used by businesses around the world.&lt;br /&gt;
* [http://www.datacorporate.ca/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [https://www.delimiter.com/storage-vps/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [https://www.miditech.com/ MidiTech Hosting Canada] VPS hosting offered by MidiTech Canada are powered by VMware, . Fully Managed VPS with control panels&lt;br /&gt;
* [http://www.gotekky.com Gotekky Cloud VPS Hosting] High quality Cloud VPS packages powered by our own infrastructure and network in Toronto. Scalable from our $5/mo plan all the way to your own dedicated cloud server. Based on OpenVZ and our own proprietary panel.&lt;br /&gt;
* [https://gigebox.com GIGEBOX.COM] GIGEBOX are expert providers of secure business hosting services, we operate high-performance professional servers, specially designed for businesses, powered by the Intel(R) Xeon(R) Hexa-Core CPU Processors and 128 GB DDR3 minimum RAM. Enjoy high availability, performance and security for multiple uses.&lt;br /&gt;
* [http://www.letstalkdigital.com/index.php?option=com_content&amp;amp;view=article&amp;amp;id=73&amp;amp;Itemid=65 LetsTalkDigital VPS Hosting] LetsTalkDigital.com offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from $14.99. Virtual Private Server (VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://secure.media-hosts.com/link.php?id=7 Media-Hosts.com] Provides Quality and Scalable OpenVZ based Virtual Private Servers. 100% network uptime guaranteed. Located in Montreal Quebec with 5 Tier1 upstream providers.&lt;br /&gt;
* [http://www.openvz.ca OpenVZ.ca] Canadian Budget VPS Servers on OpenVZ Platform. &lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [http://protoserver.com ProtoServer] Advanced VPS Hosting from $4.95/month. Many pre-installed VPS Templates available (CMS, E-commerce, Web development, Online community, Media streaming, etc.) No bundles or service plans - mix VPS resources as needed and change VPS configuration anytime. Also offering DNS Hosting, E-mail hosting, Domains Registration.&lt;br /&gt;
* [http://www.vistapages.com/vps Vistapages VPS] - IBM &amp;amp; Dell Hardware. MCI/Verizon Backbone. Distros: Centos, Fedora, Debian &amp;amp; more. Full management available. Located in Toronto.&lt;br /&gt;
* [http://vpsville.ca/ VPSVille] - Good network. Good CPU. Good choice of distros: Centos, Fedora, Debian, Ubuntu, Slackware, Gentoo, OpenSUSE, CERN. My favorite OpenVZ provider. [mailto:jak@isp2dial.com John Kelly]&lt;br /&gt;
* [http://solib.ca/services-offerts/hebergement-haute-vitesse/serveurs-vps/ SOLIB Logiciel Libre Québec] Our company offers DDoS protected server solutions including OpenVZ containers. Very high availability and reliability, all our VPS are located in Quebec, Canada.&lt;br /&gt;
* [https://www.host-stage.net/linux-vps/ HostStage - Linux VPS] - Simple, Reliable OpenVZ VPS packed with 1 GBPS port speed, RAID 10 SSD, Intel Xeon CPU, DDoS Protection from $4.95/month&lt;br /&gt;
* [https://undergroundprivate.com/russiaoffshorevps.html  UndergroundPrivate.com] - OpenVZ with highly privacy, offshore , DMCA ignored , high confidence, SolusVM and cPanel, managed and non managed service.&lt;br /&gt;
* [http://www.vpsfast.us/canada-vps VPSFast] - VPS Provider with good prices in Canada.&lt;br /&gt;
* [https://websavers.ca/canadian-vps-hosting Websavers Inc in Halifax] - VZ containers priced by the resource. Resource changes entirely client-level.&lt;br /&gt;
* [https://www.yoorshop.fr/hosting-ssd-vps-usa-canada.php YOORshop SAS] - High performance NVMe SSD Linux VPS in Canada, daily backup included. Starting from €7,49 /month&lt;br /&gt;
&lt;br /&gt;
== Colombia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.datacorporate.co/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [http://www.soficol.com/ Soficol] Offers Enterprise OpenVZ based VPS, hosted on a clustered infrastructure and redundant network. Easy to use user management and instant setup.&lt;br /&gt;
* [https://www.hostingplus.com.co/ Hosting Plus Colombia] provide OpenVZ containers at our own datacenter in South America with triple internet provider. Starting from  us20/month&lt;br /&gt;
* [https://ibumu.com/ Ibumu] Best containers for wordpress starting from $5.5.&lt;br /&gt;
&lt;br /&gt;
== Czech Republic ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://4smart.cz 4Smart.cz] - prepaid, you are charged only by the system resources you use, therefore you can run a VPS for as little as  1 EUR a month if your vps is not resource hungry. Even if you pay  0,50 EUR  month, you still have 3 GB of RAM and 8 cores available to you VPS.&lt;br /&gt;
* [http://www.freecloud.cz FREECLOUD.CZ] - Free OpenVZ VPS Server - own IP, 800Mhz CPU, 512MB RAM, 50Mbits LAN, 10GB HDD, 100GB Traffic - Debian, Ubuntu, Gentoo, Slackware, Fedora, Centos&lt;br /&gt;
* [http://www.hukot.cz Hukot.cz] - OpenVZ VPS Servers starting from 2.92 €, XEON, 1 Gbps uplink, unlimited traffic. Debian, Ubuntu, CentOS, Scientific, SuSe, Fedora, Elastix.&lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [http://www.ultimatehosting.eu UltimateHosting.eu] - OpenVZ VPS Servers starting from $8 with custom configuration - up to 100 GB HDD, 2048 MB RAM, 2 GHz CPU, and unlimited traffic.&lt;br /&gt;
* [http://www.mujhost.net MUJHOST.NET] - OpenVZ VPS Servers starting from 160 Kč, 100Mbps / 1 Gbps uplink, unlimited traffic. Debian, Ubuntu, CentOS ...&lt;br /&gt;
&lt;br /&gt;
== Chile ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.1h.cl/ 1h.cl Vps - Chile] - VPS High Performance with OpenVZ in Chile&lt;br /&gt;
* [http://www.1hosting.cl/ 1hosting Virtual servers - Chile] - VPS Professional with OpenVZ&lt;br /&gt;
* [http://www.dch.cl/ DCH] - DCH.cl Hosting Chile - High Performance VPS Servers with OpenVZ &lt;br /&gt;
* [https://www.dominioweb.net/ Dominioweb] - Premium Hosting and domain registration&lt;br /&gt;
* [http://ecohosting.cl/ EcoHosting.cl Santiago - Chile] - VPS with OpenVZ in Chile&lt;br /&gt;
* [http://www.host.cl/ Host.cl] - Cloud Computing&lt;br /&gt;
* [https://www.hostingplus.cl/ HostingPlus Internet Limitada] - High Performance Vps provider in Chile&lt;br /&gt;
* [https://www.hostname.cl/ Hostname Ltda] - VPS Hosting with Datacenter in Chile&lt;br /&gt;
* [https://www.inc.cl/ INC Internet Limitada] - VPS Hosting provider in Chile&lt;br /&gt;
&lt;br /&gt;
== Denmark ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.vpsfast.us/denmark-cloud-server VPSFast] - VPS Provider with good prices in Denmark.&lt;br /&gt;
&lt;br /&gt;
== Ecuador ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.dedi.space/ DediSpace Telecom] - VPS Servers in Ecuador - USA, France, Germany, Ecuador Datacenter.&lt;br /&gt;
&lt;br /&gt;
== France ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.BargainVPS.co.uk/ BargainVPS] - UK / US / EU Instant setup VPS - We have some great Linux &amp;amp; Windows Bargain VPS packages on offer for you here all available Fully Managed.&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in France from 1.88EUR/month.&lt;br /&gt;
* [http://www.fixweb.com Fixweb] Great managed hosting provider with strong anti ddos solution - openvz only - leader in managed openvz solution with horizontal scaling and high availability&lt;br /&gt;
* [http://www.Freaksol.com/ FreaKs VPS Hosting] Self reliant hosted on independent networks &amp;amp; DC low ping,No restrictions on file types,Unlimited resources,high ram servers &lt;br /&gt;
* [https://galaxyhostplus.com/ovz GalaxyHostPlus] Cheap VPS Hosting based in Roubaix with new 2016 line starts from $2/Month &lt;br /&gt;
* [http://www.harmony-hosting.com Harmony-Hosting] A high performance VPS hosting - The leader in France&lt;br /&gt;
* [https://www.delimiter.com/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [http://www.lws.fr/serveur_dedie_linux.php LWS - Linux VPS ] - Linux VPS Hosting - Only 9.99€/month, Affordable and Secure OpenVZ VPS Servers with 99.99% up-time, web hosting control panel Included. French datacenter&lt;br /&gt;
* [http://www.ovh.co.uk/vps/ OVH VPS] linux from 3€/month, [http://www.ovh.co.uk/vps/vps-cloud.xml windows] from 12€/month.&lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [https://VPSZ.FR VPSZ] VPS Hosting in France. Starting from 2,99€, Unlimited traffic.&lt;br /&gt;
* [http://www.1euro-hosting.eu BEST EU VPS - 1€ Hosting] - Providing reliable and secure OpenVZ VPS Servers with 99.99% up-time, starting from 8€&lt;br /&gt;
* [https://www.shape.host/linux-vps/ Shape Host - Linux VPS] - OpenVZ virtual servers, Instant Linux VPS&lt;br /&gt;
* [https://undergroundprivate.com/russiaoffshorevps.html  UndergroundPrivate.com] - OpenVZ with highly privacy, offshore , DMCA ignored , high confidence, SolusVM and cPanel, managed and non managed service.&lt;br /&gt;
* [https://www.host-stage.net/linux-vps/ HostStage - Linux VPS] - Simple, Reliable OpenVZ VPS packed with 1 GBPS port speed, RAID 10 SSD, Intel Xeon CPU from $4.95/month&lt;br /&gt;
* [https://www.yoorshop.hosting/hosting-vps-ssd-europe.php YOORshop SAS] - High performance NVMe SSD OpenVZ 7 VPS within 13 countries in Europe, Canada and Singapore. Daily backup included. From €7,49 /month&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Germany ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://afterburst.com Afterburst (Previously FanaticalVPS)]: affordable unmetered, unmanaged VPS servers in Germany.&lt;br /&gt;
* [http://www.b2b-hosting.de/vps/ B2B Hosting]: Professional virtual servers for business applications. Performance and reliability at a fair price. Made with OpenVZ.&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in Germany from 1.88EUR/month.&lt;br /&gt;
* [https://www.delimiter.com/dedicated-servers/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [https://galaxyhostplus.com/ovz GalaxyHostPlus] Cheap VPS Hosting based in Frankfurt with new 2016 line starts from  $2/Month&lt;br /&gt;
* [http://hostmist.com/openvz-vps-germany.html Host Mist]: features budget OpenVZ VPS hosting in Germany.&lt;br /&gt;
* [http://www.host1plus.com/ Host1Plus] Servers based in Frankfurt am Main. Offering reliable OpenVZ based VPS servers in Germany starting from $2.50 per month.&lt;br /&gt;
* [http://www.hostingjuice.com/ HostingJuice] The Superioum VPS and Web Hosting provider, low prices - Premium packages.&lt;br /&gt;
* [http://www.ingate.de/managed-server.html Ingate] offers managed servers with openVZ virtualization. located in germany, great support.&lt;br /&gt;
* [http://linevast.de/angebote/linux-openvz-vserver-mieten.html Linevast] Reliable OpenVZ based VPS with fast support, located in germany&lt;br /&gt;
* [https://cp.myvirtualserver.com/?affid=42 MyVirtualServer]: Cheap VPS (OpenVZ/KVM, 5TB Traffic, 10Gigabit), servers located in Frankfurt (best ping, starting 1.99€) good support (en/de) //New Design!&lt;br /&gt;
* [https://www.nogics.com Nogics Technologies]: Affordable VPS based in Germany. Starts from $5.96/mo.&lt;br /&gt;
* [http://www.plambee.de/vserver.php Plambee.de Webhosting]: Powerfull OpenVZ based VPS servers at low cost with hosting in Germany&lt;br /&gt;
* [https://rackset.com/ Rackset Hosting] Managed Dedicated / VPS and Website Hosting services since 2004.&lt;br /&gt;
* [http://www.serverbiz.de/vserver Serverbiz] Powerful VPS at very low prices.&lt;br /&gt;
* [http://www.synapseglobal.com/voip_vps.html SynapseGlobal.com] Elastix, Trixbox, PBX in a Flash and Asterisk VPS - OpenVZ based Asterisk VOIP servers located in Munich Germany.&lt;br /&gt;
* [http://www.vStarVPS.com vStarVPS]: Reliable VPS Hosting at lowest prices, with 99.9% uptime, Premium Unmetered Bandwidth and Custom HDD/RAM of your choice. Instant and FREE Setup. RapidLeech Allowed.&lt;br /&gt;
* [http://whynotavps.com WhyNOTaVPS]: Instant activated VPS SERVERS!!&lt;br /&gt;
* [http://squote.de/index.php?ref=1421485383 SQuote]: SQuote VPS Hosting and more. VPS 1 Core, 1.024MB RAM, 512MB RAM SWAP, 50 GB HDD, 1x IPv4. 3,89EUR/month. For the best VPS SQuote.de&lt;br /&gt;
* [http://www.vpsfast.us/germany-vps VPSFast] - VPS Provider with good prices in Germany.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Guatemala ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.globalnetcafe.com/gnc/menu/hospedaje.htm Global Net Cafe]: Servicios de hospedaje, reseller, vps, colocacion y servidores. Incluyendo OpenVZ.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Hong Kong ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [https://hostus.us HostUS] features unmanaged and managed OpenVZ VPS in Hong Kong as well as 3 USA locations. Unparalleled connectivity to the Asia Pacific. Enjoy 15% off with coupon VPS15OFF.&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides self-managed OpenVZ based SSD VPS in Hong Kong, located at the Pacnet datacenter. &lt;br /&gt;
* [http://vps.timway.com/linux_vps.html Timway VPS Hosting] - Quality, non-oversold hosting provider focused on being security conscious and offering a positive client experience.   Centos, Debian, Fedora, OpenSuse and Ubuntu Containers are available.&lt;br /&gt;
* [http://www.vpsfast.us/hong-kong-cloud-server VPSFast] - VPS Provider with good prices in Hong Kong.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Hungary ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://elin.hu/index.php?menu=8&amp;amp;nyelv=hu&amp;amp;cim=Virtualis-szerver Virtual server] OpenVZ server: 2xX5650 Intel Xeon, 32GB RAM, 15.000rpm SAS disks, 100Mbit/s, unlimited bandwith.&lt;br /&gt;
* [https://www.ivirtual.co/vps-hosting/ iVirtual.co ] OpenVZ Master Server: 2x Intel Xeon @ 3.0GHZ, 64 GB ECC Ram, 15k RPM SAS HDD's, 1Gbit/s Network, Unlimited bandwith.&lt;br /&gt;
&lt;br /&gt;
== Iceland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
&lt;br /&gt;
== Ireland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== India ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://cochinwebhost.in/budget-vps-hosting/ Low Cost VPS Hosting] Fast SSD VPS Server for Hosting Solutions at budget prices with 24x7 Technical Support.&lt;br /&gt;
* [https://www.cyberhost.in/ Cyberhost] - Affordable OpenVZ containers on high performance quality Servers. Wide choice of virtual dedicated servers with Full management available.&lt;br /&gt;
* [http://www.datacorporate.in/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
*[http://www.fastwebhost.in/vps-hosting.html fastwebhost VPS Hosting] VPS hosting offered by fastwebhost are powered by ''VPS hosting, virtual server hosting and Linux VPS hosting services''. Fully Managed VPS with control panels.&lt;br /&gt;
* [http://www.Freaksol.com/ Freaksol VPS Hosting] Self reliant hosted on independent networks &amp;amp; DC low ping to India,No restrictions on file types,Unlimited resources,high ram servers&lt;br /&gt;
* [https://www.geniushost.in Genius Host] Fully managed [https://www.geniushost.in SSD Web Hosting] offered by Genius Host are powered by ''OpenVZ'' With LiteSpeed Web Server &amp;amp; Mariadb.&lt;br /&gt;
* [http://www.hioxindia.com/virtual-private-server.php VPS Hosting] Reliable and quality VPS Virtual Private Server Hosting&lt;br /&gt;
* [http://www.hostitsmart.com/ Host IT Smart] - One of the best VPS Hosting Provider in India with 24X7X365 Customer support.&lt;br /&gt;
* [https://www.hostnamaste.com HostNamaste] is your high-performance [https://www.hostnamaste.com/openvz-vps.php OpenVZ VPS Hosting] Provider. Get your perfect [https://www.hostnamaste.com/openvz-vps.php VPS Hosting] account today! Available in [https://www.hostnamaste.com/datacenter-losangeles.php Los Angeles], [https://www.hostnamaste.com/datacenter-dallas.php Dallas], [https://www.hostnamaste.com/datacenter-jacksonville.php Jacksonville], USA,  [https://www.hostnamaste.com/datacenter-france.php France], Europe, [https://www.hostnamaste.com/datacenter-mumbai-pune.php Mumbai], India and [https://www.hostnamaste.com/openvz-vps-moscow-russia.php Moscow], Russia.&lt;br /&gt;
* [https://www.hostsoch.in/windows-hosting.html HostSoch Windows Hosting] Windows hosting offered by HostSoch are powered by ''Windows 2012, ASP.NET, MVC, IIS, PHP and More''. 99.9% Uptime, 24/7 Dedicated support guaranteed. &lt;br /&gt;
* [https://www.miditech.co.in/ MidiTech VPS Hosting] VPS hosting offered by MidiTech are powered by ''VMware, ''. Fully Managed VPS with control panels. &lt;br /&gt;
* [http://www.milesweb.com/vps-hosting.php Milesweb VPS Hosting] VPS hosting offered by Milesweb are powered by ''VMware, OpenVZ''. Fully Managed VPS with control panels. &lt;br /&gt;
* [https://www.nogics.com/web/vps-hosting/ Nogics Technologies] Instant provisioning of VPS, VPS starts from $5.96/mo. 30+ OS templates.&lt;br /&gt;
* [http://overlineindia.net/vpshosting-p-62.html Overline India VPS Hosting] Fully managed cPanel Installed VPS Hosting with 24x7x365 Live Chat Tech support, powered by OpenVZ&lt;br /&gt;
* [http://www.prohosterz.com/linux-vps.php ProHosterZ VPS Hosting] Reliable and quality Virtual Dedicated Servers | Virtual Private Servers | XEN VPS | OpenVZ VPS | Virtual Hosting&lt;br /&gt;
* [http://pve.proxmox.com/wiki/User:Apmuthu Ap.Muthu] sponsored by [http://www.gnuacademy.org GNUAcademy], [http://www.planettel.com.sg PlaNetTel] and [http://www.sacollege.net S A College] creates OpenVZ Templates for the Open Source Community and provides hosting in datacenters of clients choice or on site.&lt;br /&gt;
* [http://www.servers.co.in/vps/vps_hosting.php Server Web Hosting] Offers Fully Managed OpenVZ VPS Web hosting in India/US/UK at affordable and cheap rates with best hardware quality and customer service 24/7/365 days&lt;br /&gt;
* [http://touchstone.hosting/ Touchstone Solutions Private Limited] High-performance Enterprise VPS Hosting in India. One of the highest performing VPS Servers available with cPanel Installed.&lt;br /&gt;
* [http://vpsbeach.com VpsBeach Managed Hosting] Fully managed cPanel Installed VPS Hosting with 24x7x365 Live Chat Tech support, powered by OpenVZ&lt;br /&gt;
* [http://www.vpsfast.us/india-vps VPSFast] - VPS Provider with good prices in India.&lt;br /&gt;
* [http://www.vpshostingindia.net/ VPS Hosting India, Fully Managed Server] A Committed Fully Managed VPS Server for Hosting solution in India, Complete Technical Support assistance with commitment of fast, clustered and most supportive DataCenters.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Indonesia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.herza.id/vps-murah/ Herza.ID] Low Cost OpenVZ Virtual Server, starting from IDR 50.000 / Month with RAID 10 SSD, Unlimited Bandwidth with 1 Gbps IIX &amp;amp; OIXP Connection, and 24/7 Technical Support.&lt;br /&gt;
* [https://www.kucingweb.co.id/hosting/vps/ Kucingweb Indonesia] High Performance VPS service with the best choice.&lt;br /&gt;
&lt;br /&gt;
== Iran==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.ehost.ir EHost.ir] - OpenVZ Servers , DUAL XEON Cpus , 12 Gb Ram , 100Mbit Dedicated Connection , SAS HardDisk&lt;br /&gt;
* [https://www.irpower.com IRPOWER Webhostings &amp;amp; Domain] - OpenVZ Servers Since 2005!&lt;br /&gt;
* [http://www.vpsfa.com VPSFa.com] - OpenVZ Servers , DUAL XEON Cpus -  , 24Gb Ram , 1000Mbit Dedicated Connection , SAS HardDisk&lt;br /&gt;
* [https://webramz.com Webramz Host] - With more than 15 years experience in Managed Hosting, Webramz was first vps provider in Iran which used to setup OpenVZ servers. Nowadays we provide wide range of services including CloudLinux based OpenVZ and Managed Vps Servers.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Italy ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
* [http://www.hosting-italia.net hosting italia] - OpenVZ Servers and panel enduser Virtualizor Intel® Core™ i7-920 Quad-Core 48 GB DDR3 RAM - Guaranteed Bandwidth 200 Mbit/s&lt;br /&gt;
* [http://www.vpsfast.us/italy-vps VPSFast] - VPS Provider with good prices in Italy.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Liechtenstein ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
&lt;br /&gt;
== Lithuania ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.cloudlix.com/ CloudLix.com] - Managed and unmanaged OpenVZ virtual servers based on 2.6.32 kernel. Up to 20GHz (Intel SandyBridge) CPU and 10GB RAM. Located in Vilnius and Siauliai.&lt;br /&gt;
* [http://www.databank.lt/ databank.lt] - high-quality professional OpenVZ hosting with cloud computing solutions.&lt;br /&gt;
* [https://www.hostens.com/vps-hosting/ Hostens] - Unmanaged VPS hosting for the great price: clear deals, no hidden conditions, quality service from the heart of Europe. &lt;br /&gt;
* [https://www.lavavps.lt/ lavavps.lt] - Professional high-quality OpenVZ containers (VPS servers) affordable for everyone. Powerful control panel for VPS management.&lt;br /&gt;
* [https://monovm.com/ monovm.com] - High Quality VPS Hosting Provider&lt;br /&gt;
* [http://www.serveriai.lt/ Serveriai.lt] - Affordable OpenVZ containers on quality HP hardware. Wide choice of virtual dedicated servers up to 8 CPU cores and 8 GB RAM. Full management available. Located in Vilnius.&lt;br /&gt;
* [https://www.time4vps.com/?affid=1359 Time4VPS] - Powerful cloud technology based infrastructure will let you build custom virtual machine and pay only for what you really need. Located in Vilnius city.(0.99€/month(2Yr) 512mbRAM, 1TB Traffic// 4.5€/month(2Yr) StorageVps, 1TB, 10TB Traffic)&lt;br /&gt;
* [https://www.vpsnet.lt/en/ VPSnet.lt] - Powerful and high quality servers for a competitive price in Lithuania (Eastern Europe).&lt;br /&gt;
* [http://www.vpsfast.us/lithuania-vps VPSFast] - VPS Provider with good prices in Lithuania.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Latvia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.altnet.lv/ Altnet] - Hosting and colocation services. Any flawor, you name it. &lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
&lt;br /&gt;
* [http://www.vpsfast.us/latvia-vps VPSFast] - VPS Provider with good prices in Latvia.&lt;br /&gt;
&lt;br /&gt;
== Luxembourg ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.vpsfast.us/luxembourg-vps VPSFast] - VPS Provider with good prices in Luxembourg.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Malaysia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.cubiex.com/ Cubiex] - Malaysia Affordable Web Hosting and Domain Name. Affordable Linux VPS Hosting in Malaysia. OpenVZ based, Quad Core Xeon node. cPanel/WHM and DirectAdmin also available.&lt;br /&gt;
* [https://controlvm.com ControlVM] ControlVM Sdn. Bhd. offering OpenVZ VPS in Singapore, Malaysia, USA and Germany.&lt;br /&gt;
* [https://www.yoorshop.fr/hosting-ssd-vps-singapore-asia.php YOORshop SAS] - High performance SSD Linux VPS In Singapore with daily backup included. Starting from €7,49 /month&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Malta ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.a6it.com/ A6iT] - Stable, quality managed OpenVZ VPSs based in Malta.  Redundant network.&lt;br /&gt;
&lt;br /&gt;
== Morocco ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.belsemtech.com/ BelsemTech.CoM] BelsemTech SARL offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from 300 DH. Virtual Private Server (VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://www.hostoweb.com/ HosToWeb] is the only company providing VPS hosting in Morocco Data Center.&lt;br /&gt;
* [http://www.adk-media.com/ ADK Media] provides affordable managed and unmanaged virtual servers based on OpenVZ, Xen Paravirtualization and Xen HVM platforms. 24/7 Technical Support. Distros: Centos, Fedora, Debian, Ubuntu and more.&lt;br /&gt;
* [http://www.naja7host.com/ Naja7Host.CoM] The Naja7host SARL provides affordable VPS hosting using the OpenVZ platform. Running on Full Quality Nodes of up to 8 CPU and 16 GB RAM. . All VPS's come with Real 24/7/365  Technical Support and cPanel free (if option selected  ). Multiple choice of OS 32/64Bits (Centos, fedora, ubuntu, debian .ect ...)&lt;br /&gt;
* [http://www.lehoster.com/ Le Hoster] offers affordable Virtual Private Servers using the OpenVZ and KVM platform. Backed with our amazing customer support.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Netherlands ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.avanpad.com/ Avanpad] offers OpenVZ VPS hosting with 24\7 online support. Customer can request different control panels or templates for installation on his VPS.&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in Netherlands from 1.88EUR/month.&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
* [http://www.Freaksol.com/ FreaKs VPS Hosting] Self reliant hosted on independent networks &amp;amp; DC low ping around the world,No restrictions on file types,Unlimited resources,high ram servers&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [http://www.HostSailor.com/ HostSailor] Number 1 Netherlands Provider HostSailor provides affordable &amp;amp; high quality services such as VPS (XEN, OpenVZ and KVM) Linux or Windows, Dedicated servers, SSL certificates and domain name services.&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides self-managed OpenVZ SSD VPS in Telecity AMS 5, one of the best datacenters located in the Amsterdam area.&lt;br /&gt;
* [https://iniz.com/ INIZ VPS Hosting] INIZ provides affordable VPS Hosting in Amsterdam, Netherlands with high resources at low prices.&lt;br /&gt;
* [https://www.liteserver.nl/ LiteServer] Looking for a quality and affordable VPS in the center of The Netherlands? We provide SSD, Storage and High Bandwidth VPSes, starting at only €16 per year. We operate AS60404.&lt;br /&gt;
* [https://www.mangelot-hosting.nl/ Mangelot Hosting] Mangelot Hosting, A webhosting company located in the Netherlands, offers budget OpenVZ hosting solutions for maximum scalability en performance.&lt;br /&gt;
* [http://www.osbox.nl OsBoX Dutch Network Engineering] Cheap VPS host as low as $1 per month. Very great uptime and a overall good support. Check the website for the server plans.&lt;br /&gt;
* [https://www.scopehosts.com/openvz-vps/netherlands-vps ScopeHosts.Com] - ScopeHosts Provides OpenVZ VPS in Netherlands, Amsterdam Powered with Pure SSD, 1Gbps Uplink, DDOS Protection, Self-Managed and Managed VPS Solutions&lt;br /&gt;
* [http://www.signet.nl/ Signet VPS Hosting] - Signet delivers VPS hosting plans based on CentOS or Debian templates, including control-panel Virtualmin.&lt;br /&gt;
* [http://simple-webhosting.eu/ Simple-webhosting.eu] - OpenVZ based web hosting starting from €0.98 per month.&lt;br /&gt;
* [https://www.seedvps.com SeedVPS] Provides Powerful &amp;amp; Reliable OVZ/KVM VPS Hosting in The Netherlands&lt;br /&gt;
* [http://www.touchvps.com/ TouchVPS] is a company who offer Support and Managed Services for OpenVZ Servers ,also offer templates for openvz ready to go with cPanel , DirectAdmin , Plesk , Games, IRC Services, Desktop and many more.&lt;br /&gt;
* [https://www.totallyhosted.nl/ TotallyHosted] OpenVZ based Premium VPS services located in the Netherlands @ Serverius DC.&lt;br /&gt;
* [https://undergroundprivate.com/russiaoffshorevps.html  UndergroundPrivate.com] - OpenVZ with highly privacy, offshore , DMCA ignored , high confidence, SolusVM and cPanel, managed and non managed service.&lt;br /&gt;
* [http://www.voipcomplete.com/product-overview/dedicated-vps.html VOIPcomplete] offers dedicated VPS plans based on CentOS including a VPS management interface.&lt;br /&gt;
* [http://www.vpsfast.us/netherlands-vps VPSFast] - VPS Provider with good prices in Netherlands.&lt;br /&gt;
* [https://www.vps9.net/netherlands-vps VPS9.NET] - VPS9 OpenVZ Nodes are located in Naaldwijk, Netherlands. We provide OpenVZ VPS Services at very a affordable cost, powered with 20x Faster SSD on RAID-10 Partition.&lt;br /&gt;
* [https://www.waveride.at/ Waveride] Waveride, an EDIS company, offers budget full gigabit OpenVZ + solusVM VPS in Austria, USA and the Netherlands&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Norway ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.vpsfast.us/norway-vps VPSFast] - VPS Provider with good prices in Norway.&lt;br /&gt;
&lt;br /&gt;
== Pakistan ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://vimzaa.com/ Vimzaa] The best hosting in Pakistan.&lt;br /&gt;
&lt;br /&gt;
== Philippines ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.web.com.ph/vps.php Web.com.ph] - provides OpenVZ virtual servers in the Philippines.&lt;br /&gt;
&lt;br /&gt;
== Perú ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.hn.pe/ Hostname] Hostname offers business OpenVZ containers in Perú&lt;br /&gt;
* [http://www.hostingandino.pe/ Hostingandino Lima - Peru] - VPS with OpenVZ in Peru&lt;br /&gt;
* [http://www.hostingplus.pe/ HostingPlus Internet Limitada] - High Performance Vps provider in Peru&lt;br /&gt;
* [https://www.hostingroup.com/ Hostingroup] Web hosting for small businness in Perú.&lt;br /&gt;
* [https://hostingweb.pe/ Hosting Web] The best hosting in PERU.&lt;br /&gt;
* [https://www.inchosting.pe/ HostingINC SAC] OpenVZ virtualization solutions for business in Perú.&lt;br /&gt;
* [https://www.mejorhosting.pe/ Mejor Hosting Perú] Hosting comparison for peruvian hosting providers.&lt;br /&gt;
* [https://webuniversal.pe/ Web Universal] The best hosting in PERU in the World.&lt;br /&gt;
&lt;br /&gt;
== Poland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://hosteam.pl/ HosTeam] offers OpenVZ VPS hosting from their DataCenter in Poland. Customer has choice of all major Linux distros (WARNING!!! restoring your backup is VERY expensive and they charge even if it wasn't restored correctly!), NATIVE IPV6 AVAILABLE!&lt;br /&gt;
&lt;br /&gt;
* [http://ultimahost.pl/ UltimaHost] high grade OpenVZ VPS and FreeBSD jail (DC in Łódź, Poland), brand of statnet.pl, SSD available for more expensive packets, NO IPV6 AVAILABLE (but they can load you tun module)&lt;br /&gt;
&lt;br /&gt;
* [http://budgetvps.pl/ BudgetVPS] very cheap, low end grade OpenVZ VPSes (DC in Gdańsk, Poland), brand of HitMe.pl&lt;br /&gt;
&lt;br /&gt;
* [https://hitme.pl/ HitMe.pl] high grade OpenVZ/Xen PV/Xen HVM VPSes, Virtuozzo (DC in Gdańsk, Poland), NATIVE IPV6 AVAILABLE (/64 on demand for free)!&lt;br /&gt;
&lt;br /&gt;
* [http://www.kr-cpd.pl/oferta/serwery-vps/ KR-CPD] Cracow's Center of Data Processing (DC of course in Cracow, Poland)&lt;br /&gt;
&lt;br /&gt;
* [http://livenet.pl Livenet] cheap, middle/low end OpenVZ VPSes (DC in Łódź, Poland)&lt;br /&gt;
&lt;br /&gt;
* [http://slaskdatacenter.pl/ Śląsk Data Center] high/middle grade OpenVZ VPSes (DC in Silesia province, Poland), SSD available for more expensive packets&lt;br /&gt;
&lt;br /&gt;
* [https://www.ionic.pl/ IONIC.pl] VPS OpenVZ with SolusVM control panel, own DC in Cracow&lt;br /&gt;
&lt;br /&gt;
* [https://microvps.pl/ MicroVPS.pl] Middle And low end OpenVZv7 VPS plans. SSD for regular VPS and HHD for storage plans (up to 1TB)&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Portugal ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.ptservidor.pt/ PTServidor] - OpenVZ virtual servers with free management based in Portugal.&lt;br /&gt;
* [http://www.efeito.net/ Weblevel.pt] - OpenVZ virtual servers based in Portugal.&lt;br /&gt;
* [https://www.webtuga.pt/ WebTuga] - Managed/Unmanaged Virtual Private Servers hosted in a Portuguese Datacenter with lots of extras&lt;br /&gt;
* [https://www.cloudfire.pt/ CloudFire] - OpenVZ VPS at very low prices hosted in Portugal&lt;br /&gt;
* [https://www.linxisp.com/ LINXISP] - High Availability &amp;amp; Performance OpenVZ Containers&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] - Build an OpenVZ VPS in 14 locations WordWide From £2.49&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Romania ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.intovps.com IntoVPS] - offers unmanaged OpenVZ virtual servers based in Romania, Netherlands and USA. A lot of resources for decent prices.&lt;br /&gt;
* [http://www.ename.ro/dedicated.html eName] - managed OpenVZ virtual servers in Bucharest, Romania&lt;br /&gt;
* [http://www.ch-center.com/virtual-servers Ch-center] - unmanaged OpenVZ virtual servers, based in Romania in it's own Data Center&lt;br /&gt;
* [http://www.clouds.ro/servere-virtuale/ Clouds] - OpenVZ virtual servers hosted on premium hardware, in Romania&lt;br /&gt;
* [http://www.HostSailor.com/ HostSailor] HostSailor provides affordable &amp;amp; high quality OpenVZ and KVM servers in Romania&lt;br /&gt;
* [https://www.shape.host/linux-vps/ Linux VPS] - OpenVZ virtual servers, Instant Linux VPS&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Russia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.internoc24.host Internoc24.HOST] is an international [https://www.www.internoc24.host Offshore VPS ] provider with reliable SSD VPS in Moscow, Russia. Focus ist on high privacy protection so they accept several Cryptocurrencies like Bitcoin, Ethereum and others for anonymous payments.&lt;br /&gt;
* [http://www.ihc.ru/vps.html IHC.RU] - VPS hosting in Moscow, Russia starting at $10/month with good set of precreated templates&lt;br /&gt;
* [http://mchost.ru/services/linux-vps/ McHost.ru] - Linux VDS Hosting from McHost.&lt;br /&gt;
* [http://hosting.agava.ru/vps/ AGAVA] - Linux VPS hosting based on OpenVZ.&lt;br /&gt;
* [http://vdsplanet.ru/ VDSPlanet.ru] - unmanaged VDS/VPS hosting starting at 3.99$ a month. Large variety of OS templates and free ISPmanager Lite control panel. Total automation is our goal.&lt;br /&gt;
* [http://www.demos.ru/service/datacenter/vps.html Demos-Internet] - we offer OpenVZ Virtual Private Server based on Linux.  All VPS come with ISPmanager control panel.&lt;br /&gt;
* [http://www.net.ru/service/net9/ www.net.ru] - OpenVZ virtual private servers.&lt;br /&gt;
* [http://www.eurobyte.ru/ Eurobyte.ru] - Linux VDS Hosting from Eurobyte.&lt;br /&gt;
* [https://undergroundprivate.com/russiaoffshorevps.html  UndergroundPrivate.com] - OpenVZ with highly privacy, offshore , DMCA ignored , high confidence, SolusVM and cPanel, managed and non managed service.&lt;br /&gt;
* [http://www.telekom.ru/service/vps.html Elvis Telekom] - OpenVZ hosting with base and cpanel templates from Elvis Telekom.&lt;br /&gt;
* [http://fastvps.ru/vds/ FastVPS] - OpenVZ hosting, ISPmanager, Hetzner, MayFlower.&lt;br /&gt;
* [https://lepus.su/vps.html Lepus] - OpenVZ hosting, SSD, ISPmanager free, Hetzner.&lt;br /&gt;
* [http://www.hts.ru/vds/ HTS] - OpenVZ hosting, ISPmanager, Linux VPS hosting based on OpenVZ in Moscow.&lt;br /&gt;
* [https://selectel.ru/services/vds/ Selectel] - OpenVZ hosting.&lt;br /&gt;
* [https://galaxydata.ru/root-server/ GalaxyData] - Virtuozzo Containers in Cloud Storage.&lt;br /&gt;
* [http://hosterbox.ru/servers/ Hosterbox.ru] - Managed VPS hosting. Based on OpenVZ + SolusVM + ISPmanager.&lt;br /&gt;
* [https://firstvds.ru FirstVDS.ru] - One of the leading hosting companies providing virtual private servers.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Singapore ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://conceptlane.com/?t=hostingservices#ratesvps ConceptLane Pte Ltd] - OpenVZ VPS on dual octa-core AMD Opterons running Debian Wheezy 7, custom control panel with bandwidth graphs, reboot/reinit and web-based VNC access.&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [http://www.qoxy.com/vps QOXY.com] Affordable and Reliable OpenVZ VPS Hosting in a Singapore Data Center.&lt;br /&gt;
* [http://www.secureax.com/ SecureAX Pte Ltd] - Singapore Premium Internet Solution Provider&lt;br /&gt;
* [http://www.planettel.com.sg PlaNetTel] - Affordable and customised OpenVZ containers across 3 data centers - contact Thomas Festus at +65-66936881. [http://pve.proxmox.com/wiki/User:Apmuthu#Squeeze_based_Templates Sponsors OpenVZ Container Template]s for the Open Source community.&lt;br /&gt;
* [http://www.vpsfast.us/singapore-vps VPSFast] - VPS Provider with good prices in Singapore.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Serbia ==&lt;br /&gt;
* [https://www.skyhosting.rs/en/vps-servers SkyHosting] - Fast Linux OpenVZ VPS SSD Hosting with SolusVM control panel.&lt;br /&gt;
* [https://www.ninet.rs/en/vps-servers NiNet Company] - Linux OpenVZ VPS servers. Well known VPS hosting company from Serbia with their own data center&lt;br /&gt;
* [http://www.suonline.net SuOnline.Net ISP] - Linux OpenVZ VPS servers, Docker enabled !!!&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== South Africa ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.host1plus.com/ Host1Plus] - Local South African servers hosted in Johannesburg. OpenVZ VPS servers starting from $3.00 per month.&lt;br /&gt;
* [http://www.vps.co.za/ VPS.CO.ZA] - South Africa's oldest VPS provider. Local South African servers with SolusVM control panel. OpenVZ, Xen and OnApp Cloud.&lt;br /&gt;
* [http://247hosting.co.za/vpshosting.php 247Hosting] - OpenVZ virtual servers locally in South Africa with SolusVM control panel. cPanel option available!&lt;br /&gt;
* [http://www.SoftDux.co.za/ SoftDux] - OpenVZ virtual servers based America &amp;amp; South Africa. All VPS's come with cPanel or Plesk control panels. XEN VPS's also available.&lt;br /&gt;
* [http://www.clickworks.co.za/ Clickworks] - OpenVZ / Xen VPS servers hosted in RSA. Backed by Solusvm control panel.&lt;br /&gt;
* [http://www.elitehost.co.za/ Elite Host] - OpenVZ virtual servers based in America &amp;amp; South Africa. All VPS's come with cPanel and unlimited bandwidth.&lt;br /&gt;
* [http://www.telasera.com/ Telasera] - OpenVZ VPS servers hosted in South Africa. Supermicro Servers powered by Intel Xeon with 24/7 Support.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Spain ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.somtecnologia.com/ Som Tecnologia] - OpenVZ/6 , containers up to Debian 9&lt;br /&gt;
* [http://www.corpresa.com/servidores-virtuales.html Corpresa Hosting] - Tiene algún proyecto entre manos y un plan de hosting no le hes sufuciente y un servidor dedicado no está dentro de su presupuesto?, una solución de VPS a medida será la que cubrirá todas sus necesidades.&amp;quot;&lt;br /&gt;
* [https://www.datomedia.es Datomedia] - Cloud alta disponibilidad powered by Virtuozzo 6 y Servidores VPS bajo openvz y kvm.&lt;br /&gt;
* [https://www.evidaliahost.com/vps/ EvidaliaHosting] - Servidores VPS totalmente configurados con panel de gestión Plesk 12.5, garantía de devolución de 30 días y posibilidad de discos SSD.&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
* [https://ginernet.com/vps-ssd.php GINERNET] - Servidores VPS alojados en España desde 1.99€/mes.&lt;br /&gt;
* [https://www.hostingplus.com.es Hosting Plus España] provide OpenVZ containers at our own datacenter. Starting from us20/month RAID 10 SSD.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Sweden ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.admax.se/vps/ Admax] - Admax offers enterprise grade virtual servers with great pricing. Custom control panel, API, remote access &amp;amp; more.&lt;br /&gt;
* [https://www.acon.se/vps Acon VPS Server] - VPS Server and Dedicated server provider in Sweden.&lt;br /&gt;
* [https://www.glesys.com/vps.php GleSYS] - VPS Provider with a great control panel and good prices&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides the highest quality SSD VPS in Stockholm, Sweden. Based on completely pure SSD in RAID-10 and delivering extremely high network &amp;amp; hardware performance along with reliability.&lt;br /&gt;
* [https://www.nametyper.com NameTyper] - VPS and Shared hosting provider. Customize your own OpenVZ Container with 1-12 cores running on SSD and ECC RAM. &lt;br /&gt;
* [https://virtualcenter.se VirtualCenter] - The first Cloud provider with SSD VPS in Sweden. Offer enterprise class hardware and network infrastructure&lt;br /&gt;
* [http://www.vpsfast.us/sweden-vps VPSFast] - VPS Provider with good prices in Sweden.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Switzerland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
* [http://www.vpsfast.us/switzerland-vps VPSFast] - VPS Provider with good prices in Switzerland.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Tanzania==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.aptus.co.tz/ Aptus Solutions] - OpenVZ / SolusVM VPS Servers located in Dar es Salaam - 100meg to TIX. CentOS &amp;amp; Ubuntu.&lt;br /&gt;
&lt;br /&gt;
== UK ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.34sp.com/ 34SP.com] - We're a UK based web hosting company, bridging the gap between sophisticated hosting solutions &amp;amp; affordable prices&lt;br /&gt;
* [http://www.AceShells.com/ AceShells] - Fast, stable, high quality UK based virtual private servers from just £5 a month, operating since 2001&lt;br /&gt;
* [http://www.AtlanticServers.com/ Atlantic Servers] - Affordable VPS, stable, high quality VPS, UK based Data Centre&lt;br /&gt;
* [https://awebhosting.uk/ AWebHosting.uk] VPS hosting offered by [https://awebsolutions.uk/ AWEBSOLUTIONS LIMITED] reliable UK hosting provider located in London, UK and Hosted in UK DataCentre.&lt;br /&gt;
* [http://www.BargainVPS.co.uk/ BargainVPS] - UK / US / EU Instant setup VPS - We have some great Linux &amp;amp; Windows Bargain VPS packages on offer for you here all available Fully Managed.&lt;br /&gt;
* [http://www.cheapvps.co.uk/ CheapVPS] - CheapVPS provide cheap, UK based OpenVZ VPS servers. Hosted on high end hardware, in a top UK datacenter backed up with 24/7/365 support. Choice from a wide range of Linux distros. OpenVZ VPS managed with SolusVM.&lt;br /&gt;
* [http://www.chilliserver.com/ Chilliserver] - Affordable plans starting from just £3.99, not oversold. RHEL6 Kernel with VSwap, TUN/TAP/FUSE and ACL support enabled. SolusVM control panel with custom snapshot system and rescue system. Based in a European data Centre with UK based support.&lt;br /&gt;
* [http://www.chvps.com/ CHVPS] - Switzerland Based VPS, Cheap Pricing with solusVM control panel.&lt;br /&gt;
* [http://www.cislondon.co.uk/virtual-private-servers/ Commercial Internet Solutions] - CIS provides premium hosting at competitive rates, focused on Small Businesses within the M25 orbital. Hosting is on Dual Quad core Intel Xeon supermicro servers in Tier 4 datacenters around London.&lt;br /&gt;
* [http://www.datacorporate.co.uk/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [http://domvps.com/ domVPS] - OpenVZ Virtual Servers in the USA, Germany, France &amp;amp; the Netherlands at a low cost.&lt;br /&gt;
* [http://www.DubHosting.co.uk/ DubHosting] - DubHosting started in 2004 has been providing cost effective hosting to clients world wide. Fully managed OpenVZ servers based in Europe &amp;amp; US are one of their many strong points. They can provide you with a dedicated server and install openvz allowing you to sell your own vps servers. Their servers are located at UKGrid in Manchester with 24/7/365 support&lt;br /&gt;
* [http://www.europhase.net/virtual-private-servers/ Europhase UK Limited, UK VPS] - OpenVZ VPS Hosting, Virtual Dedicated Servers, UK VPS hosted at multiple UK datacentres from £4.99&lt;br /&gt;
* [https://farbyte.uk/vps Farbyte VPS] - UK based OpenVZ VPS and shared web hosting services&lt;br /&gt;
* [http://www.fdqwholesale.co.uk FDQ Wholesale] - UK based hosting services&lt;br /&gt;
* [http://www.gemvps.net/ GemVPS.NET] - UK (Manchester) Based Company, OpenVZ Virtual Servers in the UK &amp;amp; France on Fast nodes.&lt;br /&gt;
* [http://www.hadrill.org.uk Hadrill Online] - Fully managed hosting with unlimited bandwidth. Quotes available through contact form.&lt;br /&gt;
* [http://www.infrenion.com./uk_vps_hosting.html Infrenion Networks UK] Cheap, economical and reliable web hosting solutions, VPS based on the openVZ platform. You can host any YouTube Clone scripts with free FFMPEG setup on our vps servers. Also offers with a choice of selecting DataCenter.&lt;br /&gt;
* [https://www.laws-hosting.co.uk/vps-hosting.php Laws Web Hosting] - Laws Web Hosting offers OpenVZ VPS Hosting with packages starting from £5.50/m that will cater for anyone. We have OpenVZ VPS hosting solutions, and come with moderate DDoS protection.&lt;br /&gt;
* [http://www.letstalkdigital.com/index.php?option=com_content&amp;amp;view=article&amp;amp;id=73&amp;amp;Itemid=65 LetsTalkDigital VPS Hosting] - LetsTalkDigital.com offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from $14.99. Virtual Private Server(VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://www.meteorvps.com/ MeteorVPS] - Professional, Non-Oversold amazing VPS plans pretty cheap using SolusVM management, range from 512MB -&amp;gt; 16GB&lt;br /&gt;
* [http://www.minivps.co.uk miniVPS] miniVPS offers VPS hosting solutions with nodes located in UK, utilising openvz/solusvm with future locations of USA and UK. &lt;br /&gt;
* [https://www.first2host.co.uk First2Host Cheap VPS] - Intel Xeon E5-2630v3 OpenVZ VPS Servers. Don't be defined by a pre-made VPS plan. Create your own VPS Plan by assigning the resources that you require. SATA, SSD or NVMe storage 100 MBPS, 250 MBPS, 500 MBPS, 1GBPS speeds and free cPanel licenses.&lt;br /&gt;
* [http://www.phurix.co.uk/ Phurix] - A UK based web solutions company that provides you with reliable hosting at extremely affordable prices, VPS server virtualization using OpenVZ.&lt;br /&gt;
* [http://www.qualityservers.co.uk Quality Servers] - Affordable OpenVZ virtual servers based in the UK and USA. Choice of control panels and management options.&lt;br /&gt;
* [http://www.rackburst.net/ Rackburst] - UK SSD VPS Hosting with fast UK-based Live Support available from £1.49 per month.&lt;br /&gt;
* [http://www.rshosting.co.uk/vps.html RSHosting UK] - Offering the most secure, reliable, stable and fast UK VPS Web Hosting based on OpenVZ architecture. Our Virtual Dedicated Servers are physically hosted on powerfull Quad Core servers located in multiple UK datacentres.&lt;br /&gt;
* [http://www.sharkserve.rs SharkServers] - Low Cost OpenVZ virtual servers in the UK. Choice of control panels and management options. Own Datacentre.&lt;br /&gt;
* [https://www.ukhost4u.com/ UKHost4u] - A leading provider of VPS solutions for over 19 years!&lt;br /&gt;
* [http://www.vpsfast.us/united-kingdom-vps VPSFast] - VPS Provider with good prices in UK.&lt;br /&gt;
* [http://www.vpsmachine.co.uk/ vpsMachine] Quality openvz hosting platform with a large choice of customer OS templates.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [https://www.webhostuk.co.uk/vps-hosting.html WebHostUK LTD] - Offers Cheap yet Best UK VPS Web Hosting working on OpenVZ Platform.We offers fully Managed UK VPS with true 24/7/365 days support.All our Servers are located in UK London DC.&lt;br /&gt;
* [http://www.webhostinguk.com/vps/vps-hosting.html Web Hosting UK] - Fully managed OpenVZ VPS Hosting offered on fast and reliable and affordable servers in UK &amp;amp; European datacenter with 24x7x365 days lightning fast support.&lt;br /&gt;
* [http://www.weycrest.co.uk/vps-hosting.php Weycrest VPS] - Low Cost, Stable OpenVZ and Parallels' Virtuozzo Virtual Private Server solutions. London UK Hosted at Coreix with a choice of operating systems, and root and control panel options.&lt;br /&gt;
* [http://www.xilo.net/virtual_private_servers-vps/ XILO] - UK-based hosting with UK-based support. VPS services offered with a choice of cPanel, Webmin and other useful applications, VoIP, SIP, VPN to name a few.&lt;br /&gt;
* [http://www.zxvps.co.uk/ ZxVPS VPS Hosting] - Quality, non-oversold VPS based on the openVZ platform, using SolusVM management panel, VPS from 128mb - 2gb, cpanel, direct admin, kloxo, etc.&lt;br /&gt;
&lt;br /&gt;
== Ukraine ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://ekvia.com/ Ekvia] - VDS/VPS based on OpenVZ. Free trial 14 days. Domain registration for VDS/VPS.&lt;br /&gt;
* [http://www.gelihost.com/ Geliar Hosting Solutions] - Fast virtual dedicated servers based on OpenVZ. Geliar Hosting Solutions offering many control panels and other useful services.&lt;br /&gt;
* [http://www.hostpro.ua/ Hostpro.ua] - Full managed OpenVZ servers.&lt;br /&gt;
* [http://www.vpsfast.us/ukraine-vps VPSFast] - VPS Provider with good prices in Ukraine.&lt;br /&gt;
&lt;br /&gt;
== USA ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.a2hosting.com A2 Hosting] is your high-performance [http://a2hosting.com/openvz-vps-hosting OpenVZ VPS Hosting] provider. Design your perfect [http://a2hosting.com/vps-hosting VPS Hosting] account today! Featuring SwiftServers and SSDs with page load speeds up to 300% faster compared to standard drives.&lt;br /&gt;
* [http://www.afterburst.com Afterburst] (Previously FanaticalVPS): affordable unmetered, unmanaged VPS servers in NY.&lt;br /&gt;
* [https://www.asurahosting.com/ AsuraHosting] offers powerful, reliable, and simple OpenVZ VPS to clients. AsuraHosting has a dedicated support team, and quality hosting; Pricing starts at just $5/month!&lt;br /&gt;
* [http://beyondhosting.net BeyondHosting.net] High Performance OpenVZ Virtual Private Servers (VPS)  Tier 1 US Datacenter.&lt;br /&gt;
* [http://buyvm.net BuyVM.net] DDoS Protection, three datacenter locations, Stallion control panel. Affordable quality VPS hosting since 2010!&lt;br /&gt;
* [https://www.binarycpu.com Binary Computer Solutions] has provided OpenVZ based Virtual Private Server hosting for over 5 years.  Network outages are a thing of the past, and oversold services are never heard of here.  Built on solid technology, with infrastructure to match - Binary Computer Solutions will give you hosting you need, without the cost others ask for.  Starting at $30.00/mo.&lt;br /&gt;
* [http://www.bodhost.com/ Bodhost.com] Fast, Reliable and secure web hosting service with 24*7 free customer service.&lt;br /&gt;
* [http://www.buildyourvps.com/ BuildYourVPS.com] mix ‘n’ match your VPS; choose only the bandwidth, RAM, disk capacity, type of IP connection, level server redundancy, and the support/monitoring you want. [http://www.buildyourvps.com/ BuildYourVPS] is the 1st to offer you a highly-customized VPS solution, without making you pay for unused extra features.&lt;br /&gt;
* [https://www.budgetvm.com/openvz-linux-vps.php BudgetVM.com] Each server includes our industry-leading SLA, DDoS protection, 200Gbps networks and 7 * 24-hour customer support.&lt;br /&gt;
* [http://www.byethost.com Byethost.com] offers OpenVZ based VPS Hosting as its main VPS solution, with the hypervm panel. Centos, Debian, Fedora, OpenSuse and Ubuntu Containers are available.&lt;br /&gt;
* [http://cheaperasp.net CheaperASP.Net] provides Quality web hosting on the OpenVZ platform. You also help you get best options at [http://cheaperasp.net/godaddy-1-hosting-free-domain-promo/ affordable] cost.&lt;br /&gt;
* [http://www.chhost.net/vps.htm CH Hosting VPS Hosting] CH Hosting or chhost.net offers OpenVZ based VPS Hosting. 24/7 Support. Upgrade/Downgrade your plan as needed on-the-fly without the risk of downtime. Since 2006. Non-Oversell&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in USA from 1.88EUR/month.&lt;br /&gt;
* [http://www.cloudshards.com Cloud Shards] High Performance, reliable, stable and affordable OpenVZ Virtual Private Servers (VPS) in data centers across the USA.&lt;br /&gt;
* [https://cloudgearhosting.com CloudGear Hosting] - offers OpenVZ hosting in 4 locations across the USA. Including free DDoS Protection and free SSL with cPanel.&lt;br /&gt;
* [http://www.datacorporate.com/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [https://www.delimiter.com/storage-vps/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [https://www.cheapdomainnamesdot.com Domain Host SSL] provides Reliable web hosting with OpenVZ platform Since 2003, Located New York city, Atlanta, Los Angeles. &lt;br /&gt;
* [http://www.DubHosting.com/ DubHosting] - DubHosting started in 2004 has been providing cost effective hosting to clients world wide. Fully managed OpenVZ servers based in Europe &amp;amp; US are one of their many strong points. They can provide you with a dedicated server and install openvz allowing you to sell your own vps servers.&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
* [http://www.ethernetservers.com/ Ethernet Servers] A leading provider of OpenVZ Virtual Servers in Los Angeles, Miami and Buffalo with SolusVM.&lt;br /&gt;
* [http://www.evolucix.com/ Evolucix.com] Evolucix offers state of the art, professional, and reliable OpenVZ VPS solutions on top-notch hardware while providing quality support.&lt;br /&gt;
* [http://www.evolvedservers.com Evolvedservers.com] Openvz based vps servers. Hosted in Michigan, USA. 24/7 Support. Hosted in tier-3 and tier-4 datacenter's with multiple redundancies.&lt;br /&gt;
* [http://fastwebhost.com/vps-hosting.html Fastwebhost]: affordable cloud VPS servers using OpenVZ. &lt;br /&gt;
* [http://www.fliphost.net Fliphost.net]: Powerful, affordable instant setup VPS systems. Servers based in Phoenix Az with another location coming soon.&lt;br /&gt;
* [http://www.frontrangehosting.com Front Range Hosting]: SSD Cached KVM &amp;amp; OpenVZ VPS Hosting Prices Start at 2.00/mo, located in Colorado Springs, Colorado.&lt;br /&gt;
* [http://glesys.se GleSYS] is a hosting company specialized in serverhosting. Also offering VPS hosting mainly based on OpenVZ. GleSYS has provided access to server and Cisco hardware for developers from OpenVZ to find problem with VLAN implementation.&lt;br /&gt;
* [http://goodealhosting.com/ GOODEALHOSTING.com] Quality Hosting Solutions! Provides affordable unmanaged/managed VPS based on OpenVZ! start from $10.00, real 24/7 support.&lt;br /&gt;
* [http://gothost.net GotHost.net] Providing OpenVZ based VPS Hosting with SolusVM. All nodes are Quad Core Xeon with RAID-10 for speed and redundancy. Budget plans starting at $7.99.&lt;br /&gt;
* [http://www.greengeeks.com/ GreenGeeks Hosting] VPS Hosting. Dual Intel Xeon 64-Bit CPU's, DDR3 RAM, RAID-10 SSD Storage Arrays. 24/7 Support. cPanel/WHM + more!&lt;br /&gt;
* [http://hostarmor.com HostArmor™] - is best known for low-cost and reliable shared hosting and dedicated servers. Recently the company expanded to offer OpenVZ virtual server plans at 8 worldwide locations, five in the U.S., one in Germany, one in France, and one in the Netherlands. VPS plans start at $13.99/month.&lt;br /&gt;
* [http://www.host4geeks.com Host4Geeks] - Host4Geeks is a premium Fully Managed VPS provider with datacenters across 2 locations in US and in UK. All servers offer a free cPanel license.&lt;br /&gt;
* [http://www.host1plus.com Host1Plus] - OpenVZ based virtual servers in Chicago and Los Angeles. VPS plans start at $2.00 per month.&lt;br /&gt;
* [http://www.hostavps.com HostAVPS] - Providing Fully Managed VPS's on both the West &amp;amp; East Coast.&lt;br /&gt;
* [https://www.hostcapitol.com Host Capitol] offers fast and reliable web hosting services, including OpenVZ VPS Hosting, to clients ranging from small businesses to corporations. Located in Piscataway, New Jersey.&lt;br /&gt;
* [http://www.hostcolor.com Host Color] - OpenVZ based virtual servers hosted in a Tier 4 class data center based out of South Bend, Indiana. Juniper managed, fully-redundant network with uplinks to Level 3, Cogent and Internap.&lt;br /&gt;
* [https://www.hostgalaxy.com HostGalaxy] - OpenVZ based virtual servers. The fastest hosting in the Galaxy!&lt;br /&gt;
* [http://www.hostigation.com Hostigation] - High resource unmanage VPS hosting solutions.&lt;br /&gt;
* [http://www.hostingrails.com Hosting Rails] offers Rails-targeted OpenVZ VPS Hosting and updated Rails-ready OS images.&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [http://www.hostmist.com Host Mist] features budget OpenVZ VPS hosting from four major cities across the US.&lt;br /&gt;
* [http://www.hostrush.com HostRush] Self managed, ssd vps for business and non business. &lt;br /&gt;
* [http://www.dailyhosting.net hostoople] We offer OpenVZ VPS hosting from Dallas Texas, Starting at $29.95/month &lt;br /&gt;
* [https://hostus.us HostUS] provides unmanaged and managed OpenVZ VPS in Atlanta, Dallas and Los Angeles with custom control panel. A large variety of Linux distros are available. Enjoy 15% off with coupon VPS15OFF.&lt;br /&gt;
* [https://www.hostwinds.com Hostwinds] Affordable managed/unmanaged VPS Solutions.&lt;br /&gt;
* [http://hostsia.com Hostsia] With HOSTSIA Web services, you can get an OpenVZ VPS for only $15.00/mo. Each OpenVZ VPS includes multiple free-of-charge bonuses and offers a 99.9% uptime guarantee. You can also use our charge-free Hepsia CP, which is available with each OS – it permits you to host an unmetered number of domains and comprises heaps of handy tools, which will help you better manage your site and your VPS web hosting account.&lt;br /&gt;
* [http://www.infrenion.com./vps_hosting.html Infrenion Networks] Cheap, reliable and secure VPS hosting solutions, based on the openVZ platform. You can host any YouTube Clone scripts with enhanced support quality round the clock.&lt;br /&gt;
* [http://iniz.com/ INIZ VPS Hosting] INIZ provides affordable VPS Hosting in Los Angeles &amp;amp; New York with high resources at low prices.&lt;br /&gt;
* [https://www.interserver.net/ InterServer Web Hosting] Fast &amp;amp; Reliable VPS - 24x7 Support. 99.9% Up-time, Hosting Since 1999!.&lt;br /&gt;
* [http://www.joinvps.com JoinVPS.com] ISPmanager OpenVZ based VPS hosting. 24/7 Technical Support. Free ISPmanager control panel.&lt;br /&gt;
* [http://www.lovevps.com LoveVPS] Budget VPS provider starting at $5.99/month located in the US with Xeon nodes.&lt;br /&gt;
* [http://www.letstalkdigital.com/index.php?option=com_content&amp;amp;view=article&amp;amp;id=73&amp;amp;Itemid=65 LetsTalkDigital VPS Hosting] LetsTalkDigital.com offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from $14.99 Virtual Private Server(VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://lylix.net LYLIX] offers affordable VPS hosting with a choice of eight different Linux distributions, dedicated VPS hosting, and specializes in Asterisk/VOIP based hosting including Trixbox, AsteriskNow, Elastix, and PBX-in-a-Flash.  Popular choice for unmanaged IP-PBX services; entire infrastructure built on a High-availability (HA) network across three regional NOCs.&lt;br /&gt;
* [http://www.micfo.com Micfo.com] offers VPS hosting services for both Linux VPS hosting and Window VPS hosting on affordable price combined with world-class 24x7x365 support.&lt;br /&gt;
* [http://www.neostreams.info/neoshop/cart.php?gid=9 nEo Stream Services] Offer's Top Quality OpenVZ Servers, Starting at $18.95 per month! SolusVM Control panel , 7 day Money Back Guarantee , 24x7 Professional Support.&lt;br /&gt;
* [http://pogiweb.com/vps/ PogiWeb LLC] Instant and free setup. Includes SolusVM control panel and free level 1 support during first month.&lt;br /&gt;
* [http://www.theserverexperts.com TheServerExperts.com] TheServerExperts VPS line is the ideal solution for clients who require the control of a dedicated server matched with the affordability and simplicity of a traditional shared hosting account.&lt;br /&gt;
* [http://thenynoc.com New York NOC] affordable Linux VPS hosting out of New York and Chicago. Plans as low as $5 a month and are backed by a redundant infrastructure and 24/7 support.&lt;br /&gt;
* [http://railsplayground.com RailsPlayground.com] Ruby on Rails VPS with ready to go Rails images with the LxAdmin control panel&lt;br /&gt;
* [http://www.raidlogic.net RaidLogic.NET] RaidLogic.NET offers OpenVZ based Linux VPS out of multiple facilities across the United States, including Miami, Los Angeles, and Chicago. Starting as low as $3.95/month.&lt;br /&gt;
* [http://www.ramhost.us RAM Host] RAM Host offers OpenVZ based Linux VPS out of multiple facilities across the United States, including Atlanta, Kansas City, and Phoenix.&lt;br /&gt;
* [http://www.reconhosting.com Recon Hosting] Recon Hosting offers affordable OpenVZ VPS solutions where you get Quality Hosting at a Fraction of the price. Instant setup with the latest Operating System templates including cPanel.&lt;br /&gt;
* [http://www.rokabear.com Rokabear] Rokabear offers OpenVZ Linux VPS, Dedicated Server, and Colocation. All Hardware setup in High Availability mode including raided drives and redudnant power and network connections. With multiple upstream providers, Rokabear's connectivity is fast and reliable! Rokabear supports LAMP, Openvpn, and Asterisk configurations. VPSes start at $7.99!&lt;br /&gt;
* [https://www.rosehosting.com RoseHosting] offers OpenVZ Linux virtual servers equipped with Enterprise Grade SSD drives. All hosting plans are fully-managed with FREE 24/7 support, FREE website migration, FREE weekly backups and FREE server monitoring included.&lt;br /&gt;
* [http://www.rshosting.com/vps.html RSHosting.com] RSHosting offers the most secure, reliable and stable VPS - Virtual Private Servers based on OpenVZ architecture, powered by the most professional and qualified 24/7 lightening fast support.&lt;br /&gt;
* [http://www.servercomplete.com Server Complete, LLC] Server Complete offers OpenVZ based Linux VPS out of multiple facilities across the United States, including Atlanta, Dallas, and Chicago.&lt;br /&gt;
* [http://www.servergrove.com ServerGrove] uses OpenVZ as the main virtualization platform for its state of the art VPS hosting services.&lt;br /&gt;
* [http://serverswarm.com ServerSwarm] provides stable, affordable, high performance OpenVZ virtual private servers.&lt;br /&gt;
* [http://Sharktech.net Sharktech] provides custom OpenVZ solutions DDOS-protected up to 100Gbps.&lt;br /&gt;
* [http://www.silverrack.com/ SilverRack VPS Hosting] - SilverRack provides affordable VPS hosting using the OpenVZ platform.&lt;br /&gt;
* [http://www.soficol.com/ Soficol] Offers Enterprise OpenVZ based VPS, hosted on a clustered infrastructure and redundant network. Easy to use user management and instant setup.&lt;br /&gt;
* [http://www.spectrohost.com/ Spectro Host] - Offers performance VPS Servers running openvz. Always the most resources and never over committing OpenVZ nodes.&lt;br /&gt;
* [http://www.budgetvds.com/ BudgetVDS] - Offers VPS Servers running openvz we've been in business for 2 years now using openvz platform.&lt;br /&gt;
* [http://www.syera.net/ Syera Networks] Unmetered VPS From $18.88/M, 24/7 Support, OpenVZ/HyperVM, Instant Setup!, Free 1Gbps Upgrade with Coupon: syera1G&lt;br /&gt;
* [http://www.synapseglobal.com/voip_vps.html SynapseGlobal.com] Elastix, Trixbox, PBX in a Flash and Asterisk VPS - OpenVZ based Asterisk VOIP servers with 14 Tier 1 premium bandwidth providers.&lt;br /&gt;
* [http://www.tektonic.net TekTonic] provides VPS hosting services using both Virtuozzo and OpenVZ technology.&lt;br /&gt;
* [http://www.tigerservers.com/ TigerServers] - Provides affordable managed VPS based on OpenVZ. Servers located in Chicago, Illinois&lt;br /&gt;
* [http://www.tocici.com/ TOCICI VPS Hosting Services] Since 1995 TOCICI has offered web hosting services, with 24/7 support commitments and a strong non-oversell policy. Our purpose-built hosting infrastructure has serviced many organizations for over a decade. Offering OpenVZ VPS, data center colocation, and equipment leasing options, visit our website for prices and more details.&lt;br /&gt;
* [http://www.ultravps.com UltraVPS] UltraVPS offers managed and unmanaged OpenVZ-based VPS hosting utilizing dual CPU hardware nodes with redundant, high-performance RAID-10 storage.  UltraVPS offers VPS servers with many popular control panel options and turn-key applications.&lt;br /&gt;
* [http://www.vpsfx.com VPSFX] VPSFX.com offers OpenVZ VPS, data center colocation, and dedicated servers.&lt;br /&gt;
* [http://www.Webhost.US.Com/linuxvps.html US Web Hosting]  Webhost.US.Com offers powerful GUI based VPS management system with full OpenVZ, Xen Paravirtualization and Xen HVM support.All our Virtual Private servers are fully Managed with 99.9% uptime and 24/7 top notch support.&lt;br /&gt;
* [http://unixservice.com Unixservice/unxsVZ] Low cost OpenVZ ONLY hosting we specialize in Mail, DNS and RADIUS multiple container hosting. At the world famous Market St. San Jose, CA Silicon Valley datacenter. Ping times from your containers to local yahoo and google sites guaranteed single digit ms times. Your containers are backed up at 4 local and 2 remote locations. Contact supportgrp at unixservice dot com.&lt;br /&gt;
* [http://www.vogenic.xyz Vogenic: Cloud Services] If you are searching for an upgrade to the shared hosting service, then you should consider our OpenVZ or KVM VPS hosting services.&lt;br /&gt;
* [http://vpslink.com VPSLink.com] provides virtual private server hosting on the OpenVZ platform.&lt;br /&gt;
* [http://www.vpsspeed.com/ VPSSpeed] - VPSSpeed provides unmanaged OpenVZ based VPS hosting with over 50 OS Templates, real 24/7/365 support and fast US servers. No overselling.&lt;br /&gt;
* [http://vpsnoc.com VPSNOC] offers unmanaged vps hosting based in the USA utilizing OpenVZ hypervisor behind an in-house VPS control panel.&lt;br /&gt;
* [https://www.waveride.at/ Waveride] Waveride, an EDIS company, offers budget full gigabit OpenVZ + solusVM VPS in Austria, USA and the Netherlands&lt;br /&gt;
* [http://www.webappcabaret.com WebAppCabaret] provides VPS solutions for hosting applications. We offer OpenVZ with cPanel or Plesk for web site management; and NGASI Universal App Manager for deploying and managing JAVA and RAILS applications.&lt;br /&gt;
* [http://www.wirenine.com/vps-hosting/ WireNine.com VPS Hosting] Low cost fully managed and unmanaged OpenVZ based VPS Hosting with SAS 15k enterprise drives in high-performance RAID-10 storage.&lt;br /&gt;
* [http://www.zoidial.com/ Zoidial Hosting and VPS] - offers VPS and Virtual Dedicated Server solutions utilizing OpenVZ.  In business since 1998, Zoidial Incorporated is a small hosting provider focused on being security conscious, proactive, and offering a positive client experience.&lt;br /&gt;
* [http://zensix.com ZenSix Hosting] Cheap OpenVZ based VPS accounts with the SolusVM control panel.&lt;br /&gt;
* [http://zigothosting.com Zigot Hosting] Affordable and Reliable OpenVZ based VPS's within the SolusVM control panel.&lt;br /&gt;
* [http://www.vpsfast.us/usa-vps VPSFast] - VPS Provider with good prices in USA (Los Angeles, New Jersey, New York, Seattle, Washington, Dallas, Chicago, Atlanta, Ashburn, Miami, Piscataway).&lt;br /&gt;
* [http://www.xarixlite.com Xarix Lite] - offers OpenVZ hosting in Charlotte, SC. OpenVZ plans starting at $2.50/mo&lt;br /&gt;
* [https://www.yourlasthost.com YourLastHost] is your high-performance [https://www.yourlasthost.com/openvz-vps.php OpenVZ VPS Hosting] Provider. Get your perfect [https://www.yourlasthost.com/openvz-vps.php VPS Hosting] account today! Available in Los Angeles, Dallas, Jacksonville, USA and France, Europe.&lt;br /&gt;
&lt;br /&gt;
== Vietnam ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://appvz.com AppVZ.com] (www.appvz.com) is a leading web solution provider offering domain, hosting, reseller and VPS hosting packages from 2009. Just recently, the company has offered discount packages where customers can avail managed and un-managed VPS for only $9.5 per month.&lt;br /&gt;
&lt;br /&gt;
= Hosting providers comparison =&lt;br /&gt;
&lt;br /&gt;
It is hard to compare all virtual private server offers provided by different hosting providers.&lt;br /&gt;
Sites below can help you with it.&lt;br /&gt;
&lt;br /&gt;
* [https://www.cheapvpsservers.co.uk/ Cheap VPS Servers]&lt;br /&gt;
* [https://www.hostingmyths.com/ Hosting Myths]&lt;br /&gt;
* [https://cheapwebhosting.review/ VPS servers comparison]&lt;br /&gt;
* [https://reviewsquirrel.com/web-hosting-reviews/ Review Squirrel]&lt;br /&gt;
* [http://lowendstock.com/ Lowendstock]&lt;br /&gt;
* [https://www.websitehostingrating.com/ Best Web Hosting Services]&lt;br /&gt;
* [https://foxmaya.com/hosting/best-wordpress-hosting-india/ Best Wordpress Hosting Services]&lt;br /&gt;
* [http://serverbear.com/compare?Sort=RAM&amp;amp;Order=asc&amp;amp;Server+Type=VPS&amp;amp;Monthly+Cost=-&amp;amp;HDD=-&amp;amp;RAM=-&amp;amp;Virtualization=OpenVZ Serverbear]&lt;br /&gt;
* [https://www.comparethehosts.com/vps-web-hosting.htm VPS Web Hosting Reviews]&lt;br /&gt;
* [https://thishosting.rocks/best-cheap-managed-vps/ ThisHosting.Rocks - Managed VPS Providers Comparison]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
http://vpscomp.com&lt;br /&gt;
http://reviewsignal.com/webhosting/compare/&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= See also =&lt;br /&gt;
&lt;br /&gt;
* [[Partners]]&lt;br /&gt;
* [[Download mirrors]]&lt;br /&gt;
* [[VPS vs Dedicated]]&lt;br /&gt;
* [https://certivatic.com/iso-certification-in-UAE/ ISO Certification in UAE]&lt;/div&gt;</summary>
		<author><name>Vvs</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.openvz.org/index.php?title=CT_storage_backends&amp;diff=23357</id>
		<title>CT storage backends</title>
		<link rel="alternate" type="text/html" href="https://wiki.openvz.org/index.php?title=CT_storage_backends&amp;diff=23357"/>
		<updated>2020-09-24T18:19:01Z</updated>

		<summary type="html">&lt;p&gt;Vvs: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{stub}}&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Comparison table =&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--T:1--&amp;gt;&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot; style=&amp;quot;text-align: center;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Feature&lt;br /&gt;
! OVZ Ploop&lt;br /&gt;
! OVZ SimFS (ext4)&lt;br /&gt;
! LVM (ext4)&lt;br /&gt;
! ZFS&lt;br /&gt;
|-&lt;br /&gt;
!colspan=&amp;quot;11&amp;quot; style=&amp;quot;font-style:bold;background-color:gold;&amp;quot;|1. Solidity in front of failures and security&lt;br /&gt;
|-&lt;br /&gt;
|'''I/O isolation'''&lt;br /&gt;
|{{Yes|Good}}&lt;br /&gt;
|{{No|Bad}}: Possibility of &amp;quot;no inodes&amp;quot; issues (when file system journal become a bottleneck).&lt;br /&gt;
|{{Yes|Good}}&lt;br /&gt;
|{{Yes|Good}}&lt;br /&gt;
|-&lt;br /&gt;
|'''Security'''&lt;br /&gt;
|{{Yes|Good}}&lt;br /&gt;
|{{No|Bad}}: Some bug could be exploited to escape CT and access HN file system &amp;lt;ref&amp;gt;[https://bugs.openvz.org/browse/OVZ-6296 CVE-2015-2925]&amp;lt;/ref&amp;gt; &amp;lt;ref&amp;gt;[http://www.openwall.com/lists/oss-security/2014/06/24/16 CVE-2014-3519]&amp;lt;/ref&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|'''Reliability'''&lt;br /&gt;
|{{No|Low}}: big amount of files produce ext4 corruption so often&lt;br /&gt;
|Medium: fsck, power loss and HW Raid without cache can kill whole data&lt;br /&gt;
|High: LVM metadata can be corrupted completely&lt;br /&gt;
|{{Yes|Excellent}}: no write hole, checksumming and COW&lt;br /&gt;
|-&lt;br /&gt;
|'''Filesystem over filesystem'''&lt;br /&gt;
|Yes&lt;br /&gt;
|No&lt;br /&gt;
|No&lt;br /&gt;
|?&lt;br /&gt;
|-&lt;br /&gt;
|'''Effect of HN filesystem corruption at /vz'''&lt;br /&gt;
|{{Yes|No corruption}}&lt;br /&gt;
|{{No|Possible corruption}}&lt;br /&gt;
|?&lt;br /&gt;
|?&lt;br /&gt;
|-&lt;br /&gt;
|'''Maturity in O/VZ'''&lt;br /&gt;
|{{Yes|Since 2012}}&lt;br /&gt;
|{{Yes|Since ~2005}}&lt;br /&gt;
|{{Yes|Since 1998}}&lt;br /&gt;
|{{Yes|Since 2014}}&lt;br /&gt;
|-&lt;br /&gt;
!colspan=&amp;quot;11&amp;quot; style=&amp;quot;font-style:bold;background-color:gold;&amp;quot;|2. Performance and design features&lt;br /&gt;
|-&lt;br /&gt;
|'''Maximum container volume space'''&lt;br /&gt;
|4 TiB &amp;lt;ref&amp;gt;[[Ploop/Limits]]&amp;lt;/ref&amp;gt;&lt;br /&gt;
|1 EiB &amp;lt;ref&amp;gt;[https://en.wikipedia.org/wiki/Ext4 Ext4]&amp;lt;/ref&amp;gt;&lt;br /&gt;
|?&lt;br /&gt;
|256 ZiB&lt;br /&gt;
|-&lt;br /&gt;
|'''Disk space overhead'''&lt;br /&gt;
|Up to 20%&lt;br /&gt;
|No&lt;br /&gt;
|Up to 20%&lt;br /&gt;
|?&lt;br /&gt;
|-&lt;br /&gt;
|'''Disk I/O speed'''&lt;br /&gt;
|Fast&lt;br /&gt;
|Fast only with small amount of containers per node, slowdown in case of big number of small files.&lt;br /&gt;
|Fast&lt;br /&gt;
|Fast&lt;br /&gt;
|-&lt;br /&gt;
|'''Disk space overcommit (provide more space for containers than available on server now)'''&lt;br /&gt;
|{{Yes}}&lt;br /&gt;
|{{Yes}}&lt;br /&gt;
|No&lt;br /&gt;
|{{Yes}}&lt;br /&gt;
|-&lt;br /&gt;
|'''Different containers may use file systems of different types and properties'''&lt;br /&gt;
|{{Yes}}&lt;br /&gt;
|{{No}}&lt;br /&gt;
|Yes&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|'''Second level quotes in Linux (inside container)'''&lt;br /&gt;
|{{Yes}}&lt;br /&gt;
|{{Yes}}&lt;br /&gt;
|{{Yes}}&lt;br /&gt;
|{{No|Not implemented}}&lt;br /&gt;
|-&lt;br /&gt;
|'''Potential support for QCOW2 and other image formats'''&lt;br /&gt;
|{{Yes}}&lt;br /&gt;
|{{No}}&lt;br /&gt;
|{{No}}&lt;br /&gt;
|No&lt;br /&gt;
|-&lt;br /&gt;
|'''Incremental backup support on filesystem level'''&lt;br /&gt;
|{{Yes}}, through snapshots&lt;br /&gt;
|{{No}}&lt;br /&gt;
|{{No}}&lt;br /&gt;
|{{Yes}}&lt;br /&gt;
|-&lt;br /&gt;
|'''Shared storage support (Virtuozzo storage, NFS)'''&lt;br /&gt;
|{{Yes|Yes}}&lt;br /&gt;
|{{No|No}}&lt;br /&gt;
|{{Yes|Yes}}&lt;br /&gt;
|?&lt;br /&gt;
|-&lt;br /&gt;
!colspan=&amp;quot;11&amp;quot; style=&amp;quot;font-style:bold;background-color:gold;&amp;quot;|3. Maintenance&lt;br /&gt;
|-&lt;br /&gt;
|'''vzctl integration'''&lt;br /&gt;
|{{Yes|Complete}}&lt;br /&gt;
|{{Yes|Complete}}&lt;br /&gt;
|{{No}}, many manual operations&lt;br /&gt;
|{{No}}, some manual operations&lt;br /&gt;
|-&lt;br /&gt;
|'''External compaction for container volumes'''&lt;br /&gt;
|{{No|Needed}} for saving HN space&lt;br /&gt;
|{{Yes|No}}&lt;br /&gt;
|{{No|Not available}}&lt;br /&gt;
|{{Yes|Not required}}&lt;br /&gt;
|-&lt;br /&gt;
|'''Access to private area from host'''&lt;br /&gt;
|{{Yes}}&lt;br /&gt;
|{{Yes}}&lt;br /&gt;
|?&lt;br /&gt;
|?&lt;br /&gt;
|-&lt;br /&gt;
|'''Live backup'''&lt;br /&gt;
|{{Yes|Easy, fast and consistent}}&amp;lt;ref&amp;gt;[http://openvz.livejournal.com/44508.html ploop snapshots and backups]&amp;lt;/ref&amp;gt; &amp;lt;ref&amp;gt;[[Ploop/Backup]]&amp;lt;/ref&amp;gt;&lt;br /&gt;
|{{No|Easy, slow, and sometimes inconsistent}} in case some application depends on inode IDs&lt;br /&gt;
|{{No|Fast}}&lt;br /&gt;
|{{Yes|Fast}} theoretically&lt;br /&gt;
|-&lt;br /&gt;
|'''Snapshot support'''&lt;br /&gt;
|{{Yes}}&amp;lt;ref&amp;gt;[http://openvz.livejournal.com/44508.html ploop snapshots and backups]&amp;lt;/ref&amp;gt;&lt;br /&gt;
|{{No}} theoretically, because of much/small files to be copied&lt;br /&gt;
|{{Yes}}&lt;br /&gt;
|{{Yes}}&lt;br /&gt;
|-&lt;br /&gt;
|'''Live migration'''&lt;br /&gt;
|{{Yes|Reliable and fast}}&lt;br /&gt;
|{{No|Not reliable and slow}}, if some application depends on inode IDs&lt;br /&gt;
|{{No|Not implemented}}&lt;br /&gt;
|{{Yes|Fast}} theoretically&lt;br /&gt;
|-&lt;br /&gt;
|'''Continue failed CT migration'''&lt;br /&gt;
|{{Yes}}, in [https://lists.openvz.org/pipermail/users/2015-July/006335.html vzctl] from OpenVZ -stable&lt;br /&gt;
|{{Yes}}, option &amp;quot;--keep-dst&amp;quot;&lt;br /&gt;
|{{No|Not implemented}}&lt;br /&gt;
|?&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category: Storage]]&lt;/div&gt;</summary>
		<author><name>Vvs</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.openvz.org/index.php?title=User_talk:81.53.218.81&amp;diff=23349</id>
		<title>User talk:81.53.218.81</title>
		<link rel="alternate" type="text/html" href="https://wiki.openvz.org/index.php?title=User_talk:81.53.218.81&amp;diff=23349"/>
		<updated>2020-07-28T12:37:30Z</updated>

		<summary type="html">&lt;p&gt;Vvs: Created page with &amp;quot;This page is not up to date. Use http://mirrors.openvz.org/ mirrors.openvz.org instead)&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page is not up to date. Use http://mirrors.openvz.org/ mirrors.openvz.org instead)&lt;/div&gt;</summary>
		<author><name>Vvs</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.openvz.org/index.php?title=Download_mirrors&amp;diff=23348</id>
		<title>Download mirrors</title>
		<link rel="alternate" type="text/html" href="https://wiki.openvz.org/index.php?title=Download_mirrors&amp;diff=23348"/>
		<updated>2020-07-28T12:36:51Z</updated>

		<summary type="html">&lt;p&gt;Vvs: Reverted edits by 81.53.218.81 (talk) to last revision by Vvs&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;OpenVZ software is available from [http://download.openvz.org/ download.openvz.org] via [http://download.openvz.org/ http] and [ftp://download.openvz.org/ ftp].&lt;br /&gt;
&lt;br /&gt;
The software is also available from a number of mirrors. See the table below. You can track status of mirrors on special page - [http://mirrors.openvz.org/ mirrors.openvz.org].&lt;br /&gt;
&lt;br /&gt;
{{Warning|This page is not up to date.  Use [http://mirrors.openvz.org/ mirrors.openvz.org] instead.}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
|+ OpenVZ Mirrors&lt;br /&gt;
|-&lt;br /&gt;
! Host !! http !! ftp !! rsync !! Physical location !!class=&amp;quot;unsortable&amp;quot; | Notes&lt;br /&gt;
&amp;lt;!-- Me myself, email is mirrors at openvz.org --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|openvz.org&lt;br /&gt;
|| [http://download.openvz.org/ http]&lt;br /&gt;
|| [ftp://ftp.openvz.org/ ftp]&lt;br /&gt;
|| [rsync://download.openvz.org/openvz-download rsync]&lt;br /&gt;
|| USA, Virginia, Mc Lean&lt;br /&gt;
|| &amp;lt;small&amp;gt;Master site. Also available via rsync, see [[Setting up a mirror]].&amp;lt;/small&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
&amp;lt;!-- Admin: R Blundell &amp;lt;rickb@rapidvps.com&amp;gt;&lt;br /&gt;
 DISABLED 26 Nov 2012&lt;br /&gt;
|rapidvps.com&lt;br /&gt;
|| [http://openvz-mirror1.rapidvps.com http]&lt;br /&gt;
|| [ftp://openvz-mirror1.rapidvps.com ftp]&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
|| USA, Florida&lt;br /&gt;
||&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&amp;lt;!-- Admin: noc@unbornmedia.com, Nate Hudson &amp;lt;nate@unbornmedia.com&amp;gt; &lt;br /&gt;
COMMENTED OUT&lt;br /&gt;
|-&lt;br /&gt;
| unbornmedia.com&lt;br /&gt;
|| [http://mirrors.unbornmedia.com/openvz/ http]&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
|| USA, Massachusetts, Boston&lt;br /&gt;
||&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&amp;lt;!-- Admin: Cedric Gavage &amp;lt;ftp@skynet.be&amp;gt; &lt;br /&gt;
COMMENTED OUT&lt;br /&gt;
|-&lt;br /&gt;
| Belgacom S.A.&lt;br /&gt;
|| [http://openvz.mirrors.skynet.be/pub/openvz.org/ http]&lt;br /&gt;
|| [ftp://openvz.mirrors.skynet.be/pub/openvz.org/ ftp]&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
|| Belgium, Brussels&lt;br /&gt;
||&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&amp;lt;!-- Admin: openvzmirror@dayid.org &lt;br /&gt;
COMMENTED OUT&lt;br /&gt;
|-&lt;br /&gt;
| Dimenoc.com&lt;br /&gt;
|| [http://mirror.dimenoc.com/mirror/OpenVZ http]&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
|| USA, Florida, Orlando&lt;br /&gt;
|| &amp;lt;small&amp;gt;2010 Jan 26 error: Forbidden, You don't have permission to access /mirror/OpenVZ on this server&amp;lt;/small&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&amp;lt;!-- Admin: mirror-contact at iij.ad.jp --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| iij.ad.jp&lt;br /&gt;
|| [http://ftp.iij.ad.jp/pub/openvz/ http]&lt;br /&gt;
|| [ftp://ftp.iij.ad.jp/pub/openvz/ ftp]&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
|| Japan, Tokyo, Chiyoda&lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
&amp;lt;!-- Admin: opensource@yandex-team.ru, ashejn@yandex-team.ru, available since 25 Jan 2008 --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| yandex.ru&lt;br /&gt;
|| [http://mirror.yandex.ru/mirrors/download.openvz.org/ http]&lt;br /&gt;
|| [ftp://mirror.yandex.ru/mirrors/download.openvz.org/ ftp]&lt;br /&gt;
|| [rsync://mirror.yandex.ru::mirrors/download.openvz.org/ rsync]&lt;br /&gt;
|| Russia, Moscow&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
&amp;lt;!-- Admin: admin@xfes.ru, support@xfes.ru, available since 28 Feb 2010&lt;br /&gt;
     DISABLED 29 Mar 2013, they don't have rhel6-testing kernels&lt;br /&gt;
|-&lt;br /&gt;
| xfes.ru&lt;br /&gt;
|| [http://mirror.xfes.ru/openvz/ http]&lt;br /&gt;
|| [ftp://mirror.xfes.ru/openvz/ ftp]&lt;br /&gt;
|| [rsync://mirror.xfes.ru/openvz rsync]&lt;br /&gt;
|| Russia, Moscow&lt;br /&gt;
|| &amp;lt;small&amp;gt;100 mbit link to M9 bone.&amp;lt;/small&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&amp;lt;!-- Admin: mirror@wicks.co.nz, available since 5 Feb 2008&lt;br /&gt;
 DISABLED 29 Mar 2013, not updated&lt;br /&gt;
|-&lt;br /&gt;
| wicks.co.nz&lt;br /&gt;
|| [http://ftp.wicks.co.nz/pub/openvz/ http]&lt;br /&gt;
|| [ftp://ftp.wicks.co.nz/pub/openvz/ ftp]&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
|| New Zealand&lt;br /&gt;
||&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&amp;lt;!-- Admin: noc@proserve.nl, available since 15 Feb 2008 --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| proserve.nl&lt;br /&gt;
|| [http://openvz.proserve.nl http]&lt;br /&gt;
|| [ftp://mirror.proserve.nl/openvz ftp]&lt;br /&gt;
|| [rsync://openvz.proserve.nl::openvz rsync]&lt;br /&gt;
|| Netherlands (Holland), Amsterdam&lt;br /&gt;
|| &amp;lt;small&amp;gt;1Gbit connection, in a 25Gbit network.&amp;lt;br/&amp;gt;&amp;lt;/small&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
&amp;lt;!-- Admin: tehnic@xservers.ro --&amp;gt;&lt;br /&gt;
| xservers.ro&lt;br /&gt;
|| [http://mirrors.xservers.ro/openvz/ http]&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
|| Romania, Bucharest&lt;br /&gt;
|| &amp;lt;small&amp;gt;Speeds up to 100Mbps from outside country, up to 1Gbps within Romania&amp;lt;/small&amp;gt;&lt;br /&gt;
&amp;lt;!-- Admin: r.fluttaz at gmail.com --&amp;gt;&lt;br /&gt;
&amp;lt;!-- DISABLED 7 Jul 2009, not working&lt;br /&gt;
|-&lt;br /&gt;
| boTux.net&lt;br /&gt;
|| [http://mirror.botux.net/pub/openvz/ http]&lt;br /&gt;
|| [ftp://mirror.botux.net/pub/openvz/ ftp]&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
|| France&lt;br /&gt;
|| &amp;lt;small&amp;gt;1Gb/s. OVH French Connection.&amp;lt;/small&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&amp;lt;!-- Admin: mirrors@as24220.net --&amp;gt;&lt;br /&gt;
&amp;lt;!-- DISABLED 29 Mar 2013, /current is empty; Re-enabled 1 Dec 2013&lt;br /&gt;
     DISABLED 5 Feb 2014, re-enabled 13 Feb 2014 &lt;br /&gt;
     Not working as of 9/11/17&lt;br /&gt;
|-&lt;br /&gt;
| hostcentral.net.au&lt;br /&gt;
|| [http://mirror.as24220.net/pub/openvz/ http]&lt;br /&gt;
|| [ftp://mirror.as24220.net/pub/openvz/ ftp]&lt;br /&gt;
|| [rsync://mirror.as24220.net/openvz rsync]&lt;br /&gt;
|| Australia, Melbourne&lt;br /&gt;
|| &amp;lt;small&amp;gt;1Gbit/s uplink, updated every 4 hours.&amp;lt;br/&amp;gt;&amp;lt;/small&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&amp;lt;!-- Admin: mirrors@sphere.ly &lt;br /&gt;
Not working as of 9/11/17&lt;br /&gt;
|-&lt;br /&gt;
|| Spherely LLC&lt;br /&gt;
|| [http://mirrors.sphere.ly/openvz/ http]&lt;br /&gt;
|| [ftp://mirrors.sphere.ly/openvz/ ftp]&lt;br /&gt;
|| [rsync://mirrors.sphere.ly/openvz rsync]&lt;br /&gt;
|| USA, Texas, Dallas&lt;br /&gt;
|| &amp;lt;small&amp;gt;Updated hourly, 1 Gbps link&amp;lt;br/&amp;gt;&amp;lt;/small&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&amp;lt;!-- Admin: mirrormaster@ircam.fr --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Ircam.fr&lt;br /&gt;
|| [http://mirrors.ircam.fr/openvz/ http]&lt;br /&gt;
|| [ftp://mirrors.ircam.fr/pub/OpenVZ/ ftp]&lt;br /&gt;
|| [rsync://mirrors.ircam.fr/openvz/ rsync]&lt;br /&gt;
|| France, Paris&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
&amp;lt;!-- Admin: Chonpakorn Phongphisist &amp;lt;chonpakorn@yahoo.com&amp;gt;&lt;br /&gt;
COMMENTED OUT&lt;br /&gt;
|-&lt;br /&gt;
| YourConnect&lt;br /&gt;
|| [http://mirror.yourconnect.com/openvz/ http]&lt;br /&gt;
|| [ftp://mirror.yourconnect.com/openvz/ ftp]&lt;br /&gt;
|| [rsync://mirror.yourconnect.com::openvz rsync]&lt;br /&gt;
|| Thailand, Bangkok&lt;br /&gt;
|| &amp;lt;small&amp;gt;Bandwidth available: 1000Mb/s. Update Frequency: 6x daily.'''2010 Jan 26 outdated, has only rhel5 028stab064.4'''&amp;lt;/small&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&amp;lt;!-- Admin: admin@nobistech.net --&amp;gt;&lt;br /&gt;
&amp;lt;!-- DISABLED Jul 1 2013&lt;br /&gt;
|-&lt;br /&gt;
| Ubiquity Servers&lt;br /&gt;
|| [http://mirror.ubiquityservers.com/openvz/ http]&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
|| USA, Illinois, Chicago&lt;br /&gt;
||&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&amp;lt;!-- Admins: matsumoto@tsukuba.wide.ad.jp, Hiroki Ishikawa &amp;lt;ishikawa@tsukuba.wide.ad.jp&amp;gt; --&amp;gt;&lt;br /&gt;
&amp;lt;!-- DISABLED 30 Oct 2011, reenabled 1 Jul 2013 --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|| tsukuba.wide.ad.jp&lt;br /&gt;
|| [http://openvz.tsukuba.wide.ad.jp/ http]&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
|| Japan,　Ibaraki, Tsukuba&lt;br /&gt;
|| &amp;lt;small&amp;gt;Updated daily&amp;lt;/small&amp;gt;&lt;br /&gt;
&amp;lt;!-- Admins: Gustavo Gallas &amp;lt;gallas.ceo@homehost.com.br&amp;gt;, &amp;lt;support@copahost.com&amp;gt;&lt;br /&gt;
  DISABLED 29 Mar 2013: extremely slow&lt;br /&gt;
|-&lt;br /&gt;
|| copahost.com&lt;br /&gt;
|| [http://openvz.copahost.com/ http]&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
|| Germany&lt;br /&gt;
|| &amp;lt;small&amp;gt;Updated 4 times a day&amp;lt;/small&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&amp;lt;!-- Admins: dkuntz@netriplex.com, chale@netriplex.com --&amp;gt;&lt;br /&gt;
&amp;lt;!-- DISABLED 5 Feb 2014&lt;br /&gt;
|-&lt;br /&gt;
|| Netriplex.com&lt;br /&gt;
|| [http://openvz.mirror.netriplex.com http]&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
|| USA, North Carolina, Asheville&lt;br /&gt;
|| &amp;lt;small&amp;gt;Updated every 6 hours&amp;lt;/small&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&amp;lt;!-- Admin: info@it2go.eu&lt;br /&gt;
COMMENTED OUT&lt;br /&gt;
|-&lt;br /&gt;
|| IT2GO&lt;br /&gt;
|| [http://mirror.be.it2go.eu/openvz.org/ http]&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
|| Belgium (country) - Bruges (City) - DCO (Datacenter)&lt;br /&gt;
|| &amp;lt;small&amp;gt;updated every hour&amp;lt;/small&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&amp;lt;!-- Admin: info@it2go.eu&lt;br /&gt;
COMMENTED OUT&lt;br /&gt;
|-&lt;br /&gt;
|| IT2GO&lt;br /&gt;
|| [http://mirror.nl.it2go.eu/openvz.org/ http]&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
|| Netherlands (country) - Steenbergen (City) - Nedzone (Datacenter) &lt;br /&gt;
|| &amp;lt;small&amp;gt;updated every hour&amp;lt;/small&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&amp;lt;!-- Admin: info@it2go.eu&lt;br /&gt;
COMMENTED OUT&lt;br /&gt;
|-&lt;br /&gt;
|| IT2GO&lt;br /&gt;
|| [http://mirror.fr.it2go.eu/openvz.org/ http]&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
|| France (country) - Roubaix (City) - RBX01 (Datacenter) &lt;br /&gt;
|| &amp;lt;small&amp;gt;updated every hour&amp;lt;/small&amp;gt;&lt;br /&gt;
--&amp;gt; &lt;br /&gt;
&amp;lt;!-- Mirror admins: support@igsobe.com, John C. Young &amp;lt;jcy@igsobe.com&amp;gt; --&amp;gt;&lt;br /&gt;
&amp;lt;!-- DISABLED 8 Feb 2012: not up to date&lt;br /&gt;
|-&lt;br /&gt;
|| Internet Gateway of South Beach&lt;br /&gt;
|| [http://mirrors.igsobe.com/openvz/ http]&lt;br /&gt;
|| [ftp://mirrors.igsobe.com/openvz ftp]&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
|| USA, Florida, Miami&lt;br /&gt;
|| &amp;lt;small&amp;gt;Updated daily.   Link: 10 GB, from 7+ tier 1 carriers&amp;lt;/small&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&amp;lt;!-- Mirror Admin: mirror@steadfast.net --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|| Steadfast Networks&lt;br /&gt;
|| [http://mirror.steadfast.net/openvz/ http]&lt;br /&gt;
|| [ftp://mirror.steadfast.net/openvz/ ftp]&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
|| USA, IL, Chicago&lt;br /&gt;
|| &amp;lt;small&amp;gt;Sync Frequency: hourly&amp;lt;br/&amp;gt;This mirror is available via IPv4 and IPv6 and is on an uncapped gigabit line.&amp;lt;/small&amp;gt;&lt;br /&gt;
&amp;lt;!-- Mirror admin: mirror@europhase.net, thomas@europhase.net, david@europhase.net&lt;br /&gt;
  DISABLED 29 Mar 2013: DNS not resolvable&lt;br /&gt;
|-&lt;br /&gt;
|| Europhase UK&lt;br /&gt;
|| [http://mirror.europhase.net/openvz/ http]&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
|| United Kingdom, London&lt;br /&gt;
|| &amp;lt;small&amp;gt;1000mbit, updates each hour&amp;lt;/small&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&amp;lt;!-- Mirror admin: mirrors@123systems.net&lt;br /&gt;
COMMENTED OUT&lt;br /&gt;
|-&lt;br /&gt;
|| 123systems.net&lt;br /&gt;
|| [http://mirrors.123systems.net/openvz/ http]&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
|| USA, GA, Atlanta&lt;br /&gt;
|| &amp;lt;small&amp;gt;Updated hourly&amp;lt;/small&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&amp;lt;!-- Mirror admin: mirror@duomenucentras.lt --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|| balticservers.com&lt;br /&gt;
|| [http://mirror.duomenucentras.lt/openvz/ http]&lt;br /&gt;
|| [ftp://mirror.duomenucentras.lt/openvz ftp]&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
|| Lithuania, Šiauliai&lt;br /&gt;
|| &amp;lt;small&amp;gt;Updated every two hours&amp;lt;/small&amp;gt;&lt;br /&gt;
&amp;lt;!-- Mirror admin: john@interserver.net --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|| InterServer, Inc&lt;br /&gt;
|| [http://mirror.trouble-free.net/openvz/ http]&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
|| [rsync://mirror.trouble-free.net/openvz rsync]&lt;br /&gt;
|| USA, New Jersey, Secaucus&lt;br /&gt;
|| &amp;lt;small&amp;gt;100 mbps, updated 3 times per day&amp;lt;/small&amp;gt;&lt;br /&gt;
&amp;lt;!-- Mirror admin: admin@mirror.datacenter.by --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|| RUE Beltelecom&lt;br /&gt;
|| [http://mirror.datacenter.by/pub/download.openvz.org/ http]&lt;br /&gt;
|| [ftp://mirror.datacenter.by/pub/download.openvz.org/ ftp]&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
|| Belarus, Minsk&lt;br /&gt;
|| &amp;lt;small&amp;gt;2Gbps, http, ftp, rsync, @hourly&amp;lt;/small&amp;gt;&lt;br /&gt;
&amp;lt;!-- Mirror admin: www-admin@ftp.yz.yamagata-u.ac.jp&lt;br /&gt;
     DISABLED 22 Apr 2013: read error, connection reset by peer&lt;br /&gt;
|-&lt;br /&gt;
|| Yamagata University&lt;br /&gt;
|| [http://ftp.yz.yamagata-u.ac.jp/pub/openvz/ http]&lt;br /&gt;
|| [ftp://ftp.yz.yamagata-u.ac.jp/pub/openvz/ ftp]&lt;br /&gt;
|| [rsync://ftp.yz.yamagata-u.ac.jp/pub/openvz/ rsync]&lt;br /&gt;
|| Japan, Yamagata, Yonezawa&lt;br /&gt;
|| &amp;lt;small&amp;gt;1 Gbps, updated 4 times per day&amp;lt;/small&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&amp;lt;!-- Mirror admin: mirror@ihc.ru --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|| IHC.ru&lt;br /&gt;
|| [http://mirror.ihc.ru/download.openvz.org/ http]&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
|| Moscow, Russia&lt;br /&gt;
|| &amp;lt;small&amp;gt;1 Gbps, updated hourly&amp;lt;/small&amp;gt;&lt;br /&gt;
&amp;lt;!-- Mirror admin: support@thzhost.com --&amp;gt;&lt;br /&gt;
&amp;lt;!-- REMOVED 17 Apr 2015: not being updated&lt;br /&gt;
|-&lt;br /&gt;
|| THZ Hosting&lt;br /&gt;
|| [http://mirrors.thzhost.com/openvz/ http]&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
|| Bangkok, Thailand&lt;br /&gt;
|| &amp;lt;small&amp;gt;Updated every 4 hours&amp;lt;/small&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&amp;lt;!-- Admin: mirroradmin@adnettelecom.ro --&amp;gt;&lt;br /&gt;
&amp;lt;!-- DISABLED 8 Feb 2012: no files&lt;br /&gt;
|-&lt;br /&gt;
|| AdNet Telecom&lt;br /&gt;
|| [http://mirrors.adnettelecom.ro/openvz/ http]&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
|| Romania, Bucharest&lt;br /&gt;
|| &amp;lt;small&amp;gt;Updated every 45 minutes, 2gbps etherchannel&amp;lt;/small&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&amp;lt;!-- Admins: webmaster@ellogroup.com, Anthony Somerset &amp;lt;anthony@somersettechsolutions.co.uk&amp;gt;&lt;br /&gt;
COMMENTED OUT 12 Mar 2013&lt;br /&gt;
|-&lt;br /&gt;
|| Ello Group&lt;br /&gt;
|| [http://mirror.ellogroup.com/openvz/ http]&lt;br /&gt;
|| [ftp://mirror.ellogroup.com/openvz ftp]&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
|| Newcastle, UK&lt;br /&gt;
|| &amp;lt;small&amp;gt;Updated hourly&amp;lt;/small&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&amp;lt;!-- Admin: mirrors@apollo-hw.ro&lt;br /&gt;
 DISABLED 26 Nov 2012&lt;br /&gt;
|-&lt;br /&gt;
|| Apollo Hardware&lt;br /&gt;
|| [http://lnx.apollo-hw.ro/openvz http]&lt;br /&gt;
|| [ftp://lnx.apollo-hw.ro/openvz ftp]&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
|| Romania, Timisoara&lt;br /&gt;
|| &amp;lt;small&amp;gt;Updated every 2 hours&amp;lt;/small&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&amp;lt;!-- Admin: Chonpakorn Phongphisist &amp;lt;chonpakorn@yahoo.com&amp;gt;&lt;br /&gt;
 DISABLED 26 Nov 2012&lt;br /&gt;
|-&lt;br /&gt;
|| YourConnect Co.,Ltd.&lt;br /&gt;
|| [http://mirror.yourconnect.com/openvz http]&lt;br /&gt;
|| [ftp://mirror.yourconnect.com/openvz ftp]&lt;br /&gt;
|| [rsync://mirror.yourconnect.com::openvz rsync]&lt;br /&gt;
|| Thailand, Bangkok&lt;br /&gt;
|| &amp;lt;small&amp;gt;Updated 6x daily&amp;lt;/small&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&amp;lt;!-- Admin: brijesh@softaculous.com --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|| Softaculous&lt;br /&gt;
|| [http://mirror.softaculous.com/openvz/ http]&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
|| Germany&lt;br /&gt;
|| &amp;lt;small&amp;gt;Updated once a day&amp;lt;/small&amp;gt;&lt;br /&gt;
&amp;lt;!-- Admin: mirror@fdcservers.net &lt;br /&gt;
Not working as of 9/11/17&lt;br /&gt;
|-&lt;br /&gt;
|| FDCServers.net&lt;br /&gt;
|| [http://mirror.fdcservers.net/openvz/ http]&lt;br /&gt;
|| [ftp://mirror.fdcservers.net/openvz/ ftp]&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
|| USA, Illinois, Chicago&lt;br /&gt;
|| &amp;lt;small&amp;gt;Updated every 2 hours&amp;lt;/small&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&amp;lt;!-- Admin: mirroradmin@secureax.com --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|| SecureAX Internet&lt;br /&gt;
|| [http://mirror.secureax.com/openvz/ http]&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
|| Singapore&lt;br /&gt;
|| &amp;lt;small&amp;gt;Updated daily at 2359hrs GMT+8&amp;lt;/small&amp;gt;&lt;br /&gt;
&amp;lt;!-- Admin: mir-adm@bofh.so&lt;br /&gt;
 DISABLED 26 Nov 2012&lt;br /&gt;
|-&lt;br /&gt;
|| BOFH.so&lt;br /&gt;
|| [http://mirror.bofh.so/download.openvz.org/ http]&lt;br /&gt;
|| [ftp://mirror.bofh.so/download.openvz.org/ ftp]&lt;br /&gt;
|| [rsync://mirror.bofh.so/download.openvz.org/ rsync]&lt;br /&gt;
|| France, Paris&lt;br /&gt;
|| &amp;lt;small&amp;gt;Updated hourly, 100 mbps, IPv6&amp;lt;/small&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&amp;lt;!-- Admin: info@abdicar.com --&amp;gt;&lt;br /&gt;
&amp;lt;!-- NOT WORKING as of Jan 17 2014&lt;br /&gt;
|-&lt;br /&gt;
|| Abdicar&lt;br /&gt;
|| [http://mirrors.abdicar.com/OpenVZ http]&lt;br /&gt;
|| [ftp://mirrors.abdicar.com/OpenVZ ftp]&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
|| Costa Rica, Heredia&lt;br /&gt;
|| &amp;lt;small&amp;gt;updated hourly&amp;lt;/small&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&amp;lt;!-- Admin: info@just-hosting.ru --&amp;gt;&lt;br /&gt;
&amp;lt;!-- DISABLED 7 Jan 2015: not updated; reenabled 8 Jan 2015 --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|| JustHosting&lt;br /&gt;
|| [http://openvz.just-hosting.ru/ http]&lt;br /&gt;
|| [ftp://openvz.just-hosting.ru/ ftp]&lt;br /&gt;
|| [rsync://openvz.just-hosting.ru/openvz rsync]&lt;br /&gt;
|| Germany, Falkenstein&lt;br /&gt;
|| &amp;lt;small&amp;gt;Connected at 1 Gbit link, hourly updates&amp;lt;/small&amp;gt;&lt;br /&gt;
&amp;lt;!-- Admin: admin@hitme.pl --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|| HitMe.pl&lt;br /&gt;
|| [http://openvz.hitme.net.pl/ http]&lt;br /&gt;
|| [ftp://openvz.hitme.net.pl/openvz/ ftp]&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
|| Poland, Gdansk&lt;br /&gt;
|| &amp;lt;small&amp;gt;Link 100 Mbit, updated hourly&amp;lt;/small&amp;gt;&lt;br /&gt;
&amp;lt;!-- Admin: admin@nlab.su--&amp;gt;&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
|-&lt;br /&gt;
|| nlab.su&lt;br /&gt;
|| [http://mirrors.nlab.su/openvz/ http]&lt;br /&gt;
|| [ftp://mirrors.nlab.su/pub/openvz ftp]&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
|| Russia, Moscow&lt;br /&gt;
|| &amp;lt;small&amp;gt;Link 100 Mbit, updated hourly&amp;lt;/small&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&amp;lt;!-- Admin: info@mjwebhosting.nl --&amp;gt;&lt;br /&gt;
&amp;lt;!-- DISABLED 26 Nov 2012, REENABLED 25 Mar 2013, DISABLED/ENABLED 24 Mar 2014, DISABLED 7 Jan 2015, ENABLED 29 Jan 2015 --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|| Mj webhosting&lt;br /&gt;
|| [http://mirror.serverbeheren.nl/openvz http]&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
|| Netherlands, Overijssel, Enschede&lt;br /&gt;
|| &amp;lt;small&amp;gt;Updated every hour. Available on ipv4 and ipv6. 1 gbit uplink&amp;lt;/small&amp;gt;&lt;br /&gt;
&amp;lt;!-- Admin: admin@kisiek.net, added 26 Nov 2012&lt;br /&gt;
  DISABLED 22 Apr 2013&lt;br /&gt;
|-&lt;br /&gt;
|| kisiek.net&lt;br /&gt;
|| [http://mirror.kisiek.net/openvz/ http]&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
|| Poland, Olsztyn&lt;br /&gt;
|| &amp;lt;small&amp;gt;Updated every hour&amp;lt;/small&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&amp;lt;!-- Admin: support@spd.co.il, added 26 Nov 2012 &lt;br /&gt;
Not working as of 9/11/17&lt;br /&gt;
|-&lt;br /&gt;
|| spd.co.il&lt;br /&gt;
|| [http://openvz.spd.co.il/ http]&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
|| Israel, Rishon letzion&lt;br /&gt;
|| &amp;lt;small&amp;gt;Updated every hour, 100 mbit link&amp;lt;/small&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&amp;lt;!-- Admin: contact@digipower.vn, duchoang@digipower.vn, added 26 Nov 2012&lt;br /&gt;
     REMOVED 17 Apr 2015, not being updated since about June 2014.&lt;br /&gt;
|-&lt;br /&gt;
|| DIGIPOWER Co.,ltd&lt;br /&gt;
|| [http://mirrors.digipower.vn/openvz http]&lt;br /&gt;
|| [ftp://mirrors.digipower.vn/openvz ftp]&lt;br /&gt;
|| [rsync://mirrors.digipower.vn::openvz rsync]&lt;br /&gt;
|| VietNam&lt;br /&gt;
|| &amp;lt;small&amp;gt;Updated 2 times a day&amp;lt;/small&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&amp;lt;!-- Admin: complain@fastvps.ru, added 26 Nov 2012, removed 21 Oct 2014 --&amp;gt;&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
|-&lt;br /&gt;
|| fastvps.ru&lt;br /&gt;
|| [http://mirror.fastvps.ru/openvz/ http]&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
|| Germany, Falkenstein, DC: Hetzner Online AG&lt;br /&gt;
|| &amp;lt;small&amp;gt;Updated hourly&amp;lt;/small&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&amp;lt;!-- Admin: hostmaster@tocici.com, added 26 Nov 2012 --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|| tocici.com&lt;br /&gt;
|| [http://mirror.tocici.com/openvz/ http]&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
|| US, Oregon, Portland&lt;br /&gt;
|| &amp;lt;small&amp;gt;Updated every four hours, with a randomized start time. Two 1Gbps uplinks leveraging dual-stack IPv4/IPv6.&amp;lt;/small&amp;gt;&lt;br /&gt;
&amp;lt;!-- Admin: Shane Langley &amp;lt;shane@webtastix.net&amp;gt;, added 15 Jan 2013 --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|| Webtastix Internet Services&lt;br /&gt;
|| [http://mirror.webtastix.net/openvz/ http]&lt;br /&gt;
|| [ftp://mirror.webtastix.net/openvz/ ftp]&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
|| New Zealand, Auckland&lt;br /&gt;
|| &amp;lt;small&amp;gt;Updated hourly&amp;lt;/small&amp;gt;&lt;br /&gt;
&amp;lt;!-- Admin: mirrors@colocall.net --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|| Colocall Internet Data Center&lt;br /&gt;
|| [http://ftp.colocall.net/pub/openvz/ http]&lt;br /&gt;
|| [ftp://ftp.colocall.net/pub/openvz/ ftp]&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
|| Ukraine, Kiev&lt;br /&gt;
|| &amp;lt;small&amp;gt;updated hourly&amp;lt;/small&amp;gt;&lt;br /&gt;
&amp;lt;!-- Admin: Arūnas Ulinskas &amp;lt;arunas.u@iv.lt&amp;gt; --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|| Interneto Vizija&lt;br /&gt;
|| [http://openvz.mirror.serveriai.lt/ http]&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
|| Lithuania, Vilnius&lt;br /&gt;
|| &amp;lt;small&amp;gt;updated hourly&amp;lt;/small&amp;gt;&lt;br /&gt;
&amp;lt;!-- Admin: info@ionic.pl --&amp;gt;&lt;br /&gt;
&amp;lt;!-- DISABLED 5 Feb 2014&lt;br /&gt;
|-&lt;br /&gt;
|| Ionic&lt;br /&gt;
|| [http://ovz.ionic.net.pl http]&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
|| Poland, Kraków&lt;br /&gt;
|| &amp;lt;small&amp;gt;updated every 24 h&amp;lt;/small&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&amp;lt;!-- Admin: lug@ustc.edu.cn --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|| University of Science and Technology of China&lt;br /&gt;
|| [http://mirrors.ustc.edu.cn/openvz/ http]&lt;br /&gt;
|| [ftp://mirrors.ustc.edu.cn/openvz/ ftp]&lt;br /&gt;
|| [rsync:mirrors.ustc.edu.cn::openvz rsync]&lt;br /&gt;
|| Hefei, Anhui, China&lt;br /&gt;
|| &amp;lt;small&amp;gt;updated every 6 hours&amp;lt;/small&amp;gt;&lt;br /&gt;
&amp;lt;!-- Admin: mirror-admin@vinahost.vn  Added 12 Aug 2013 --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|| VinaHost Co., Ltd&lt;br /&gt;
|| [http://mirrors.vinahost.vn/openvz/ http]&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
|| Ho Chi Minh City, Viet Nam&lt;br /&gt;
|| &amp;lt;small&amp;gt;Updated hourly&amp;lt;/small&amp;gt;&lt;br /&gt;
&amp;lt;!-- Admin: mirrors@neterra.net --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|| Neterra LTD&lt;br /&gt;
|| [http://mirrors.neterra.net/openvz http]&lt;br /&gt;
|| [ftp://mirrors.neterra.net/openvz ftp]&lt;br /&gt;
|| [rsync://mirrors.neterra.net/rsync rsync]&lt;br /&gt;
|| Bulgaria, Sofia&lt;br /&gt;
|| &amp;lt;small&amp;gt;IPv6 enabled, 2 gbps link, Updated hourly&amp;lt;&amp;lt;/small&amp;gt;&lt;br /&gt;
&amp;lt;!-- Admin: ovzmirror@mrkva.eu --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|| vpsFree.cz&lt;br /&gt;
|| [http://mirror.vpsfree.cz/openvz http]&lt;br /&gt;
|| [ftp://mirror.vpsfree.cz/openvz ftp]&lt;br /&gt;
|| [rsync://mirror.vpsfree.cz/openvz rsync]&lt;br /&gt;
|| Czech, Prague&lt;br /&gt;
|| &amp;lt;small&amp;gt;Updated hourly&amp;lt;/small&amp;gt;&lt;br /&gt;
&amp;lt;!-- Admin: Satanun Siwaporn &amp;lt;satanun@bangmodhosting.com&amp;gt; --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|| BangmodEnterprise Co., Ltd.&lt;br /&gt;
|| [http://mirrors.bangmodhosting.com/openvz http]&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
|| Thailand, Bangkok&lt;br /&gt;
|| &amp;lt;small&amp;gt;updated every 4 hours&amp;lt;/small&amp;gt;&lt;br /&gt;
&amp;lt;!-- Admin: mirrors@maeh.org --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|| maeh.org&lt;br /&gt;
|| [http://mirror.maeh.org/openvz/ http]&lt;br /&gt;
|| [ftp://mirror.maeh.org/openvz/ ftp]&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
|| Germany, Hamburg&lt;br /&gt;
|| &amp;lt;small&amp;gt;updated hourly&amp;lt;/small&amp;gt;&lt;br /&gt;
&amp;lt;!-- Admin: support@scalabledns.com --&amp;gt;&lt;br /&gt;
&amp;lt;!-- DISABLED 7 Jan 2015: not working, re-enabled 8 Jan 2015 with changed URL --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|| scalabledns.com&lt;br /&gt;
|| [http://mirror2.scalabledns.com/openvz http]&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
|| USA, California, Los Angeles&lt;br /&gt;
|| &amp;lt;small&amp;gt;10 Gbps Uplink, updated hourly&amp;lt;/small&amp;gt;&lt;br /&gt;
&amp;lt;!-- Admin: NOCops at GloVine.com.au --&amp;gt;&lt;br /&gt;
&amp;lt;!-- DEAD as of Jan 21 2014&lt;br /&gt;
|-&lt;br /&gt;
|| GloVine.com.au&lt;br /&gt;
|| [http://openvz.syd.au.glomirror.com.au http]&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
|| Australia, Sydney&lt;br /&gt;
|| &amp;lt;small&amp;gt;updated every 6 hours&amp;lt;/small&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&amp;lt;!-- Admin:  mirrors AT glovine.com.au --&amp;gt;&lt;br /&gt;
&amp;lt;!-- NOT WORKING as of Jan 17 2014 &lt;br /&gt;
|-&lt;br /&gt;
|| GloVine.com.au&lt;br /&gt;
|| [http://openvz.dal.tx.us.glomirror.com.au http]&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
|| USA, Texas, Dallas&lt;br /&gt;
|| &amp;lt;small&amp;gt;updated every 6 hours&amp;lt;/small&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&amp;lt;!-- Admin: mirrors AT glovine.com.au --&amp;gt;&lt;br /&gt;
&amp;lt;!-- NOT WORKING as of Jan 17 2014 &lt;br /&gt;
|-&lt;br /&gt;
|| GloVine.com.au&lt;br /&gt;
|| [http://openvz.kan.mo.us.glomirror.com.au http]&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
|| USA, Missouri, Kansas City&lt;br /&gt;
|| &amp;lt;small&amp;gt;updated every 6 hours&amp;lt;/small&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&amp;lt;!-- Admin: Dang Duc Thinh &amp;lt;thinhdd@nhanhoa.com.vn&amp;gt; --&amp;gt;&lt;br /&gt;
&amp;lt;!-- DISABLED 28 Jan 2015 -- not updated since 02 Jan&lt;br /&gt;
|-&lt;br /&gt;
|| Nhan Hoa Co., Ltd&lt;br /&gt;
|| [http://mirror.nhanhoa.com/openvz/ http]&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
|| Vietnam, Ha Noi&lt;br /&gt;
|| &amp;lt;small&amp;gt;100 mbps, updated 4 times a day&amp;lt;/small&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&amp;lt;!-- Admin: info@ausnetservers.net.au, noc@ausnetservers.net.au --&amp;gt;&lt;br /&gt;
&amp;lt;!-- NOT UPDATED as of Jan 17 2014&lt;br /&gt;
|-&lt;br /&gt;
|| ausnetservers.net.au&lt;br /&gt;
|| [http://openvz.ansamirror.com.au http]&lt;br /&gt;
|| [ftp://openvz.ansamirror.com.au ftp]&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
|| Australia, Victoria, Ballarat&lt;br /&gt;
|| &amp;lt;small&amp;gt;updated hourly&amp;lt;/small&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&amp;lt;!-- Admin: eeroalk@netinch.com --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|| netinch.com&lt;br /&gt;
|| [http://mirror.netinch.com/pub/openvz/ http]&lt;br /&gt;
|| [ftp://mirror.netinch.com/pub/openvz/ ftp]&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
|| Finland, Tampere&lt;br /&gt;
|| &amp;lt;small&amp;gt;&amp;lt;/small&amp;gt;&lt;br /&gt;
&amp;lt;!-- Admin: hostmaster@nodeload.net &lt;br /&gt;
Not working as of 9/11/17&lt;br /&gt;
|-&lt;br /&gt;
|| cenexo.com&lt;br /&gt;
|| [http://mirror.lon.cenexo.com/openvz/ http]&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
|| UK, London&lt;br /&gt;
|| &amp;lt;small&amp;gt;1 Gbps Uplink, updated hourly, RAID 10 SSD based&amp;lt;/small&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&amp;lt;!-- Admin:  mirroradmin@hostingdept.co.uk&lt;br /&gt;
Not working as of 9/11/17&lt;br /&gt;
|-&lt;br /&gt;
|| Hosting Dept&lt;br /&gt;
|| [http://mirror.hdcore.eu/openvz/ http]&lt;br /&gt;
|| [ftp://mirror.hdcore.eu/openvz/ ftp]&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
|| France, Roubaix&lt;br /&gt;
|| &amp;lt;small&amp;gt;Updated hourly. Fail-over cluster in London, England.&amp;lt;/small&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&amp;lt;!-- Admin: bank@bestinternet.co.th --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|| Best Thai Host&lt;br /&gt;
|| [http://mirrors.bestthaihost.com/openvz/ http]&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
||  Bangkok, Thailand&lt;br /&gt;
|| &amp;lt;small&amp;gt;1 Gbps, updated every 4 hours&amp;lt;/small&amp;gt;&lt;br /&gt;
&amp;lt;!-- Admin: asm67xg@gmx.us (Forwards to 3 people) --&amp;gt;&lt;br /&gt;
&amp;lt;!-- DISABLED 28 Jan 2015, not being updated&lt;br /&gt;
|-&lt;br /&gt;
|| FirstNetServ&lt;br /&gt;
|| [http://ovzmirror1.firstnetserv.co.uk/openvz http]&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
|| France, Orleans&lt;br /&gt;
|| &amp;lt;small&amp;gt;updated hourly, up to 2 Gbps&amp;lt;/small&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&amp;lt;!-- Admin: daniel@glovine.com.au --&amp;gt;&lt;br /&gt;
&amp;lt;!-- DISABLED 15 Oct 2014 -- not being updated&lt;br /&gt;
|-&lt;br /&gt;
|| GloVine.com.au&lt;br /&gt;
|| [http://openvz.nsw.au.glomirror.com.au/ http]&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
|| Australia, Sydney&lt;br /&gt;
|| &amp;lt;small&amp;gt;updated hourly&amp;lt;/small&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&amp;lt;!-- Admin: Damien Burke &amp;lt;damien@supremebytes.com&amp;gt; --&amp;gt;&lt;br /&gt;
&amp;lt;!-- DISABLED 7 Jan 2015: not being updated; reenabled 8 Jan 2015 &lt;br /&gt;
Not working as of 9/11/17&lt;br /&gt;
|-&lt;br /&gt;
|| supremebytes.com&lt;br /&gt;
|| [http://mirror.supremebytes.com/openvz/ http]&lt;br /&gt;
|| [ftp://mirror.supremebytes.com/openvz ftp]&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
|| USA, California, Los Angeles&lt;br /&gt;
|| &amp;lt;small&amp;gt;updated every 6 hours&amp;lt;/small&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&amp;lt;!-- Admin: mirrors@mindstudios.com --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|| mindstudios.com&lt;br /&gt;
|| [http://openvz.mindstudios.com http]&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
|| Paris, France&lt;br /&gt;
|| &amp;lt;small&amp;gt;1000 mbit, 150mbit guaranteed, updated hourly&amp;lt;/small&amp;gt;&lt;br /&gt;
&amp;lt;!-- Admin:  marz.michael@openres.net &lt;br /&gt;
Not working as of 9/11/17&lt;br /&gt;
|-&lt;br /&gt;
|| sciserv.eu&lt;br /&gt;
|| [http://openvz.sciserv.eu http]&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
|| Frankfurt, Germany&lt;br /&gt;
|| &amp;lt;small&amp;gt;Updated daily&amp;lt;/small&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&amp;lt;!-- Admin: bok@slaskdatacenter.pl --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|| slaskdatacenter.pl&lt;br /&gt;
|| [http://openvz.slaskdatacenter.com/ http]&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
|| Tarnowskie Gory, Slask, Poland&lt;br /&gt;
|| &amp;lt;small&amp;gt;Updated hourly&amp;lt;/small&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
&amp;lt;!-- Admin: mirroradmin@nexcess.net&lt;br /&gt;
Not working as of 9/11/17&lt;br /&gt;
|-&lt;br /&gt;
|| nexcess.net&lt;br /&gt;
|| [http://mirror.nexcess.net/openvz/ http]&lt;br /&gt;
|| [ftp://mirror.nexcess.net/openvz/ ftp]&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | —&lt;br /&gt;
|| USA, Michigan, Southfield&lt;br /&gt;
|| &amp;lt;small&amp;gt;Updated hourly, link 1 Gbps&amp;lt;/small&amp;gt; &lt;br /&gt;
--&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Create a mirror ==&lt;br /&gt;
&lt;br /&gt;
If you want to mirror OpenVZ site, see [[Setting up a mirror]].&lt;br /&gt;
&lt;br /&gt;
[[Category: Installation]]&lt;br /&gt;
[[Category: Infrastructure]]&lt;br /&gt;
[[Category: Download]]&lt;/div&gt;</summary>
		<author><name>Vvs</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.openvz.org/index.php?title=Hosting_providers&amp;diff=23343</id>
		<title>Hosting providers</title>
		<link rel="alternate" type="text/html" href="https://wiki.openvz.org/index.php?title=Hosting_providers&amp;diff=23343"/>
		<updated>2020-07-22T06:28:39Z</updated>

		<summary type="html">&lt;p&gt;Vvs: re-sorting in India section&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''OpenVZ is free and open implementation of Virtuozzo containers for Linux.&lt;br /&gt;
Don't forget to keep [[testimonials|testimonial]] and [[donate]] to OpenVZ.'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
OpenVZ makes for a great hosting platform for VPS hosting. The providers below offer VPS services using OpenVZ.&lt;br /&gt;
&lt;br /&gt;
[[File:UsageLocation.svg]]&lt;br /&gt;
&lt;br /&gt;
= OpenVZ hosting providers =&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- @@@@@@@@@@@@@@@@@@@@@@@&lt;br /&gt;
&lt;br /&gt;
IF YOU EDIT THIS PAGE,  PLEASE OBEY TO THE FOLLOWING RULES:&lt;br /&gt;
&lt;br /&gt;
1. Keep your record on ONE line&lt;br /&gt;
2. Keep the list of providers alphabetically sorted, DO NOT insert your record on top.&lt;br /&gt;
3. Keep the list of countries alphabetically sorted as well.&lt;br /&gt;
&lt;br /&gt;
     @@@@@@@@@@@@@@@@@@@@@@@@ --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Andorra ==&lt;br /&gt;
* [https://www.actiu.net/pro/ Actiu informatica] amb servidors dins i fora del principat.&lt;br /&gt;
&lt;br /&gt;
== Argentina ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.fulltech.com.ar/ Full Tech Solutions] Specializes in the virtualization of OpenVZ &amp;amp; Virtuozzo containers, installed in the Full Tech Solutions Data Center located in Villa Elisa, Entre Rios Argentina.  It also offers services hosted in the United States, Netherlands and Germany&lt;br /&gt;
* [http://www.g2khosting.com/ G2K Hosting] offer OpenVZ containers with high level hardware technology from 25 US with Control Panel, various Linux Dists and full support.&lt;br /&gt;
* [https://hostingplus.com.ar/ HostingPlus Argentina] provide OpenVZ containers at our own datacenter in South America with triple internet provider. Starting from  us20/month&lt;br /&gt;
* [https://ibumu.com/ Ibumu] Best containers for wordpress starting from $5.5.&lt;br /&gt;
* [http://www.ihserver.net/ IHServer] Specialized virtualization on OpenVZ containers at Gigared datacenter. We have in Argentina one of the better fiber connection to the US, but also provides services from LSTN in Texas.&lt;br /&gt;
* [https://www.infranetworking.com.ar/ Infranetworking] All our Cloud VPS container solutions for Argentine customers are powered by the all mighty OpenVZ virtualization software.&lt;br /&gt;
* [https://www.neolo.com/ Neolo] provide OpenVZ containers at our own datacenter in South America with double internet provider. Choose your Linux OS and apps. Full support.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [http://www.wiredhosting.com.ar/ WiredHosting] offer XEN and OpenVZ containers with SSD drives, cloudflare security and weekly backups to protect your information. Phone and Helpdesk support. &lt;br /&gt;
&lt;br /&gt;
== Australia == &lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.auhost4u.com/ AUHost4u] - VPS Solutions provided from our D.C. in Sydney.&lt;br /&gt;
* [https://www.conetix.com.au/ Conetix Hosting] Specialising in business grade, fully managed Virtuozzo containers with Virtuzzo Cloud Storage. 100% Australian owned and operated. Brisbane based DC with Enterprise Dell servers.&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides self-managed OpenVZ based SSD VPS located at Equinix SY3 in Sydney, one of the best and well-connected datacenters in the region.&lt;br /&gt;
* [http://www.vpsfast.us/australia-cloud-server VPSFast] - VPS Provider with good prices in Australia.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Austria ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
* [https://kapper.net/ kapper.net] kapper.net offers OpenVZ and Virtuozzo (and other HyperVisors) based server-solutions with kind support and 24x7 maintenance.&lt;br /&gt;
* [https://mdhost.eu/vserver.php MDHost.eu] New Hosting Provider with nice Prices and many Server locations. Austria, Germany, France and more.&lt;br /&gt;
* [https://www.snb.at/ SNB] offers OpenVZ containers and support's also existing vm's in customers environment&lt;br /&gt;
* [https://www.waveride.at/ Waveride] Waveride, an EDIS company, offers budget full gigabit OpenVZ + solusVM VPS in Austria, USA and the Netherlands&lt;br /&gt;
* [http://www.vpsfast.us/austria-cloud-server VPSFast] - VPS Provider with good prices in Austria.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Brazil ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.datacorporate.com.br/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [http://www.globalmedia.com.br/ GlobalMedia] We offers OpenVZ containers hosted on a very fast network with fast setup. Ubuntu, Debian, CentOS.&lt;br /&gt;
* [http://www.host1plus.com.br/ Host1Plus] Servers hosted in São Paulo. We offering reliable and secure OpenVZ VPS Servers with 99.99% up-time, starting from $5.00 per month.&lt;br /&gt;
* [http://www.ipdeck.net/ IPDECK] VPS Linux server from R$15,00/month! Fully customizable according to your needs.&lt;br /&gt;
* [https://www.quantivehost.com.br/ QuantiveHost] VPS Linux with 99.99% uptime. Prices starting from R$ 29,35.&lt;br /&gt;
* [https://www.elevahost.com.br/ Eleva host] Server hosted in Brazil. The best support.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [https://www.ferenz.com.br/ Ferenz Networks] VPS Linux with best support. Prices starting from R$ 29,90.&lt;br /&gt;
&lt;br /&gt;
== Bulgaria ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.cloudhostinghub.com Offshore VPS Hsoting] CloudHostingHub.com is an [https://www.cloudhostinghub.com Cloud Offshore VPS Hosting] located in Buglaria. They provide both OpenVZ and KVM virtualization. CloudHostingHub.com is known for the high privacy protection , performance and stability.&lt;br /&gt;
* [https://www.cyberhour.com CyberHour.com] CyberHour.com is an [https://www.cyberhour.com offshore VPS hosting] provider located in Europe. The provide blazing fast servers and premium Bandwidth of 200Mbps. With high privacy protection.&lt;br /&gt;
* [https://www.linuxssdvps.com Bulgaria VPS] Linux SSD VPS is an [https://www.linuxssdvps.com offshore VPS hosting] provider located in Sofia, Bulgaria. Privacy is very respected and anonymous registrations are allowed, as well as payments via Bitcoin / PayPal.&lt;br /&gt;
* [http://www.webuzo.net Bulgaria VPS] Webuzo Network is an offshore SSD VPS hosting provider located in Bulgaria. Privacy is very respected and anonymous registrations are allowed, as well as payments via Bitcoin / PayPal.&lt;br /&gt;
* [https://vpsbg.eu/en Bulgaria VPS] VPSBG.eu is an offshore SSD VPS hosting provider located in Sofia, Bulgaria. Privacy is very respected and anonymous registrations are allowed, as well as payments via Bitcoin.&lt;br /&gt;
* [http://www.bul.net/ Bul.net] Provides OpenVZ based VPS, perfect user/VPS management via [http://ispsystem.com VDSManager]. Instant creation after online payment. Debian/Ubuntu/CentOS with ISPManager Control panel. Optimal price policy.&lt;br /&gt;
* [http://www.cointech.eu/vps-hosting/ CoInTech] provides OpenVZ based VPS containers, free webmin managment. Containers can be CentOS, Slackware, Ubuntu, custom or our special [http://www.mandriva.com Mandriva Linux] container with own [http://mandriva.cointech.net repository].&lt;br /&gt;
* [http://www.rax.bg/ RAX.bg] Offers OpenVZ based VPS, hosted on a clustered infrastructure and redundant network. Easy to use user management, Instant setup, CentOS (OS).&lt;br /&gt;
* [http://www.jump.bg/ Jump.bg] Provides OpenVZ VPS servers hosted on a redundant network which provides a very easy to manage platform for all clients which gain instant access to their OS ( Ubuntu, CentOS , Debian etc ... )&lt;br /&gt;
* [https://www.fitvps.com/ FitVPS.com] Offers affordable and reliable OpenVZ based VPS in Varna, Bulgaria. Own data center, own multihomed network, with SLA. Instant automatic setup, SolusVM control panel.&lt;br /&gt;
* [http://www.qhoster.com/ QHoster.com] Instant activation OpenVZ VPS in UK, USA, Germany, France and Switzerland. Both 32/64 bit OpenVZ OS VPS templates : CentOS 5/6, Debian 6/7, Ubuntu 12/13.&lt;br /&gt;
* [https://www.verdina.net Verdina.NET] Verdina.net offers dedicated hosting services, provided by powerful dell hardware. Servers are located in Telepoint Datacenter, a Tier 3 DC located in Sofia, Bulgaria.&lt;br /&gt;
* [https://www.vps.ag/ VPS.AG] Affordable and reliable OpenVZ VPS based in Sofia, Bulgaria. Instant setup and 24/7 support.&lt;br /&gt;
* [http://www.vpsfast.us/bulgaria-vps VPSFast] - VPS Provider with good prices in Bulgaria.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Canada ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://4goodhosting.com/linux-vps-hosting 4GooodHosting] - Canadian OpenVZ VPS Servers, Starting from  $18.99/month SSD,. Canada VPS hosting in three different Canadian Data Centers with nightly backups.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [https://whc.ca/canadian-cloud-servers Web Hosting Canada Cloud Servers] - Powerful Cloud servers powered by OpenVZ and located in Canadian datacenters, with fast RAID-10 storage, fully managed with cPanel.&lt;br /&gt;
* [http://compevo.com compevo Clustered VPS Server Hosting Provider] - We offer clustered VPS Servers to avoid downtime and dataloss. Our network and service is second to none and is used by businesses around the world.&lt;br /&gt;
* [http://www.datacorporate.ca/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [https://www.delimiter.com/storage-vps/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [https://www.miditech.com/ MidiTech Hosting Canada] VPS hosting offered by MidiTech Canada are powered by VMware, . Fully Managed VPS with control panels&lt;br /&gt;
* [http://www.gotekky.com Gotekky Cloud VPS Hosting] High quality Cloud VPS packages powered by our own infrastructure and network in Toronto. Scalable from our $5/mo plan all the way to your own dedicated cloud server. Based on OpenVZ and our own proprietary panel.&lt;br /&gt;
* [https://gigebox.com GIGEBOX.COM] GIGEBOX are expert providers of secure business hosting services, we operate high-performance professional servers, specially designed for businesses, powered by the Intel(R) Xeon(R) Hexa-Core CPU Processors and 128 GB DDR3 minimum RAM. Enjoy high availability, performance and security for multiple uses.&lt;br /&gt;
* [http://www.letstalkdigital.com/index.php?option=com_content&amp;amp;view=article&amp;amp;id=73&amp;amp;Itemid=65 LetsTalkDigital VPS Hosting] LetsTalkDigital.com offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from $14.99. Virtual Private Server (VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://secure.media-hosts.com/link.php?id=7 Media-Hosts.com] Provides Quality and Scalable OpenVZ based Virtual Private Servers. 100% network uptime guaranteed. Located in Montreal Quebec with 5 Tier1 upstream providers.&lt;br /&gt;
* [http://www.openvz.ca OpenVZ.ca] Canadian Budget VPS Servers on OpenVZ Platform. &lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [http://protoserver.com ProtoServer] Advanced VPS Hosting from $4.95/month. Many pre-installed VPS Templates available (CMS, E-commerce, Web development, Online community, Media streaming, etc.) No bundles or service plans - mix VPS resources as needed and change VPS configuration anytime. Also offering DNS Hosting, E-mail hosting, Domains Registration.&lt;br /&gt;
* [http://www.vistapages.com/vps Vistapages VPS] - IBM &amp;amp; Dell Hardware. MCI/Verizon Backbone. Distros: Centos, Fedora, Debian &amp;amp; more. Full management available. Located in Toronto.&lt;br /&gt;
* [http://vpsville.ca/ VPSVille] - Good network. Good CPU. Good choice of distros: Centos, Fedora, Debian, Ubuntu, Slackware, Gentoo, OpenSUSE, CERN. My favorite OpenVZ provider. [mailto:jak@isp2dial.com John Kelly]&lt;br /&gt;
* [http://solib.ca/services-offerts/hebergement-haute-vitesse/serveurs-vps/ SOLIB Logiciel Libre Québec] Our company offers DDoS protected server solutions including OpenVZ containers. Very high availability and reliability, all our VPS are located in Quebec, Canada.&lt;br /&gt;
* [https://www.host-stage.net/linux-vps/ HostStage - Linux VPS] - Simple, Reliable OpenVZ VPS packed with 1 GBPS port speed, RAID 10 SSD, Intel Xeon CPU, DDoS Protection from $4.95/month&lt;br /&gt;
* [https://undergroundprivate.com/russiaoffshorevps.html  UndergroundPrivate.com] - OpenVZ with highly privacy, offshore , DMCA ignored , high confidence, SolusVM and cPanel, managed and non managed service.&lt;br /&gt;
* [http://www.vpsfast.us/canada-vps VPSFast] - VPS Provider with good prices in Canada.&lt;br /&gt;
* [https://websavers.ca/canadian-vps-hosting Websavers Inc in Halifax] - VZ containers priced by the resource. Resource changes entirely client-level.&lt;br /&gt;
* [https://www.yoorshop.fr/hosting-ssd-vps-usa-canada.php YOORshop SAS] - High performance NVMe SSD Linux VPS in Canada, daily backup included. Starting from €7,49 /month&lt;br /&gt;
&lt;br /&gt;
== Colombia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.datacorporate.co/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [http://www.soficol.com/ Soficol] Offers Enterprise OpenVZ based VPS, hosted on a clustered infrastructure and redundant network. Easy to use user management and instant setup.&lt;br /&gt;
* [https://www.hostingplus.com.co/ Hosting Plus Colombia] provide OpenVZ containers at our own datacenter in South America with triple internet provider. Starting from  us20/month&lt;br /&gt;
* [https://ibumu.com/ Ibumu] Best containers for wordpress starting from $5.5.&lt;br /&gt;
&lt;br /&gt;
== Czech Republic ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://4smart.cz 4Smart.cz] - prepaid, you are charged only by the system resources you use, therefore you can run a VPS for as little as  1 EUR a month if your vps is not resource hungry. Even if you pay  0,50 EUR  month, you still have 3 GB of RAM and 8 cores available to you VPS.&lt;br /&gt;
* [http://www.freecloud.cz FREECLOUD.CZ] - Free OpenVZ VPS Server - own IP, 800Mhz CPU, 512MB RAM, 50Mbits LAN, 10GB HDD, 100GB Traffic - Debian, Ubuntu, Gentoo, Slackware, Fedora, Centos&lt;br /&gt;
* [http://www.hukot.cz Hukot.cz] - OpenVZ VPS Servers starting from 2.92 €, XEON, 1 Gbps uplink, unlimited traffic. Debian, Ubuntu, CentOS, Scientific, SuSe, Fedora, Elastix.&lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [http://www.ultimatehosting.eu UltimateHosting.eu] - OpenVZ VPS Servers starting from $8 with custom configuration - up to 100 GB HDD, 2048 MB RAM, 2 GHz CPU, and unlimited traffic.&lt;br /&gt;
* [http://www.mujhost.net MUJHOST.NET] - OpenVZ VPS Servers starting from 160 Kč, 100Mbps / 1 Gbps uplink, unlimited traffic. Debian, Ubuntu, CentOS ...&lt;br /&gt;
&lt;br /&gt;
== Chile ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.1h.cl/ 1h.cl Vps - Chile] - VPS High Performance with OpenVZ in Chile&lt;br /&gt;
* [http://www.1hosting.cl/ 1hosting Virtual servers - Chile] - VPS Professional with OpenVZ&lt;br /&gt;
* [http://www.dch.cl/ DCH] - DCH.cl Hosting Chile - High Performance VPS Servers with OpenVZ &lt;br /&gt;
* [https://www.dominioweb.net/ Dominioweb] - Premium Hosting and domain registration&lt;br /&gt;
* [http://ecohosting.cl/ EcoHosting.cl Santiago - Chile] - VPS with OpenVZ in Chile&lt;br /&gt;
* [http://www.host.cl/ Host.cl] - Cloud Computing&lt;br /&gt;
* [https://www.hostingplus.cl/ HostingPlus Internet Limitada] - High Performance Vps provider in Chile&lt;br /&gt;
* [https://www.hostname.cl/ Hostname Ltda] - VPS Hosting with Datacenter in Chile&lt;br /&gt;
* [https://www.inc.cl/ INC Internet Limitada] - VPS Hosting provider in Chile&lt;br /&gt;
&lt;br /&gt;
== Denmark ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.vpsfast.us/denmark-cloud-server VPSFast] - VPS Provider with good prices in Denmark.&lt;br /&gt;
&lt;br /&gt;
== Ecuador ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.dedi.space/ DediSpace Telecom] - VPS Servers in Ecuador - USA, France, Germany, Ecuador Datacenter.&lt;br /&gt;
&lt;br /&gt;
== France ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.BargainVPS.co.uk/ BargainVPS] - UK / US / EU Instant setup VPS - We have some great Linux &amp;amp; Windows Bargain VPS packages on offer for you here all available Fully Managed.&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in France from 1.88EUR/month.&lt;br /&gt;
* [http://www.fixweb.com Fixweb] Great managed hosting provider with strong anti ddos solution - openvz only - leader in managed openvz solution with horizontal scaling and high availability&lt;br /&gt;
* [http://www.Freaksol.com/ FreaKs VPS Hosting] Self reliant hosted on independent networks &amp;amp; DC low ping,No restrictions on file types,Unlimited resources,high ram servers &lt;br /&gt;
* [https://galaxyhostplus.com/ovz GalaxyHostPlus] Cheap VPS Hosting based in Roubaix with new 2016 line starts from $2/Month &lt;br /&gt;
* [http://www.harmony-hosting.com Harmony-Hosting] A high performance VPS hosting - The leader in France&lt;br /&gt;
* [https://www.delimiter.com/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [http://www.lws.fr/serveur_dedie_linux.php LWS - Linux VPS ] - Linux VPS Hosting - Only 9.99€/month, Affordable and Secure OpenVZ VPS Servers with 99.99% up-time, web hosting control panel Included. French datacenter&lt;br /&gt;
* [http://www.ovh.co.uk/vps/ OVH VPS] linux from 3€/month, [http://www.ovh.co.uk/vps/vps-cloud.xml windows] from 12€/month.&lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [https://VPSZ.FR VPSZ] VPS Hosting in France. Starting from 2,99€, Unlimited traffic.&lt;br /&gt;
* [http://www.1euro-hosting.eu BEST EU VPS - 1€ Hosting] - Providing reliable and secure OpenVZ VPS Servers with 99.99% up-time, starting from 8€&lt;br /&gt;
* [https://www.shape.host/linux-vps/ Shape Host - Linux VPS] - OpenVZ virtual servers, Instant Linux VPS&lt;br /&gt;
* [https://undergroundprivate.com/russiaoffshorevps.html  UndergroundPrivate.com] - OpenVZ with highly privacy, offshore , DMCA ignored , high confidence, SolusVM and cPanel, managed and non managed service.&lt;br /&gt;
* [https://www.host-stage.net/linux-vps/ HostStage - Linux VPS] - Simple, Reliable OpenVZ VPS packed with 1 GBPS port speed, RAID 10 SSD, Intel Xeon CPU from $4.95/month&lt;br /&gt;
* [https://www.yoorshop.hosting/hosting-vps-ssd-europe.php YOORshop SAS] - High performance NVMe SSD OpenVZ 7 VPS within 13 countries in Europe, Canada and Singapore. Daily backup included. From €7,49 /month&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Germany ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://afterburst.com Afterburst (Previously FanaticalVPS)]: affordable unmetered, unmanaged VPS servers in Germany.&lt;br /&gt;
* [http://www.b2b-hosting.de/vps/ B2B Hosting]: Professional virtual servers for business applications. Performance and reliability at a fair price. Made with OpenVZ.&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in Germany from 1.88EUR/month.&lt;br /&gt;
* [https://www.delimiter.com/dedicated-servers/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [https://galaxyhostplus.com/ovz GalaxyHostPlus] Cheap VPS Hosting based in Frankfurt with new 2016 line starts from  $2/Month&lt;br /&gt;
* [http://hostmist.com/openvz-vps-germany.html Host Mist]: features budget OpenVZ VPS hosting in Germany.&lt;br /&gt;
* [http://www.host1plus.com/ Host1Plus] Servers based in Frankfurt am Main. Offering reliable OpenVZ based VPS servers in Germany starting from $2.50 per month.&lt;br /&gt;
* [http://www.hostingjuice.com/ HostingJuice] The Superioum VPS and Web Hosting provider, low prices - Premium packages.&lt;br /&gt;
* [http://www.ingate.de/managed-server.html Ingate] offers managed servers with openVZ virtualization. located in germany, great support.&lt;br /&gt;
* [http://linevast.de/angebote/linux-openvz-vserver-mieten.html Linevast] Reliable OpenVZ based VPS with fast support, located in germany&lt;br /&gt;
* [https://cp.myvirtualserver.com/?affid=42 MyVirtualServer]: Cheap VPS (OpenVZ/KVM, 5TB Traffic, 10Gigabit), servers located in Frankfurt (best ping, starting 1.99€) good support (en/de) //New Design!&lt;br /&gt;
* [https://www.nogics.com Nogics Technologies]: Affordable VPS based in Germany. Starts from $5.96/mo.&lt;br /&gt;
* [http://www.plambee.de/vserver.php Plambee.de Webhosting]: Powerfull OpenVZ based VPS servers at low cost with hosting in Germany&lt;br /&gt;
* [https://rackset.com/ Rackset Hosting] Managed Dedicated / VPS and Website Hosting services since 2004.&lt;br /&gt;
* [http://www.serverbiz.de/vserver Serverbiz] Powerful VPS at very low prices.&lt;br /&gt;
* [http://www.synapseglobal.com/voip_vps.html SynapseGlobal.com] Elastix, Trixbox, PBX in a Flash and Asterisk VPS - OpenVZ based Asterisk VOIP servers located in Munich Germany.&lt;br /&gt;
* [http://www.vStarVPS.com vStarVPS]: Reliable VPS Hosting at lowest prices, with 99.9% uptime, Premium Unmetered Bandwidth and Custom HDD/RAM of your choice. Instant and FREE Setup. RapidLeech Allowed.&lt;br /&gt;
* [http://whynotavps.com WhyNOTaVPS]: Instant activated VPS SERVERS!!&lt;br /&gt;
* [http://squote.de/index.php?ref=1421485383 SQuote]: SQuote VPS Hosting and more. VPS 1 Core, 1.024MB RAM, 512MB RAM SWAP, 50 GB HDD, 1x IPv4. 3,89EUR/month. For the best VPS SQuote.de&lt;br /&gt;
* [http://www.vpsfast.us/germany-vps VPSFast] - VPS Provider with good prices in Germany.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Guatemala ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.globalnetcafe.com/gnc/menu/hospedaje.htm Global Net Cafe]: Servicios de hospedaje, reseller, vps, colocacion y servidores. Incluyendo OpenVZ.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Hong Kong ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [https://hostus.us HostUS] features unmanaged and managed OpenVZ VPS in Hong Kong as well as 3 USA locations. Unparalleled connectivity to the Asia Pacific. Enjoy 15% off with coupon VPS15OFF.&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides self-managed OpenVZ based SSD VPS in Hong Kong, located at the Pacnet datacenter. &lt;br /&gt;
* [http://vps.timway.com/linux_vps.html Timway VPS Hosting] - Quality, non-oversold hosting provider focused on being security conscious and offering a positive client experience.   Centos, Debian, Fedora, OpenSuse and Ubuntu Containers are available.&lt;br /&gt;
* [http://www.vpsfast.us/hong-kong-cloud-server VPSFast] - VPS Provider with good prices in Hong Kong.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Hungary ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://elin.hu/index.php?menu=8&amp;amp;nyelv=hu&amp;amp;cim=Virtualis-szerver Virtual server] OpenVZ server: 2xX5650 Intel Xeon, 32GB RAM, 15.000rpm SAS disks, 100Mbit/s, unlimited bandwith.&lt;br /&gt;
* [https://www.ivirtual.co/vps-hosting/ iVirtual.co ] OpenVZ Master Server: 2x Intel Xeon @ 3.0GHZ, 64 GB ECC Ram, 15k RPM SAS HDD's, 1Gbit/s Network, Unlimited bandwith.&lt;br /&gt;
&lt;br /&gt;
== Iceland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
&lt;br /&gt;
== Ireland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== India ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://cochinwebhost.in/budget-vps-hosting/ Low Cost VPS Hosting] Fast SSD VPS Server for Hosting Solutions at budget prices with 24x7 Technical Support.&lt;br /&gt;
* [https://www.cyberhost.in/ Cyberhost] - Affordable OpenVZ containers on high performance quality Servers. Wide choice of virtual dedicated servers with Full management available.&lt;br /&gt;
* [http://www.datacorporate.in/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
*[http://www.fastwebhost.in/vps-hosting.html fastwebhost VPS Hosting] VPS hosting offered by fastwebhost are powered by ''VPS hosting, virtual server hosting and Linux VPS hosting services''. Fully Managed VPS with control panels.&lt;br /&gt;
* [http://www.Freaksol.com/ Freaksol VPS Hosting] Self reliant hosted on independent networks &amp;amp; DC low ping to India,No restrictions on file types,Unlimited resources,high ram servers&lt;br /&gt;
* [https://www.geniushost.in Genius Host] Fully managed [https://www.geniushost.in SSD Web Hosting] offered by Genius Host are powered by ''OpenVZ'' With LiteSpeed Web Server &amp;amp; Mariadb.&lt;br /&gt;
* [http://www.hioxindia.com/virtual-private-server.php VPS Hosting] Reliable and quality VPS Virtual Private Server Hosting&lt;br /&gt;
* [http://www.hostitsmart.com/ Host IT Smart] - One of the best VPS Hosting Provider in India with 24X7X365 Customer support.&lt;br /&gt;
* [https://www.hostnamaste.com HostNamaste] is your high-performance [https://www.hostnamaste.com/openvz-vps.php OpenVZ VPS Hosting] Provider. Get your perfect [https://www.hostnamaste.com/openvz-vps.php VPS Hosting] account today! Available in [https://www.hostnamaste.com/datacenter-losangeles.php Los Angeles], [https://www.hostnamaste.com/datacenter-dallas.php Dallas], [https://www.hostnamaste.com/datacenter-jacksonville.php Jacksonville], USA,  [https://www.hostnamaste.com/datacenter-france.php France], Europe, [https://www.hostnamaste.com/datacenter-mumbai-pune.php Mumbai], India and [https://www.hostnamaste.com/openvz-vps-moscow-russia.php Moscow], Russia.&lt;br /&gt;
* [https://www.hostsoch.in/windows-hosting.html HostSoch Windows Hosting] Windows hosting offered by HostSoch are powered by ''Windows 2012, ASP.NET, MVC, IIS, PHP and More''. 99.9% Uptime, 24/7 Dedicated support guaranteed. &lt;br /&gt;
* [https://www.miditech.co.in/ MidiTech VPS Hosting] VPS hosting offered by MidiTech are powered by ''VMware, ''. Fully Managed VPS with control panels. &lt;br /&gt;
* [http://www.milesweb.com/vps-hosting.php Milesweb VPS Hosting] VPS hosting offered by Milesweb are powered by ''VMware, OpenVZ''. Fully Managed VPS with control panels. &lt;br /&gt;
* [https://www.nogics.com/web/vps-hosting/ Nogics Technologies] Instant provisioning of VPS, VPS starts from $5.96/mo. 30+ OS templates.&lt;br /&gt;
* [http://overlineindia.net/vpshosting-p-62.html Overline India VPS Hosting] Fully managed cPanel Installed VPS Hosting with 24x7x365 Live Chat Tech support, powered by OpenVZ&lt;br /&gt;
* [http://www.prohosterz.com/linux-vps.php ProHosterZ VPS Hosting] Reliable and quality Virtual Dedicated Servers | Virtual Private Servers | XEN VPS | OpenVZ VPS | Virtual Hosting&lt;br /&gt;
* [http://pve.proxmox.com/wiki/User:Apmuthu Ap.Muthu] sponsored by [http://www.gnuacademy.org GNUAcademy], [http://www.planettel.com.sg PlaNetTel] and [http://www.sacollege.net S A College] creates OpenVZ Templates for the Open Source Community and provides hosting in datacenters of clients choice or on site.&lt;br /&gt;
* [http://www.servers.co.in/vps/vps_hosting.php Server Web Hosting] Offers Fully Managed OpenVZ VPS Web hosting in India/US/UK at affordable and cheap rates with best hardware quality and customer service 24/7/365 days&lt;br /&gt;
* [http://touchstone.hosting/ Touchstone Solutions Private Limited] High-performance Enterprise VPS Hosting in India. One of the highest performing VPS Servers available with cPanel Installed.&lt;br /&gt;
* [http://vpsbeach.com VpsBeach Managed Hosting] Fully managed cPanel Installed VPS Hosting with 24x7x365 Live Chat Tech support, powered by OpenVZ&lt;br /&gt;
* [http://www.vpsfast.us/india-vps VPSFast] - VPS Provider with good prices in India.&lt;br /&gt;
* [http://www.vpshostingindia.net/ VPS Hosting India, Fully Managed Server] A Committed Fully Managed VPS Server for Hosting solution in India, Complete Technical Support assistance with commitment of fast, clustered and most supportive DataCenters.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Indonesia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.herza.id/vps-murah/ Herza.ID] Low Cost OpenVZ Virtual Server, starting from IDR 50.000 / Month with RAID 10 SSD, Unlimited Bandwidth with 1 Gbps IIX &amp;amp; OIXP Connection, and 24/7 Technical Support.&lt;br /&gt;
* [https://www.kucingweb.co.id/hosting/vps/ Kucingweb Indonesia] High Performance VPS service with the best choice.&lt;br /&gt;
&lt;br /&gt;
== Iran==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.ehost.ir EHost.ir] - OpenVZ Servers , DUAL XEON Cpus , 12 Gb Ram , 100Mbit Dedicated Connection , SAS HardDisk&lt;br /&gt;
* [http://www.vpsfa.com VPSFa.com] - OpenVZ Servers , DUAL XEON Cpus -  , 24Gb Ram , 1000Mbit Dedicated Connection , SAS HardDisk&lt;br /&gt;
* [https://webramz.com Webramz Host] - With more than 15 years experience in Managed Hosting, Webramz was first vps provider in Iran which used to setup OpenVZ servers. Nowadays we provide wide range of services including CloudLinux based OpenVZ and Managed Vps Servers.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Italy ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
* [http://www.hosting-italia.net hosting italia] - OpenVZ Servers and panel enduser Virtualizor Intel® Core™ i7-920 Quad-Core 48 GB DDR3 RAM - Guaranteed Bandwidth 200 Mbit/s&lt;br /&gt;
* [http://www.vpsfast.us/italy-vps VPSFast] - VPS Provider with good prices in Italy.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Liechtenstein ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
&lt;br /&gt;
== Lithuania ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.cloudlix.com/ CloudLix.com] - Managed and unmanaged OpenVZ virtual servers based on 2.6.32 kernel. Up to 20GHz (Intel SandyBridge) CPU and 10GB RAM. Located in Vilnius and Siauliai.&lt;br /&gt;
* [http://www.databank.lt/ databank.lt] - high-quality professional OpenVZ hosting with cloud computing solutions.&lt;br /&gt;
* [https://www.hostens.com/vps-hosting/ Hostens] - Unmanaged VPS hosting for the great price: clear deals, no hidden conditions, quality service from the heart of Europe. &lt;br /&gt;
* [https://www.lavavps.lt/ lavavps.lt] - Professional high-quality OpenVZ containers (VPS servers) affordable for everyone. Powerful control panel for VPS management.&lt;br /&gt;
* [https://monovm.com/ monovm.com] - High Quality VPS Hosting Provider&lt;br /&gt;
* [http://www.serveriai.lt/ Serveriai.lt] - Affordable OpenVZ containers on quality HP hardware. Wide choice of virtual dedicated servers up to 8 CPU cores and 8 GB RAM. Full management available. Located in Vilnius.&lt;br /&gt;
* [https://www.time4vps.com/?affid=1359 Time4VPS] - Powerful cloud technology based infrastructure will let you build custom virtual machine and pay only for what you really need. Located in Vilnius city.(0.99€/month(2Yr) 512mbRAM, 1TB Traffic// 4.5€/month(2Yr) StorageVps, 1TB, 10TB Traffic)&lt;br /&gt;
* [https://www.vpsnet.lt/en/ VPSnet.lt] - Powerful and high quality servers for a competitive price in Lithuania (Eastern Europe).&lt;br /&gt;
* [http://www.vpsfast.us/lithuania-vps VPSFast] - VPS Provider with good prices in Lithuania.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Latvia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.altnet.lv/ Altnet] - Hosting and colocation services. Any flawor, you name it. &lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
&lt;br /&gt;
* [http://www.vpsfast.us/latvia-vps VPSFast] - VPS Provider with good prices in Latvia.&lt;br /&gt;
&lt;br /&gt;
== Luxembourg ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.vpsfast.us/luxembourg-vps VPSFast] - VPS Provider with good prices in Luxembourg.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Malaysia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.cubiex.com/ Cubiex] - Malaysia Affordable Web Hosting and Domain Name. Affordable Linux VPS Hosting in Malaysia. OpenVZ based, Quad Core Xeon node. cPanel/WHM and DirectAdmin also available.&lt;br /&gt;
* [https://controlvm.com ControlVM] ControlVM Sdn. Bhd. offering OpenVZ VPS in Singapore, Malaysia, USA and Germany.&lt;br /&gt;
* [https://www.yoorshop.fr/hosting-ssd-vps-singapore-asia.php YOORshop SAS] - High performance SSD Linux VPS In Singapore with daily backup included. Starting from €7,49 /month&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Malta ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.a6it.com/ A6iT] - Stable, quality managed OpenVZ VPSs based in Malta.  Redundant network.&lt;br /&gt;
&lt;br /&gt;
== Morocco ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.belsemtech.com/ BelsemTech.CoM] BelsemTech SARL offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from 300 DH. Virtual Private Server (VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://www.hostoweb.com/ HosToWeb] is the only company providing VPS hosting in Morocco Data Center.&lt;br /&gt;
* [http://www.adk-media.com/ ADK Media] provides affordable managed and unmanaged virtual servers based on OpenVZ, Xen Paravirtualization and Xen HVM platforms. 24/7 Technical Support. Distros: Centos, Fedora, Debian, Ubuntu and more.&lt;br /&gt;
* [http://www.naja7host.com/ Naja7Host.CoM] The Naja7host SARL provides affordable VPS hosting using the OpenVZ platform. Running on Full Quality Nodes of up to 8 CPU and 16 GB RAM. . All VPS's come with Real 24/7/365  Technical Support and cPanel free (if option selected  ). Multiple choice of OS 32/64Bits (Centos, fedora, ubuntu, debian .ect ...)&lt;br /&gt;
* [http://www.lehoster.com/ Le Hoster] offers affordable Virtual Private Servers using the OpenVZ and KVM platform. Backed with our amazing customer support.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Netherlands ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.avanpad.com/ Avanpad] offers OpenVZ VPS hosting with 24\7 online support. Customer can request different control panels or templates for installation on his VPS.&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in Netherlands from 1.88EUR/month.&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
* [http://www.Freaksol.com/ FreaKs VPS Hosting] Self reliant hosted on independent networks &amp;amp; DC low ping around the world,No restrictions on file types,Unlimited resources,high ram servers&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [http://www.HostSailor.com/ HostSailor] Number 1 Netherlands Provider HostSailor provides affordable &amp;amp; high quality services such as VPS (XEN, OpenVZ and KVM) Linux or Windows, Dedicated servers, SSL certificates and domain name services.&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides self-managed OpenVZ SSD VPS in Telecity AMS 5, one of the best datacenters located in the Amsterdam area.&lt;br /&gt;
* [https://iniz.com/ INIZ VPS Hosting] INIZ provides affordable VPS Hosting in Amsterdam, Netherlands with high resources at low prices.&lt;br /&gt;
* [https://www.liteserver.nl/ LiteServer] Looking for a quality and affordable VPS in the center of The Netherlands? We provide SSD, Storage and High Bandwidth VPSes, starting at only €16 per year. We operate AS60404.&lt;br /&gt;
* [https://www.mangelot-hosting.nl/ Mangelot Hosting] Mangelot Hosting, A webhosting company located in the Netherlands, offers budget OpenVZ hosting solutions for maximum scalability en performance.&lt;br /&gt;
* [http://www.osbox.nl OsBoX Dutch Network Engineering] Cheap VPS host as low as $1 per month. Very great uptime and a overall good support. Check the website for the server plans.&lt;br /&gt;
* [https://www.scopehosts.com/openvz-vps/netherlands-vps ScopeHosts.Com] - ScopeHosts Provides OpenVZ VPS in Netherlands, Amsterdam Powered with Pure SSD, 1Gbps Uplink, DDOS Protection, Self-Managed and Managed VPS Solutions&lt;br /&gt;
* [http://www.signet.nl/ Signet VPS Hosting] - Signet delivers VPS hosting plans based on CentOS or Debian templates, including control-panel Virtualmin.&lt;br /&gt;
* [http://simple-webhosting.eu/ Simple-webhosting.eu] - OpenVZ based web hosting starting from €0.98 per month.&lt;br /&gt;
* [https://www.seedvps.com SeedVPS] Provides Powerful &amp;amp; Reliable OVZ/KVM VPS Hosting in The Netherlands&lt;br /&gt;
* [http://www.touchvps.com/ TouchVPS] is a company who offer Support and Managed Services for OpenVZ Servers ,also offer templates for openvz ready to go with cPanel , DirectAdmin , Plesk , Games, IRC Services, Desktop and many more.&lt;br /&gt;
* [https://www.totallyhosted.nl/ TotallyHosted] OpenVZ based Premium VPS services located in the Netherlands @ Serverius DC.&lt;br /&gt;
* [https://undergroundprivate.com/russiaoffshorevps.html  UndergroundPrivate.com] - OpenVZ with highly privacy, offshore , DMCA ignored , high confidence, SolusVM and cPanel, managed and non managed service.&lt;br /&gt;
* [http://www.voipcomplete.com/product-overview/dedicated-vps.html VOIPcomplete] offers dedicated VPS plans based on CentOS including a VPS management interface.&lt;br /&gt;
* [http://www.vpsfast.us/netherlands-vps VPSFast] - VPS Provider with good prices in Netherlands.&lt;br /&gt;
* [https://www.vps9.net/netherlands-vps VPS9.NET] - VPS9 OpenVZ Nodes are located in Naaldwijk, Netherlands. We provide OpenVZ VPS Services at very a affordable cost, powered with 20x Faster SSD on RAID-10 Partition.&lt;br /&gt;
* [https://www.waveride.at/ Waveride] Waveride, an EDIS company, offers budget full gigabit OpenVZ + solusVM VPS in Austria, USA and the Netherlands&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Norway ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.vpsfast.us/norway-vps VPSFast] - VPS Provider with good prices in Norway.&lt;br /&gt;
&lt;br /&gt;
== Pakistan ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://vimzaa.com/ Vimzaa] The best hosting in Pakistan.&lt;br /&gt;
&lt;br /&gt;
== Philippines ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.web.com.ph/vps.php Web.com.ph] - provides OpenVZ virtual servers in the Philippines.&lt;br /&gt;
&lt;br /&gt;
== Perú ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.hn.pe/ Hostname] Hostname offers business OpenVZ containers in Perú&lt;br /&gt;
* [http://www.hostingandino.pe/ Hostingandino Lima - Peru] - VPS with OpenVZ in Peru&lt;br /&gt;
* [http://www.hostingplus.pe/ HostingPlus Internet Limitada] - High Performance Vps provider in Peru&lt;br /&gt;
* [https://www.hostingroup.com/ Hostingroup] Web hosting for small businness in Perú.&lt;br /&gt;
* [https://hostingweb.pe/ Hosting Web] The best hosting in PERU.&lt;br /&gt;
* [https://www.inchosting.pe/ HostingINC SAC] OpenVZ virtualization solutions for business in Perú.&lt;br /&gt;
* [https://www.mejorhosting.pe/ Mejor Hosting Perú] Hosting comparison for peruvian hosting providers.&lt;br /&gt;
* [https://webuniversal.pe/ Web Universal] The best hosting in PERU in the World.&lt;br /&gt;
&lt;br /&gt;
== Poland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://hosteam.pl/ HosTeam] offers OpenVZ VPS hosting from their DataCenter in Poland. Customer has choice of all major Linux distros (WARNING!!! restoring your backup is VERY expensive and they charge even if it wasn't restored correctly!), NATIVE IPV6 AVAILABLE!&lt;br /&gt;
&lt;br /&gt;
* [http://ultimahost.pl/ UltimaHost] high grade OpenVZ VPS and FreeBSD jail (DC in Łódź, Poland), brand of statnet.pl, SSD available for more expensive packets, NO IPV6 AVAILABLE (but they can load you tun module)&lt;br /&gt;
&lt;br /&gt;
* [http://budgetvps.pl/ BudgetVPS] very cheap, low end grade OpenVZ VPSes (DC in Gdańsk, Poland), brand of HitMe.pl&lt;br /&gt;
&lt;br /&gt;
* [https://hitme.pl/ HitMe.pl] high grade OpenVZ/Xen PV/Xen HVM VPSes, Virtuozzo (DC in Gdańsk, Poland), NATIVE IPV6 AVAILABLE (/64 on demand for free)!&lt;br /&gt;
&lt;br /&gt;
* [http://www.kr-cpd.pl/oferta/serwery-vps/ KR-CPD] Cracow's Center of Data Processing (DC of course in Cracow, Poland)&lt;br /&gt;
&lt;br /&gt;
* [http://livenet.pl Livenet] cheap, middle/low end OpenVZ VPSes (DC in Łódź, Poland)&lt;br /&gt;
&lt;br /&gt;
* [http://slaskdatacenter.pl/ Śląsk Data Center] high/middle grade OpenVZ VPSes (DC in Silesia province, Poland), SSD available for more expensive packets&lt;br /&gt;
&lt;br /&gt;
* [https://www.ionic.pl/ IONIC.pl] VPS OpenVZ with SolusVM control panel, own DC in Cracow&lt;br /&gt;
&lt;br /&gt;
* [https://microvps.pl/ MicroVPS.pl] Middle And low end OpenVZv7 VPS plans. SSD for regular VPS and HHD for storage plans (up to 1TB)&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Portugal ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.ptservidor.pt/ PTServidor] - OpenVZ virtual servers with free management based in Portugal.&lt;br /&gt;
* [http://www.efeito.net/ Weblevel.pt] - OpenVZ virtual servers based in Portugal.&lt;br /&gt;
* [https://www.webtuga.pt/ WebTuga] - Managed/Unmanaged Virtual Private Servers hosted in a Portuguese Datacenter with lots of extras&lt;br /&gt;
* [https://www.cloudfire.pt/ CloudFire] - OpenVZ VPS at very low prices hosted in Portugal&lt;br /&gt;
* [https://www.linxisp.com/ LINXISP] - High Availability &amp;amp; Performance OpenVZ Containers&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] - Build an OpenVZ VPS in 14 locations WordWide From £2.49&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Romania ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.intovps.com IntoVPS] - offers unmanaged OpenVZ virtual servers based in Romania, Netherlands and USA. A lot of resources for decent prices.&lt;br /&gt;
* [http://www.ename.ro/dedicated.html eName] - managed OpenVZ virtual servers in Bucharest, Romania&lt;br /&gt;
* [http://www.ch-center.com/virtual-servers Ch-center] - unmanaged OpenVZ virtual servers, based in Romania in it's own Data Center&lt;br /&gt;
* [http://www.clouds.ro/servere-virtuale/ Clouds] - OpenVZ virtual servers hosted on premium hardware, in Romania&lt;br /&gt;
* [http://www.HostSailor.com/ HostSailor] HostSailor provides affordable &amp;amp; high quality OpenVZ and KVM servers in Romania&lt;br /&gt;
* [https://www.shape.host/linux-vps/ Linux VPS] - OpenVZ virtual servers, Instant Linux VPS&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Russia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.internoc24.host Internoc24.HOST] is an international [https://www.www.internoc24.host Offshore VPS ] provider with reliable SSD VPS in Moscow, Russia. Focus ist on high privacy protection so they accept several Cryptocurrencies like Bitcoin, Ethereum and others for anonymous payments.&lt;br /&gt;
* [http://www.ihc.ru/vps.html IHC.RU] - VPS hosting in Moscow, Russia starting at $10/month with good set of precreated templates&lt;br /&gt;
* [http://mchost.ru/services/linux-vps/ McHost.ru] - Linux VDS Hosting from McHost.&lt;br /&gt;
* [http://hosting.agava.ru/vps/ AGAVA] - Linux VPS hosting based on OpenVZ.&lt;br /&gt;
* [http://vdsplanet.ru/ VDSPlanet.ru] - unmanaged VDS/VPS hosting starting at 3.99$ a month. Large variety of OS templates and free ISPmanager Lite control panel. Total automation is our goal.&lt;br /&gt;
* [http://www.demos.ru/service/datacenter/vps.html Demos-Internet] - we offer OpenVZ Virtual Private Server based on Linux.  All VPS come with ISPmanager control panel.&lt;br /&gt;
* [http://www.net.ru/service/net9/ www.net.ru] - OpenVZ virtual private servers.&lt;br /&gt;
* [http://www.eurobyte.ru/ Eurobyte.ru] - Linux VDS Hosting from Eurobyte.&lt;br /&gt;
* [https://undergroundprivate.com/russiaoffshorevps.html  UndergroundPrivate.com] - OpenVZ with highly privacy, offshore , DMCA ignored , high confidence, SolusVM and cPanel, managed and non managed service.&lt;br /&gt;
* [http://www.telekom.ru/service/vps.html Elvis Telekom] - OpenVZ hosting with base and cpanel templates from Elvis Telekom.&lt;br /&gt;
* [http://fastvps.ru/vds/ FastVPS] - OpenVZ hosting, ISPmanager, Hetzner, MayFlower.&lt;br /&gt;
* [https://lepus.su/vps.html Lepus] - OpenVZ hosting, SSD, ISPmanager free, Hetzner.&lt;br /&gt;
* [http://www.hts.ru/vds/ HTS] - OpenVZ hosting, ISPmanager, Linux VPS hosting based on OpenVZ in Moscow.&lt;br /&gt;
* [https://selectel.ru/services/vds/ Selectel] - OpenVZ hosting.&lt;br /&gt;
* [https://galaxydata.ru/root-server/ GalaxyData] - Virtuozzo Containers in Cloud Storage.&lt;br /&gt;
* [http://hosterbox.ru/servers/ Hosterbox.ru] - Managed VPS hosting. Based on OpenVZ + SolusVM + ISPmanager.&lt;br /&gt;
* [https://firstvds.ru FirstVDS.ru] - One of the leading hosting companies providing virtual private servers.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Singapore ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://conceptlane.com/?t=hostingservices#ratesvps ConceptLane Pte Ltd] - OpenVZ VPS on dual octa-core AMD Opterons running Debian Wheezy 7, custom control panel with bandwidth graphs, reboot/reinit and web-based VNC access.&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [http://www.qoxy.com/vps QOXY.com] Affordable and Reliable OpenVZ VPS Hosting in a Singapore Data Center.&lt;br /&gt;
* [http://www.secureax.com/ SecureAX Pte Ltd] - Singapore Premium Internet Solution Provider&lt;br /&gt;
* [http://www.planettel.com.sg PlaNetTel] - Affordable and customised OpenVZ containers across 3 data centers - contact Thomas Festus at +65-66936881. [http://pve.proxmox.com/wiki/User:Apmuthu#Squeeze_based_Templates Sponsors OpenVZ Container Template]s for the Open Source community.&lt;br /&gt;
* [http://www.vpsfast.us/singapore-vps VPSFast] - VPS Provider with good prices in Singapore.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Serbia ==&lt;br /&gt;
* [https://www.skyhosting.rs/en/vps-servers SkyHosting] - Fast Linux OpenVZ VPS SSD Hosting with SolusVM control panel.&lt;br /&gt;
* [https://www.ninet.rs/en/vps-servers NiNet Company] - Linux OpenVZ VPS servers. Well known VPS hosting company from Serbia with their own data center&lt;br /&gt;
* [http://www.suonline.net SuOnline.Net ISP] - Linux OpenVZ VPS servers, Docker enabled !!!&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== South Africa ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.host1plus.com/ Host1Plus] - Local South African servers hosted in Johannesburg. OpenVZ VPS servers starting from $3.00 per month.&lt;br /&gt;
* [http://www.vps.co.za/ VPS.CO.ZA] - South Africa's oldest VPS provider. Local South African servers with SolusVM control panel. OpenVZ, Xen and OnApp Cloud.&lt;br /&gt;
* [http://247hosting.co.za/vpshosting.php 247Hosting] - OpenVZ virtual servers locally in South Africa with SolusVM control panel. cPanel option available!&lt;br /&gt;
* [http://www.SoftDux.co.za/ SoftDux] - OpenVZ virtual servers based America &amp;amp; South Africa. All VPS's come with cPanel or Plesk control panels. XEN VPS's also available.&lt;br /&gt;
* [http://www.clickworks.co.za/ Clickworks] - OpenVZ / Xen VPS servers hosted in RSA. Backed by Solusvm control panel.&lt;br /&gt;
* [http://www.elitehost.co.za/ Elite Host] - OpenVZ virtual servers based in America &amp;amp; South Africa. All VPS's come with cPanel and unlimited bandwidth.&lt;br /&gt;
* [http://www.telasera.com/ Telasera] - OpenVZ VPS servers hosted in South Africa. Supermicro Servers powered by Intel Xeon with 24/7 Support.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Spain ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.actiu.net/pro/ Actiu informatica]&lt;br /&gt;
* [http://www.corpresa.com/servidores-virtuales.html Corpresa Hosting] - Tiene algún proyecto entre manos y un plan de hosting no le hes sufuciente y un servidor dedicado no está dentro de su presupuesto?, una solución de VPS a medida será la que cubrirá todas sus necesidades.&amp;quot;&lt;br /&gt;
* [https://www.datomedia.es Datomedia] - Cloud alta disponibilidad powered by Virtuozzo 6 y Servidores VPS bajo openvz y kvm.&lt;br /&gt;
* [https://www.evidaliahost.com/vps/ EvidaliaHosting] - Servidores VPS totalmente configurados con panel de gestión Plesk 12.5, garantía de devolución de 30 días y posibilidad de discos SSD.&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
* [https://ginernet.com/vps-ssd.php GINERNET] - Servidores VPS alojados en España desde 1.99€/mes.&lt;br /&gt;
* [https://www.hostingplus.com.es Hosting Plus España] provide OpenVZ containers at our own datacenter. Starting from us20/month RAID 10 SSD.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Sweden ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.admax.se/vps/ Admax] - Admax offers enterprise grade virtual servers with great pricing. Custom control panel, API, remote access &amp;amp; more.&lt;br /&gt;
* [https://www.acon.se/vps Acon VPS Server] - VPS Server and Dedicated server provider in Sweden.&lt;br /&gt;
* [https://www.glesys.com/vps.php GleSYS] - VPS Provider with a great control panel and good prices&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides the highest quality SSD VPS in Stockholm, Sweden. Based on completely pure SSD in RAID-10 and delivering extremely high network &amp;amp; hardware performance along with reliability.&lt;br /&gt;
* [https://www.nametyper.com NameTyper] - VPS and Shared hosting provider. Customize your own OpenVZ Container with 1-12 cores running on SSD and ECC RAM. &lt;br /&gt;
* [https://virtualcenter.se VirtualCenter] - The first Cloud provider with SSD VPS in Sweden. Offer enterprise class hardware and network infrastructure&lt;br /&gt;
* [http://www.vpsfast.us/sweden-vps VPSFast] - VPS Provider with good prices in Sweden.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Switzerland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
* [http://www.vpsfast.us/switzerland-vps VPSFast] - VPS Provider with good prices in Switzerland.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Tanzania==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.aptus.co.tz/ Aptus Solutions] - OpenVZ / SolusVM VPS Servers located in Dar es Salaam - 100meg to TIX. CentOS &amp;amp; Ubuntu.&lt;br /&gt;
&lt;br /&gt;
== UK ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.34sp.com/ 34SP.com] - We're a UK based web hosting company, bridging the gap between sophisticated hosting solutions &amp;amp; affordable prices&lt;br /&gt;
* [http://www.AceShells.com/ AceShells] - Fast, stable, high quality UK based virtual private servers from just £5 a month, operating since 2001&lt;br /&gt;
* [http://www.AtlanticServers.com/ Atlantic Servers] - Affordable VPS, stable, high quality VPS, UK based Data Centre&lt;br /&gt;
* [https://awebhosting.uk/ AWebHosting.uk] VPS hosting offered by [https://awebsolutions.uk/ AWEBSOLUTIONS LIMITED] reliable UK hosting provider located in London, UK and Hosted in UK DataCentre.&lt;br /&gt;
* [http://www.BargainVPS.co.uk/ BargainVPS] - UK / US / EU Instant setup VPS - We have some great Linux &amp;amp; Windows Bargain VPS packages on offer for you here all available Fully Managed.&lt;br /&gt;
* [http://www.cheapvps.co.uk/ CheapVPS] - CheapVPS provide cheap, UK based OpenVZ VPS servers. Hosted on high end hardware, in a top UK datacenter backed up with 24/7/365 support. Choice from a wide range of Linux distros. OpenVZ VPS managed with SolusVM.&lt;br /&gt;
* [http://www.chilliserver.com/ Chilliserver] - Affordable plans starting from just £3.99, not oversold. RHEL6 Kernel with VSwap, TUN/TAP/FUSE and ACL support enabled. SolusVM control panel with custom snapshot system and rescue system. Based in a European data Centre with UK based support.&lt;br /&gt;
* [http://www.chvps.com/ CHVPS] - Switzerland Based VPS, Cheap Pricing with solusVM control panel.&lt;br /&gt;
* [http://www.cislondon.co.uk/virtual-private-servers/ Commercial Internet Solutions] - CIS provides premium hosting at competitive rates, focused on Small Businesses within the M25 orbital. Hosting is on Dual Quad core Intel Xeon supermicro servers in Tier 4 datacenters around London.&lt;br /&gt;
* [http://www.datacorporate.co.uk/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [http://domvps.com/ domVPS] - OpenVZ Virtual Servers in the USA, Germany, France &amp;amp; the Netherlands at a low cost.&lt;br /&gt;
* [http://www.DubHosting.co.uk/ DubHosting] - DubHosting started in 2004 has been providing cost effective hosting to clients world wide. Fully managed OpenVZ servers based in Europe &amp;amp; US are one of their many strong points. They can provide you with a dedicated server and install openvz allowing you to sell your own vps servers. Their servers are located at UKGrid in Manchester with 24/7/365 support&lt;br /&gt;
* [http://www.europhase.net/virtual-private-servers/ Europhase UK Limited, UK VPS] - OpenVZ VPS Hosting, Virtual Dedicated Servers, UK VPS hosted at multiple UK datacentres from £4.99&lt;br /&gt;
* [https://farbyte.uk/vps Farbyte VPS] - UK based OpenVZ VPS and shared web hosting services&lt;br /&gt;
* [http://www.fdqwholesale.co.uk FDQ Wholesale] - UK based hosting services&lt;br /&gt;
* [http://www.gemvps.net/ GemVPS.NET] - UK (Manchester) Based Company, OpenVZ Virtual Servers in the UK &amp;amp; France on Fast nodes.&lt;br /&gt;
* [http://www.hadrill.org.uk Hadrill Online] - Fully managed hosting with unlimited bandwidth. Quotes available through contact form.&lt;br /&gt;
* [http://www.infrenion.com./uk_vps_hosting.html Infrenion Networks UK] Cheap, economical and reliable web hosting solutions, VPS based on the openVZ platform. You can host any YouTube Clone scripts with free FFMPEG setup on our vps servers. Also offers with a choice of selecting DataCenter.&lt;br /&gt;
* [https://www.laws-hosting.co.uk/vps-hosting.php Laws Web Hosting] - Laws Web Hosting offers OpenVZ VPS Hosting with packages starting from £5.50/m that will cater for anyone. We have OpenVZ VPS hosting solutions, and come with moderate DDoS protection.&lt;br /&gt;
* [http://www.letstalkdigital.com/index.php?option=com_content&amp;amp;view=article&amp;amp;id=73&amp;amp;Itemid=65 LetsTalkDigital VPS Hosting] - LetsTalkDigital.com offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from $14.99. Virtual Private Server(VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://www.meteorvps.com/ MeteorVPS] - Professional, Non-Oversold amazing VPS plans pretty cheap using SolusVM management, range from 512MB -&amp;gt; 16GB&lt;br /&gt;
* [http://www.minivps.co.uk miniVPS] miniVPS offers VPS hosting solutions with nodes located in UK, utilising openvz/solusvm with future locations of USA and UK. &lt;br /&gt;
* [https://www.first2host.co.uk First2Host Cheap VPS] - Intel Xeon E5-2630v3 OpenVZ VPS Servers. Don't be defined by a pre-made VPS plan. Create your own VPS Plan by assigning the resources that you require. SATA, SSD or NVMe storage 100 MBPS, 250 MBPS, 500 MBPS, 1GBPS speeds and free cPanel licenses.&lt;br /&gt;
* [http://www.phurix.co.uk/ Phurix] - A UK based web solutions company that provides you with reliable hosting at extremely affordable prices, VPS server virtualization using OpenVZ.&lt;br /&gt;
* [http://www.qualityservers.co.uk Quality Servers] - Affordable OpenVZ virtual servers based in the UK and USA. Choice of control panels and management options.&lt;br /&gt;
* [http://www.rackburst.net/ Rackburst] - UK SSD VPS Hosting with fast UK-based Live Support available from £1.49 per month.&lt;br /&gt;
* [http://www.rshosting.co.uk/vps.html RSHosting UK] - Offering the most secure, reliable, stable and fast UK VPS Web Hosting based on OpenVZ architecture. Our Virtual Dedicated Servers are physically hosted on powerfull Quad Core servers located in multiple UK datacentres.&lt;br /&gt;
* [http://www.sharkserve.rs SharkServers] - Low Cost OpenVZ virtual servers in the UK. Choice of control panels and management options. Own Datacentre.&lt;br /&gt;
* [https://www.ukhost4u.com/ UKHost4u] - A leading provider of VPS solutions for over 19 years!&lt;br /&gt;
* [http://www.vpsfast.us/united-kingdom-vps VPSFast] - VPS Provider with good prices in UK.&lt;br /&gt;
* [http://www.vpsmachine.co.uk/ vpsMachine] Quality openvz hosting platform with a large choice of customer OS templates.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [https://www.webhostuk.co.uk/vps-hosting.html WebHostUK LTD] - Offers Cheap yet Best UK VPS Web Hosting working on OpenVZ Platform.We offers fully Managed UK VPS with true 24/7/365 days support.All our Servers are located in UK London DC.&lt;br /&gt;
* [http://www.webhostinguk.com/vps/vps-hosting.html Web Hosting UK] - Fully managed OpenVZ VPS Hosting offered on fast and reliable and affordable servers in UK &amp;amp; European datacenter with 24x7x365 days lightning fast support.&lt;br /&gt;
* [http://www.weycrest.co.uk/vps-hosting.php Weycrest VPS] - Low Cost, Stable OpenVZ and Parallels' Virtuozzo Virtual Private Server solutions. London UK Hosted at Coreix with a choice of operating systems, and root and control panel options.&lt;br /&gt;
* [http://www.xilo.net/virtual_private_servers-vps/ XILO] - UK-based hosting with UK-based support. VPS services offered with a choice of cPanel, Webmin and other useful applications, VoIP, SIP, VPN to name a few.&lt;br /&gt;
* [http://www.zxvps.co.uk/ ZxVPS VPS Hosting] - Quality, non-oversold VPS based on the openVZ platform, using SolusVM management panel, VPS from 128mb - 2gb, cpanel, direct admin, kloxo, etc.&lt;br /&gt;
&lt;br /&gt;
== Ukraine ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://ekvia.com/ Ekvia] - VDS/VPS based on OpenVZ. Free trial 14 days. Domain registration for VDS/VPS.&lt;br /&gt;
* [http://www.gelihost.com/ Geliar Hosting Solutions] - Fast virtual dedicated servers based on OpenVZ. Geliar Hosting Solutions offering many control panels and other useful services.&lt;br /&gt;
* [http://www.hostpro.ua/ Hostpro.ua] - Full managed OpenVZ servers.&lt;br /&gt;
* [http://www.vpsfast.us/ukraine-vps VPSFast] - VPS Provider with good prices in Ukraine.&lt;br /&gt;
&lt;br /&gt;
== USA ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.a2hosting.com A2 Hosting] is your high-performance [http://a2hosting.com/openvz-vps-hosting OpenVZ VPS Hosting] provider. Design your perfect [http://a2hosting.com/vps-hosting VPS Hosting] account today! Featuring SwiftServers and SSDs with page load speeds up to 300% faster compared to standard drives.&lt;br /&gt;
* [http://www.afterburst.com Afterburst] (Previously FanaticalVPS): affordable unmetered, unmanaged VPS servers in NY.&lt;br /&gt;
* [https://www.asurahosting.com/ AsuraHosting] offers powerful, reliable, and simple OpenVZ VPS to clients. AsuraHosting has a dedicated support team, and quality hosting; Pricing starts at just $5/month!&lt;br /&gt;
* [http://beyondhosting.net BeyondHosting.net] High Performance OpenVZ Virtual Private Servers (VPS)  Tier 1 US Datacenter.&lt;br /&gt;
* [http://buyvm.net BuyVM.net] DDoS Protection, three datacenter locations, Stallion control panel. Affordable quality VPS hosting since 2010!&lt;br /&gt;
* [https://www.binarycpu.com Binary Computer Solutions] has provided OpenVZ based Virtual Private Server hosting for over 5 years.  Network outages are a thing of the past, and oversold services are never heard of here.  Built on solid technology, with infrastructure to match - Binary Computer Solutions will give you hosting you need, without the cost others ask for.  Starting at $30.00/mo.&lt;br /&gt;
* [http://www.bodhost.com/ Bodhost.com] Fast, Reliable and secure web hosting service with 24*7 free customer service.&lt;br /&gt;
* [http://www.buildyourvps.com/ BuildYourVPS.com] mix ‘n’ match your VPS; choose only the bandwidth, RAM, disk capacity, type of IP connection, level server redundancy, and the support/monitoring you want. [http://www.buildyourvps.com/ BuildYourVPS] is the 1st to offer you a highly-customized VPS solution, without making you pay for unused extra features.&lt;br /&gt;
* [https://www.budgetvm.com/openvz-linux-vps.php BudgetVM.com] Each server includes our industry-leading SLA, DDoS protection, 200Gbps networks and 7 * 24-hour customer support.&lt;br /&gt;
* [http://www.byethost.com Byethost.com] offers OpenVZ based VPS Hosting as its main VPS solution, with the hypervm panel. Centos, Debian, Fedora, OpenSuse and Ubuntu Containers are available.&lt;br /&gt;
* [http://cheaperasp.net CheaperASP.Net] provides Quality web hosting on the OpenVZ platform. You also help you get best options at [http://cheaperasp.net/godaddy-1-hosting-free-domain-promo/ affordable] cost.&lt;br /&gt;
* [http://www.chhost.net/vps.htm CH Hosting VPS Hosting] CH Hosting or chhost.net offers OpenVZ based VPS Hosting. 24/7 Support. Upgrade/Downgrade your plan as needed on-the-fly without the risk of downtime. Since 2006. Non-Oversell&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in USA from 1.88EUR/month.&lt;br /&gt;
* [http://www.cloudshards.com Cloud Shards] High Performance, reliable, stable and affordable OpenVZ Virtual Private Servers (VPS) in data centers across the USA.&lt;br /&gt;
* [https://cloudgearhosting.com CloudGear Hosting] - offers OpenVZ hosting in 4 locations across the USA. Including free DDoS Protection and free SSL with cPanel.&lt;br /&gt;
* [http://www.datacorporate.com/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [https://www.delimiter.com/storage-vps/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [https://www.cheapdomainnamesdot.com Domain Host SSL] provides Reliable web hosting with OpenVZ platform Since 2003, Located New York city, Atlanta, Los Angeles. &lt;br /&gt;
* [http://www.DubHosting.com/ DubHosting] - DubHosting started in 2004 has been providing cost effective hosting to clients world wide. Fully managed OpenVZ servers based in Europe &amp;amp; US are one of their many strong points. They can provide you with a dedicated server and install openvz allowing you to sell your own vps servers.&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
* [http://www.ethernetservers.com/ Ethernet Servers] A leading provider of OpenVZ Virtual Servers in Los Angeles, Miami and Buffalo with SolusVM.&lt;br /&gt;
* [http://www.evolucix.com/ Evolucix.com] Evolucix offers state of the art, professional, and reliable OpenVZ VPS solutions on top-notch hardware while providing quality support.&lt;br /&gt;
* [http://www.evolvedservers.com Evolvedservers.com] Openvz based vps servers. Hosted in Michigan, USA. 24/7 Support. Hosted in tier-3 and tier-4 datacenter's with multiple redundancies.&lt;br /&gt;
* [http://fastwebhost.com/vps-hosting.html Fastwebhost]: affordable cloud VPS servers using OpenVZ. &lt;br /&gt;
* [http://www.fliphost.net Fliphost.net]: Powerful, affordable instant setup VPS systems. Servers based in Phoenix Az with another location coming soon.&lt;br /&gt;
* [http://www.frontrangehosting.com Front Range Hosting]: SSD Cached KVM &amp;amp; OpenVZ VPS Hosting Prices Start at 2.00/mo, located in Colorado Springs, Colorado.&lt;br /&gt;
* [http://glesys.se GleSYS] is a hosting company specialized in serverhosting. Also offering VPS hosting mainly based on OpenVZ. GleSYS has provided access to server and Cisco hardware for developers from OpenVZ to find problem with VLAN implementation.&lt;br /&gt;
* [http://goodealhosting.com/ GOODEALHOSTING.com] Quality Hosting Solutions! Provides affordable unmanaged/managed VPS based on OpenVZ! start from $10.00, real 24/7 support.&lt;br /&gt;
* [http://gothost.net GotHost.net] Providing OpenVZ based VPS Hosting with SolusVM. All nodes are Quad Core Xeon with RAID-10 for speed and redundancy. Budget plans starting at $7.99.&lt;br /&gt;
* [http://www.greengeeks.com/ GreenGeeks Hosting] VPS Hosting. Dual Intel Xeon 64-Bit CPU's, DDR3 RAM, RAID-10 SSD Storage Arrays. 24/7 Support. cPanel/WHM + more!&lt;br /&gt;
* [http://hostarmor.com HostArmor™] - is best known for low-cost and reliable shared hosting and dedicated servers. Recently the company expanded to offer OpenVZ virtual server plans at 8 worldwide locations, five in the U.S., one in Germany, one in France, and one in the Netherlands. VPS plans start at $13.99/month.&lt;br /&gt;
* [http://www.host4geeks.com Host4Geeks] - Host4Geeks is a premium Fully Managed VPS provider with datacenters across 2 locations in US and in UK. All servers offer a free cPanel license.&lt;br /&gt;
* [http://www.host1plus.com Host1Plus] - OpenVZ based virtual servers in Chicago and Los Angeles. VPS plans start at $2.00 per month.&lt;br /&gt;
* [http://www.hostavps.com HostAVPS] - Providing Fully Managed VPS's on both the West &amp;amp; East Coast.&lt;br /&gt;
* [https://www.hostcapitol.com Host Capitol] offers fast and reliable web hosting services, including OpenVZ VPS Hosting, to clients ranging from small businesses to corporations. Located in Piscataway, New Jersey.&lt;br /&gt;
* [http://www.hostcolor.com Host Color] - OpenVZ based virtual servers hosted in a Tier 4 class data center based out of South Bend, Indiana. Juniper managed, fully-redundant network with uplinks to Level 3, Cogent and Internap.&lt;br /&gt;
* [https://www.hostgalaxy.com HostGalaxy] - OpenVZ based virtual servers. The fastest hosting in the Galaxy!&lt;br /&gt;
* [http://www.hostigation.com Hostigation] - High resource unmanage VPS hosting solutions.&lt;br /&gt;
* [http://www.hostingrails.com Hosting Rails] offers Rails-targeted OpenVZ VPS Hosting and updated Rails-ready OS images.&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [http://www.hostmist.com Host Mist] features budget OpenVZ VPS hosting from four major cities across the US.&lt;br /&gt;
* [http://www.hostrush.com HostRush] Self managed, ssd vps for business and non business. &lt;br /&gt;
* [http://www.dailyhosting.net hostoople] We offer OpenVZ VPS hosting from Dallas Texas, Starting at $29.95/month &lt;br /&gt;
* [https://hostus.us HostUS] provides unmanaged and managed OpenVZ VPS in Atlanta, Dallas and Los Angeles with custom control panel. A large variety of Linux distros are available. Enjoy 15% off with coupon VPS15OFF.&lt;br /&gt;
* [https://www.hostwinds.com Hostwinds] Affordable managed/unmanaged VPS Solutions.&lt;br /&gt;
* [http://hostsia.com Hostsia] With HOSTSIA Web services, you can get an OpenVZ VPS for only $15.00/mo. Each OpenVZ VPS includes multiple free-of-charge bonuses and offers a 99.9% uptime guarantee. You can also use our charge-free Hepsia CP, which is available with each OS – it permits you to host an unmetered number of domains and comprises heaps of handy tools, which will help you better manage your site and your VPS web hosting account.&lt;br /&gt;
* [http://www.infrenion.com./vps_hosting.html Infrenion Networks] Cheap, reliable and secure VPS hosting solutions, based on the openVZ platform. You can host any YouTube Clone scripts with enhanced support quality round the clock.&lt;br /&gt;
* [http://iniz.com/ INIZ VPS Hosting] INIZ provides affordable VPS Hosting in Los Angeles &amp;amp; New York with high resources at low prices.&lt;br /&gt;
* [https://www.interserver.net/ InterServer Web Hosting] Fast &amp;amp; Reliable VPS - 24x7 Support. 99.9% Up-time, Hosting Since 1999!.&lt;br /&gt;
* [http://www.joinvps.com JoinVPS.com] ISPmanager OpenVZ based VPS hosting. 24/7 Technical Support. Free ISPmanager control panel.&lt;br /&gt;
* [http://www.lovevps.com LoveVPS] Budget VPS provider starting at $5.99/month located in the US with Xeon nodes.&lt;br /&gt;
* [http://www.letstalkdigital.com/index.php?option=com_content&amp;amp;view=article&amp;amp;id=73&amp;amp;Itemid=65 LetsTalkDigital VPS Hosting] LetsTalkDigital.com offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from $14.99 Virtual Private Server(VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://lylix.net LYLIX] offers affordable VPS hosting with a choice of eight different Linux distributions, dedicated VPS hosting, and specializes in Asterisk/VOIP based hosting including Trixbox, AsteriskNow, Elastix, and PBX-in-a-Flash.  Popular choice for unmanaged IP-PBX services; entire infrastructure built on a High-availability (HA) network across three regional NOCs.&lt;br /&gt;
* [http://www.micfo.com Micfo.com] offers VPS hosting services for both Linux VPS hosting and Window VPS hosting on affordable price combined with world-class 24x7x365 support.&lt;br /&gt;
* [http://www.neostreams.info/neoshop/cart.php?gid=9 nEo Stream Services] Offer's Top Quality OpenVZ Servers, Starting at $18.95 per month! SolusVM Control panel , 7 day Money Back Guarantee , 24x7 Professional Support.&lt;br /&gt;
* [http://pogiweb.com/vps/ PogiWeb LLC] Instant and free setup. Includes SolusVM control panel and free level 1 support during first month.&lt;br /&gt;
* [http://www.theserverexperts.com TheServerExperts.com] TheServerExperts VPS line is the ideal solution for clients who require the control of a dedicated server matched with the affordability and simplicity of a traditional shared hosting account.&lt;br /&gt;
* [http://thenynoc.com New York NOC] affordable Linux VPS hosting out of New York and Chicago. Plans as low as $5 a month and are backed by a redundant infrastructure and 24/7 support.&lt;br /&gt;
* [http://railsplayground.com RailsPlayground.com] Ruby on Rails VPS with ready to go Rails images with the LxAdmin control panel&lt;br /&gt;
* [http://www.raidlogic.net RaidLogic.NET] RaidLogic.NET offers OpenVZ based Linux VPS out of multiple facilities across the United States, including Miami, Los Angeles, and Chicago. Starting as low as $3.95/month.&lt;br /&gt;
* [http://www.ramhost.us RAM Host] RAM Host offers OpenVZ based Linux VPS out of multiple facilities across the United States, including Atlanta, Kansas City, and Phoenix.&lt;br /&gt;
* [http://www.reconhosting.com Recon Hosting] Recon Hosting offers affordable OpenVZ VPS solutions where you get Quality Hosting at a Fraction of the price. Instant setup with the latest Operating System templates including cPanel.&lt;br /&gt;
* [http://www.rokabear.com Rokabear] Rokabear offers OpenVZ Linux VPS, Dedicated Server, and Colocation. All Hardware setup in High Availability mode including raided drives and redudnant power and network connections. With multiple upstream providers, Rokabear's connectivity is fast and reliable! Rokabear supports LAMP, Openvpn, and Asterisk configurations. VPSes start at $7.99!&lt;br /&gt;
* [https://www.rosehosting.com RoseHosting] offers OpenVZ Linux virtual servers equipped with Enterprise Grade SSD drives. All hosting plans are fully-managed with FREE 24/7 support, FREE website migration, FREE weekly backups and FREE server monitoring included.&lt;br /&gt;
* [http://www.rshosting.com/vps.html RSHosting.com] RSHosting offers the most secure, reliable and stable VPS - Virtual Private Servers based on OpenVZ architecture, powered by the most professional and qualified 24/7 lightening fast support.&lt;br /&gt;
* [http://www.servercomplete.com Server Complete, LLC] Server Complete offers OpenVZ based Linux VPS out of multiple facilities across the United States, including Atlanta, Dallas, and Chicago.&lt;br /&gt;
* [http://www.servergrove.com ServerGrove] uses OpenVZ as the main virtualization platform for its state of the art VPS hosting services.&lt;br /&gt;
* [http://serverswarm.com ServerSwarm] provides stable, affordable, high performance OpenVZ virtual private servers.&lt;br /&gt;
* [http://Sharktech.net Sharktech] provides custom OpenVZ solutions DDOS-protected up to 100Gbps.&lt;br /&gt;
* [http://www.silverrack.com/ SilverRack VPS Hosting] - SilverRack provides affordable VPS hosting using the OpenVZ platform.&lt;br /&gt;
* [http://www.soficol.com/ Soficol] Offers Enterprise OpenVZ based VPS, hosted on a clustered infrastructure and redundant network. Easy to use user management and instant setup.&lt;br /&gt;
* [http://www.spectrohost.com/ Spectro Host] - Offers performance VPS Servers running openvz. Always the most resources and never over committing OpenVZ nodes.&lt;br /&gt;
* [http://www.budgetvds.com/ BudgetVDS] - Offers VPS Servers running openvz we've been in business for 2 years now using openvz platform.&lt;br /&gt;
* [http://www.syera.net/ Syera Networks] Unmetered VPS From $18.88/M, 24/7 Support, OpenVZ/HyperVM, Instant Setup!, Free 1Gbps Upgrade with Coupon: syera1G&lt;br /&gt;
* [http://www.synapseglobal.com/voip_vps.html SynapseGlobal.com] Elastix, Trixbox, PBX in a Flash and Asterisk VPS - OpenVZ based Asterisk VOIP servers with 14 Tier 1 premium bandwidth providers.&lt;br /&gt;
* [http://www.tektonic.net TekTonic] provides VPS hosting services using both Virtuozzo and OpenVZ technology.&lt;br /&gt;
* [http://www.tigerservers.com/ TigerServers] - Provides affordable managed VPS based on OpenVZ. Servers located in Chicago, Illinois&lt;br /&gt;
* [http://www.tocici.com/ TOCICI VPS Hosting Services] Since 1995 TOCICI has offered web hosting services, with 24/7 support commitments and a strong non-oversell policy. Our purpose-built hosting infrastructure has serviced many organizations for over a decade. Offering OpenVZ VPS, data center colocation, and equipment leasing options, visit our website for prices and more details.&lt;br /&gt;
* [http://www.ultravps.com UltraVPS] UltraVPS offers managed and unmanaged OpenVZ-based VPS hosting utilizing dual CPU hardware nodes with redundant, high-performance RAID-10 storage.  UltraVPS offers VPS servers with many popular control panel options and turn-key applications.&lt;br /&gt;
* [http://www.vpsfx.com VPSFX] VPSFX.com offers OpenVZ VPS, data center colocation, and dedicated servers.&lt;br /&gt;
* [http://www.Webhost.US.Com/linuxvps.html US Web Hosting]  Webhost.US.Com offers powerful GUI based VPS management system with full OpenVZ, Xen Paravirtualization and Xen HVM support.All our Virtual Private servers are fully Managed with 99.9% uptime and 24/7 top notch support.&lt;br /&gt;
* [http://unixservice.com Unixservice/unxsVZ] Low cost OpenVZ ONLY hosting we specialize in Mail, DNS and RADIUS multiple container hosting. At the world famous Market St. San Jose, CA Silicon Valley datacenter. Ping times from your containers to local yahoo and google sites guaranteed single digit ms times. Your containers are backed up at 4 local and 2 remote locations. Contact supportgrp at unixservice dot com.&lt;br /&gt;
* [http://www.vogenic.xyz Vogenic: Cloud Services] If you are searching for an upgrade to the shared hosting service, then you should consider our OpenVZ or KVM VPS hosting services.&lt;br /&gt;
* [http://vpslink.com VPSLink.com] provides virtual private server hosting on the OpenVZ platform.&lt;br /&gt;
* [http://www.vpsspeed.com/ VPSSpeed] - VPSSpeed provides unmanaged OpenVZ based VPS hosting with over 50 OS Templates, real 24/7/365 support and fast US servers. No overselling.&lt;br /&gt;
* [http://vpsnoc.com VPSNOC] offers unmanaged vps hosting based in the USA utilizing OpenVZ hypervisor behind an in-house VPS control panel.&lt;br /&gt;
* [https://www.waveride.at/ Waveride] Waveride, an EDIS company, offers budget full gigabit OpenVZ + solusVM VPS in Austria, USA and the Netherlands&lt;br /&gt;
* [http://www.webappcabaret.com WebAppCabaret] provides VPS solutions for hosting applications. We offer OpenVZ with cPanel or Plesk for web site management; and NGASI Universal App Manager for deploying and managing JAVA and RAILS applications.&lt;br /&gt;
* [http://www.wirenine.com/vps-hosting/ WireNine.com VPS Hosting] Low cost fully managed and unmanaged OpenVZ based VPS Hosting with SAS 15k enterprise drives in high-performance RAID-10 storage.&lt;br /&gt;
* [http://www.zoidial.com/ Zoidial Hosting and VPS] - offers VPS and Virtual Dedicated Server solutions utilizing OpenVZ.  In business since 1998, Zoidial Incorporated is a small hosting provider focused on being security conscious, proactive, and offering a positive client experience.&lt;br /&gt;
* [http://zensix.com ZenSix Hosting] Cheap OpenVZ based VPS accounts with the SolusVM control panel.&lt;br /&gt;
* [http://zigothosting.com Zigot Hosting] Affordable and Reliable OpenVZ based VPS's within the SolusVM control panel.&lt;br /&gt;
* [http://www.vpsfast.us/usa-vps VPSFast] - VPS Provider with good prices in USA (Los Angeles, New Jersey, New York, Seattle, Washington, Dallas, Chicago, Atlanta, Ashburn, Miami, Piscataway).&lt;br /&gt;
* [http://www.xarixlite.com Xarix Lite] - offers OpenVZ hosting in Charlotte, SC. OpenVZ plans starting at $2.50/mo&lt;br /&gt;
* [https://www.yourlasthost.com YourLastHost] is your high-performance [https://www.yourlasthost.com/openvz-vps.php OpenVZ VPS Hosting] Provider. Get your perfect [https://www.yourlasthost.com/openvz-vps.php VPS Hosting] account today! Available in Los Angeles, Dallas, Jacksonville, USA and France, Europe.&lt;br /&gt;
&lt;br /&gt;
== Vietnam ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://appvz.com AppVZ.com] (www.appvz.com) is a leading web solution provider offering domain, hosting, reseller and VPS hosting packages from 2009. Just recently, the company has offered discount packages where customers can avail managed and un-managed VPS for only $9.5 per month.&lt;br /&gt;
&lt;br /&gt;
= Hosting providers comparison =&lt;br /&gt;
&lt;br /&gt;
It is hard to compare all virtual private server offers provided by different hosting providers.&lt;br /&gt;
Sites below can help you with it.&lt;br /&gt;
&lt;br /&gt;
* [https://www.cheapvpsservers.co.uk/ Cheap VPS Servers]&lt;br /&gt;
* [https://www.hostingmyths.com/ Hosting Myths]&lt;br /&gt;
* [https://cheapwebhosting.review/ VPS servers comparison]&lt;br /&gt;
* [https://reviewsquirrel.com/web-hosting-reviews/ Review Squirrel]&lt;br /&gt;
* [http://lowendstock.com/ Lowendstock]&lt;br /&gt;
* [https://www.websitehostingrating.com/ Best Web Hosting Services]&lt;br /&gt;
* [https://foxmaya.com/hosting/best-wordpress-hosting-india/ Best Wordpress Hosting Services]&lt;br /&gt;
* [http://serverbear.com/compare?Sort=RAM&amp;amp;Order=asc&amp;amp;Server+Type=VPS&amp;amp;Monthly+Cost=-&amp;amp;HDD=-&amp;amp;RAM=-&amp;amp;Virtualization=OpenVZ Serverbear]&lt;br /&gt;
* [https://www.comparethehosts.com/vps-web-hosting.htm VPS Web Hosting Reviews]&lt;br /&gt;
* [https://thishosting.rocks/best-cheap-managed-vps/ ThisHosting.Rocks - Managed VPS Providers Comparison]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
http://vpscomp.com&lt;br /&gt;
http://reviewsignal.com/webhosting/compare/&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= See also =&lt;br /&gt;
&lt;br /&gt;
* [[Partners]]&lt;br /&gt;
* [[Download mirrors]]&lt;br /&gt;
* [[VPS vs Dedicated]]&lt;/div&gt;</summary>
		<author><name>Vvs</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.openvz.org/index.php?title=Template:Main_page_announce&amp;diff=23337</id>
		<title>Template:Main page announce</title>
		<link rel="alternate" type="text/html" href="https://wiki.openvz.org/index.php?title=Template:Main_page_announce&amp;diff=23337"/>
		<updated>2020-07-17T09:01:45Z</updated>

		<summary type="html">&lt;p&gt;Vvs: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:OpenVZ_banner_wiki_20200717.jpg|link=https://go.virtuozzo.com/l/148051/2020-07-13/534t8l]]&lt;br /&gt;
&amp;lt;br clear=all&amp;gt;&lt;/div&gt;</summary>
		<author><name>Vvs</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.openvz.org/index.php?title=File:OpenVZ_banner_wiki_20200717.jpg&amp;diff=23336</id>
		<title>File:OpenVZ banner wiki 20200717.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.openvz.org/index.php?title=File:OpenVZ_banner_wiki_20200717.jpg&amp;diff=23336"/>
		<updated>2020-07-17T09:00:40Z</updated>

		<summary type="html">&lt;p&gt;Vvs: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Vvs</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.openvz.org/index.php?title=Package_signatures&amp;diff=23335</id>
		<title>Package signatures</title>
		<link rel="alternate" type="text/html" href="https://wiki.openvz.org/index.php?title=Package_signatures&amp;diff=23335"/>
		<updated>2020-07-17T06:01:07Z</updated>

		<summary type="html">&lt;p&gt;Vvs: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;OpenVz7 packages are the same binaries as Virtuozzo7 and signed by Virtuozzo GPG key&lt;br /&gt;
[http://repo.virtuozzo.com/vzlinux/security/VIRTUOZZO_GPG_KEY]&lt;br /&gt;
&lt;br /&gt;
Info below is related to OpenVz legacy packages.&lt;br /&gt;
&lt;br /&gt;
All the packages that are released by OpenVZ project are digitally signed by OpenVZ GPG key. Thus, you can check that those packages are indeed came from OpenVZ.&lt;br /&gt;
&lt;br /&gt;
== Public and private keys ==&lt;br /&gt;
There is a pair of keys generated for the purpose of signing and verifying the signature.&lt;br /&gt;
&lt;br /&gt;
'''Private key''' is the key that is available to OpenVZ stuff only and is protected by the passphrase. This key is used for signing the packages, so nobody else but OpenVZ stuff can sign them using this key.&lt;br /&gt;
&lt;br /&gt;
'''Public key''' is the key that is available to everyone and can usually be obtained from a number of different places. Public key is used to verify the signature.&lt;br /&gt;
&lt;br /&gt;
=== OpenVZ public key ===&lt;br /&gt;
OpenVZ public key is available from the several sources. We urge you to use a few different sources because chances are lower they all can be compromised at the same time.&lt;br /&gt;
&lt;br /&gt;
* [http://old.openvz.org/download/RPM-GPG-Key-OpenVZ.txt RPM-GPG-Key-OpenVZ] Old main site&lt;br /&gt;
* [http://download.openvz.org/RPM-GPG-Key-OpenVZ RPM-GPG-Key-OpenVZ] Download site&lt;br /&gt;
* [http://pgpkeys.pca.dfn.de/pks/lookup?op=get&amp;amp;search=0x92A60DA6A7A1D4B6 RPM-GPG-Key-OpenVZ] wwwkeys.de.pgp.net&lt;br /&gt;
* [http://pgp.mit.edu:11371/pks/lookup?op=get&amp;amp;search=0xA7A1D4B6 RPM-GPG-Key-OpenVZ] pgp.mit.edu&lt;br /&gt;
* [http://keys.keysigning.org:11371/pks/lookup?op=get&amp;amp;search=0x92A60DA6A7A1D4B6 RPM-GPG-Key-OpenVZ] keys.keysigning.org&lt;br /&gt;
* [http://pgp.surfnet.nl:11371/pks/lookup?op=get&amp;amp;search=0x92A60DA6A7A1D4B6 RPM-GPG-Key-OpenVZ] pgp.surfnet.nl&lt;br /&gt;
* [http://keys.gnupg.net/pks/lookup?op=get&amp;amp;search=0x92A60DA6A7A1D4B6 RPM-GPG-Key-OpenVZ] keys.gnupg.net&lt;br /&gt;
* [http://pool.sks-keyservers.net:11371/pks/lookup?op=get&amp;amp;search=0x92A60DA6A7A1D4B6 RPM-GPG-Key-OpenVZ] pool.sks-keyservers.net&lt;br /&gt;
* [http://keys.nayr.net:11371/pks/lookup?op=get&amp;amp;search=0x92A60DA6A7A1D4B6 RPM-GPG-Key-OpenVZ] keys.nayr.net&lt;br /&gt;
&lt;br /&gt;
Key fingerprint = DEAB A031 F0A1 8848 9D71  01D2 92A6 0DA6 A7A1 D4B6&lt;br /&gt;
&lt;br /&gt;
== Checking RPM packages ==&lt;br /&gt;
RPM package manager has a build-in GPG signatures support. Signatures are embedded into the .rpm files, and public keys are stored in an rpm database. In order to check OpenVZ RPM package signatures, you need to import OpenVZ public key to your RPM database. To that effect, do the following (usually you are required to be root):&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# rpm --import RPM-GPG-Key-OpenVZ&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Then, to check the packages, use this command (root is not needed):&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ rpm -K *.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Here &amp;lt;tt&amp;gt;*.rpm&amp;lt;/tt&amp;gt; are some RPM packages.&lt;br /&gt;
&lt;br /&gt;
== Checking files ==&lt;br /&gt;
&lt;br /&gt;
Some files (e.g. precreated OS templates) are also signed by the GPG key. Unlike RPMS, they do not contain the signature inside the file, but rather there is a separate small &amp;lt;tt&amp;gt;.asc&amp;lt;/tt&amp;gt; file available.&lt;br /&gt;
&lt;br /&gt;
=== Importing the public key ===&lt;br /&gt;
First, you need to import OpenVZ public key to your GnuPG keychain. You can either import a local file, or search for the key on one of the public keyservers. Second, you should verify the key against the fingerprint.&lt;br /&gt;
&lt;br /&gt;
==== From a local file ====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ gpg --import RPM-GPG-Key-OpenVZ&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== From the default keyserver ====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ gpg --search-keys security@openvz.org&lt;br /&gt;
gpg: searching for &amp;quot;security@openvz.org&amp;quot; from hkp server keys.gnupg.net&lt;br /&gt;
(1)	OpenVZ Project &amp;lt;security@openvz.org&amp;gt;&lt;br /&gt;
	  1024 bit DSA key A7A1D4B6, created: 2005-09-14&lt;br /&gt;
Keys 1-1 of 1 for &amp;quot;security@openvz.org&amp;quot;.  Enter number(s), N)ext, or Q)uit &amp;gt; 1&lt;br /&gt;
gpg: requesting key A7A1D4B6 from hkp server keys.gnupg.net&lt;br /&gt;
gpg: key A7A1D4B6: public key &amp;quot;OpenVZ Project &amp;lt;security@openvz.org&amp;gt;&amp;quot; imported&lt;br /&gt;
gpg: Total number processed: 1&lt;br /&gt;
gpg:               imported: 1&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== From the pgp.mit.edu keyserver ====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ gpg --keyserver pgp.mit.edu --search-keys OpenVZ&lt;br /&gt;
gpg: searching for &amp;quot;OpenVZ&amp;quot; from hkp server pgp.mit.edu&lt;br /&gt;
(1)     OpenVZ Project &amp;lt;security@openvz.org&amp;gt;&lt;br /&gt;
          1024 bit DSA key A7A1D4B6, created: 2005-09-14&lt;br /&gt;
Enter number(s), N)ext, or Q)uit &amp;gt; 1&lt;br /&gt;
gpg: requesting key A7A1D4B6 from hkp server pgp.mit.edu&lt;br /&gt;
...&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Checking the imported key fingerprint ====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ gpg --fingerprint A7A1D4B6&lt;br /&gt;
pub   1024D/A7A1D4B6 2005-09-14&lt;br /&gt;
      Key fingerprint = DEAB A031 F0A1 8848 9D71  01D2 92A6 0DA6 A7A1 D4B6&lt;br /&gt;
uid                  OpenVZ Project &amp;lt;security@openvz.org&amp;gt;&lt;br /&gt;
sub   1024g/FCF77DF7 2009-02-06&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Checking the signature ===&lt;br /&gt;
&lt;br /&gt;
To check the signature, you need to have both the main file (e.g. the template tarball) and the signature file (the one which ends in &amp;lt;tt&amp;gt;.asc&amp;lt;/tt&amp;gt;).&lt;br /&gt;
&lt;br /&gt;
Assuming you want to check the signature of &amp;lt;tt&amp;gt;centos-4-i386-default.tar.gz&amp;lt;/tt&amp;gt; file:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ gpg --verify centos-4-i386-default.tar.gz.asc&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
You should see something like this:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
gpg: Signature made Wed Dec 14 19:13:53 2005 MSK using DSA key ID A7A1D4B6&lt;br /&gt;
gpg: Good signature from &amp;quot;OpenVZ Project &amp;lt;security@openvz.org&amp;gt;&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category: Infrastructure]]&lt;br /&gt;
[[Category: Security]]&lt;/div&gt;</summary>
		<author><name>Vvs</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.openvz.org/index.php?title=Template:Main_page_announce&amp;diff=23334</id>
		<title>Template:Main page announce</title>
		<link rel="alternate" type="text/html" href="https://wiki.openvz.org/index.php?title=Template:Main_page_announce&amp;diff=23334"/>
		<updated>2020-07-16T17:46:42Z</updated>

		<summary type="html">&lt;p&gt;Vvs: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:OpenVZ_banner_20200706_clear_2.jpg|link=https://go.virtuozzo.com/l/148051/2020-07-13/534t8l]]&lt;br /&gt;
&amp;lt;br clear=all&amp;gt;&lt;/div&gt;</summary>
		<author><name>Vvs</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.openvz.org/index.php?title=File:OpenVZ_banner_20200706_clear_2.jpg&amp;diff=23333</id>
		<title>File:OpenVZ banner 20200706 clear 2.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.openvz.org/index.php?title=File:OpenVZ_banner_20200706_clear_2.jpg&amp;diff=23333"/>
		<updated>2020-07-16T17:44:04Z</updated>

		<summary type="html">&lt;p&gt;Vvs: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Vvs</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.openvz.org/index.php?title=Hosting_providers&amp;diff=23329</id>
		<title>Hosting providers</title>
		<link rel="alternate" type="text/html" href="https://wiki.openvz.org/index.php?title=Hosting_providers&amp;diff=23329"/>
		<updated>2020-06-24T21:01:23Z</updated>

		<summary type="html">&lt;p&gt;Vvs: Reverted edits by 139.167.104.108 (talk) to last revision by Vvs&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''OpenVZ is free and open implementation of Virtuozzo containers for Linux.&lt;br /&gt;
Don't forget to keep [[testimonials|testimonial]] and [[donate]] to OpenVZ.'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
OpenVZ makes for a great hosting platform for VPS hosting. The providers below offer VPS services using OpenVZ.&lt;br /&gt;
&lt;br /&gt;
[[File:UsageLocation.svg]]&lt;br /&gt;
&lt;br /&gt;
= OpenVZ hosting providers =&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- @@@@@@@@@@@@@@@@@@@@@@@&lt;br /&gt;
&lt;br /&gt;
IF YOU EDIT THIS PAGE,  PLEASE OBEY TO THE FOLLOWING RULES:&lt;br /&gt;
&lt;br /&gt;
1. Keep your record on ONE line&lt;br /&gt;
2. Keep the list of providers alphabetically sorted, DO NOT insert your record on top.&lt;br /&gt;
3. Keep the list of countries alphabetically sorted as well.&lt;br /&gt;
&lt;br /&gt;
     @@@@@@@@@@@@@@@@@@@@@@@@ --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Andorra ==&lt;br /&gt;
* [https://www.actiu.net/pro/ Actiu informatica] amb servidors dins i fora del principat.&lt;br /&gt;
&lt;br /&gt;
== Argentina ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.fulltech.com.ar/ Full Tech Solutions] Specializes in the virtualization of OpenVZ &amp;amp; Virtuozzo containers, installed in the Full Tech Solutions Data Center located in Villa Elisa, Entre Rios Argentina.  It also offers services hosted in the United States, Netherlands and Germany&lt;br /&gt;
* [http://www.g2khosting.com/ G2K Hosting] offer OpenVZ containers with high level hardware technology from 25 US with Control Panel, various Linux Dists and full support.&lt;br /&gt;
* [https://hostingplus.com.ar/ HostingPlus Argentina] provide OpenVZ containers at our own datacenter in South America with triple internet provider. Starting from  us20/month&lt;br /&gt;
* [https://ibumu.com/ Ibumu] Best containers for wordpress starting from $5.5.&lt;br /&gt;
* [http://www.ihserver.net/ IHServer] Specialized virtualization on OpenVZ containers at Gigared datacenter. We have in Argentina one of the better fiber connection to the US, but also provides services from LSTN in Texas.&lt;br /&gt;
* [https://www.infranetworking.com.ar/ Infranetworking] All our Cloud VPS container solutions for Argentine customers are powered by the all mighty OpenVZ virtualization software.&lt;br /&gt;
* [https://www.neolo.com/ Neolo] provide OpenVZ containers at our own datacenter in South America with double internet provider. Choose your Linux OS and apps. Full support.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [http://www.wiredhosting.com.ar/ WiredHosting] offer XEN and OpenVZ containers with SSD drives, cloudflare security and weekly backups to protect your information. Phone and Helpdesk support. &lt;br /&gt;
&lt;br /&gt;
== Australia == &lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.auhost4u.com/ AUHost4u] - VPS Solutions provided from our D.C. in Sydney.&lt;br /&gt;
* [https://www.conetix.com.au/ Conetix Hosting] Specialising in business grade, fully managed Virtuozzo containers with Virtuzzo Cloud Storage. 100% Australian owned and operated. Brisbane based DC with Enterprise Dell servers.&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides self-managed OpenVZ based SSD VPS located at Equinix SY3 in Sydney, one of the best and well-connected datacenters in the region.&lt;br /&gt;
* [http://www.vpsfast.us/australia-cloud-server VPSFast] - VPS Provider with good prices in Australia.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Austria ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
* [https://kapper.net/ kapper.net] kapper.net offers OpenVZ and Virtuozzo (and other HyperVisors) based server-solutions with kind support and 24x7 maintenance.&lt;br /&gt;
* [https://mdhost.eu/vserver.php MDHost.eu] New Hosting Provider with nice Prices and many Server locations. Austria, Germany, France and more.&lt;br /&gt;
* [https://www.snb.at/ SNB] offers OpenVZ containers and support's also existing vm's in customers environment&lt;br /&gt;
* [https://www.waveride.at/ Waveride] Waveride, an EDIS company, offers budget full gigabit OpenVZ + solusVM VPS in Austria, USA and the Netherlands&lt;br /&gt;
* [http://www.vpsfast.us/austria-cloud-server VPSFast] - VPS Provider with good prices in Austria.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Brazil ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.datacorporate.com.br/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [http://www.globalmedia.com.br/ GlobalMedia] We offers OpenVZ containers hosted on a very fast network with fast setup. Ubuntu, Debian, CentOS.&lt;br /&gt;
* [http://www.host1plus.com.br/ Host1Plus] Servers hosted in São Paulo. We offering reliable and secure OpenVZ VPS Servers with 99.99% up-time, starting from $5.00 per month.&lt;br /&gt;
* [http://www.ipdeck.net/ IPDECK] VPS Linux server from R$15,00/month! Fully customizable according to your needs.&lt;br /&gt;
* [https://www.quantivehost.com.br/ QuantiveHost] VPS Linux with 99.99% uptime. Prices starting from R$ 29,35.&lt;br /&gt;
* [https://www.elevahost.com.br/ Eleva host] Server hosted in Brazil. The best support.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [https://www.ferenz.com.br/ Ferenz Networks] VPS Linux with best support. Prices starting from R$ 29,90.&lt;br /&gt;
&lt;br /&gt;
== Bulgaria ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.cloudhostinghub.com Offshore VPS Hsoting] CloudHostingHub.com is an [https://www.cloudhostinghub.com Cloud Offshore VPS Hosting] located in Buglaria. They provide both OpenVZ and KVM virtualization. CloudHostingHub.com is known for the high privacy protection , performance and stability.&lt;br /&gt;
* [https://www.cyberhour.com CyberHour.com] CyberHour.com is an [https://www.cyberhour.com offshore VPS hosting] provider located in Europe. The provide blazing fast servers and premium Bandwidth of 200Mbps. With high privacy protection.&lt;br /&gt;
* [https://www.linuxssdvps.com Bulgaria VPS] Linux SSD VPS is an [https://www.linuxssdvps.com offshore VPS hosting] provider located in Sofia, Bulgaria. Privacy is very respected and anonymous registrations are allowed, as well as payments via Bitcoin / PayPal.&lt;br /&gt;
* [http://www.webuzo.net Bulgaria VPS] Webuzo Network is an offshore SSD VPS hosting provider located in Bulgaria. Privacy is very respected and anonymous registrations are allowed, as well as payments via Bitcoin / PayPal.&lt;br /&gt;
* [https://vpsbg.eu/en Bulgaria VPS] VPSBG.eu is an offshore SSD VPS hosting provider located in Sofia, Bulgaria. Privacy is very respected and anonymous registrations are allowed, as well as payments via Bitcoin.&lt;br /&gt;
* [http://www.bul.net/ Bul.net] Provides OpenVZ based VPS, perfect user/VPS management via [http://ispsystem.com VDSManager]. Instant creation after online payment. Debian/Ubuntu/CentOS with ISPManager Control panel. Optimal price policy.&lt;br /&gt;
* [http://www.cointech.eu/vps-hosting/ CoInTech] provides OpenVZ based VPS containers, free webmin managment. Containers can be CentOS, Slackware, Ubuntu, custom or our special [http://www.mandriva.com Mandriva Linux] container with own [http://mandriva.cointech.net repository].&lt;br /&gt;
* [http://www.rax.bg/ RAX.bg] Offers OpenVZ based VPS, hosted on a clustered infrastructure and redundant network. Easy to use user management, Instant setup, CentOS (OS).&lt;br /&gt;
* [http://www.jump.bg/ Jump.bg] Provides OpenVZ VPS servers hosted on a redundant network which provides a very easy to manage platform for all clients which gain instant access to their OS ( Ubuntu, CentOS , Debian etc ... )&lt;br /&gt;
* [https://www.fitvps.com/ FitVPS.com] Offers affordable and reliable OpenVZ based VPS in Varna, Bulgaria. Own data center, own multihomed network, with SLA. Instant automatic setup, SolusVM control panel.&lt;br /&gt;
* [http://www.qhoster.com/ QHoster.com] Instant activation OpenVZ VPS in UK, USA, Germany, France and Switzerland. Both 32/64 bit OpenVZ OS VPS templates : CentOS 5/6, Debian 6/7, Ubuntu 12/13.&lt;br /&gt;
* [https://www.verdina.net Verdina.NET] Verdina.net offers dedicated hosting services, provided by powerful dell hardware. Servers are located in Telepoint Datacenter, a Tier 3 DC located in Sofia, Bulgaria.&lt;br /&gt;
* [https://www.vps.ag/ VPS.AG] Affordable and reliable OpenVZ VPS based in Sofia, Bulgaria. Instant setup and 24/7 support.&lt;br /&gt;
* [http://www.vpsfast.us/bulgaria-vps VPSFast] - VPS Provider with good prices in Bulgaria.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Canada ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://4goodhosting.com/linux-vps-hosting 4GooodHosting] - Canadian OpenVZ VPS Servers, Starting from  $18.99/month SSD,. Canada VPS hosting in three different Canadian Data Centers with nightly backups.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [https://whc.ca/canadian-cloud-servers Web Hosting Canada Cloud Servers] - Powerful Cloud servers powered by OpenVZ and located in Canadian datacenters, with fast RAID-10 storage, fully managed with cPanel.&lt;br /&gt;
* [http://compevo.com compevo Clustered VPS Server Hosting Provider] - We offer clustered VPS Servers to avoid downtime and dataloss. Our network and service is second to none and is used by businesses around the world.&lt;br /&gt;
* [http://www.datacorporate.ca/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [https://www.delimiter.com/storage-vps/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [https://www.miditech.com/ MidiTech Hosting Canada] VPS hosting offered by MidiTech Canada are powered by VMware, . Fully Managed VPS with control panels&lt;br /&gt;
* [http://www.gotekky.com Gotekky Cloud VPS Hosting] High quality Cloud VPS packages powered by our own infrastructure and network in Toronto. Scalable from our $5/mo plan all the way to your own dedicated cloud server. Based on OpenVZ and our own proprietary panel.&lt;br /&gt;
* [https://gigebox.com GIGEBOX.COM] GIGEBOX are expert providers of secure business hosting services, we operate high-performance professional servers, specially designed for businesses, powered by the Intel(R) Xeon(R) Hexa-Core CPU Processors and 128 GB DDR3 minimum RAM. Enjoy high availability, performance and security for multiple uses.&lt;br /&gt;
* [http://www.letstalkdigital.com/index.php?option=com_content&amp;amp;view=article&amp;amp;id=73&amp;amp;Itemid=65 LetsTalkDigital VPS Hosting] LetsTalkDigital.com offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from $14.99. Virtual Private Server (VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://secure.media-hosts.com/link.php?id=7 Media-Hosts.com] Provides Quality and Scalable OpenVZ based Virtual Private Servers. 100% network uptime guaranteed. Located in Montreal Quebec with 5 Tier1 upstream providers.&lt;br /&gt;
* [http://www.openvz.ca OpenVZ.ca] Canadian Budget VPS Servers on OpenVZ Platform. &lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [http://protoserver.com ProtoServer] Advanced VPS Hosting from $4.95/month. Many pre-installed VPS Templates available (CMS, E-commerce, Web development, Online community, Media streaming, etc.) No bundles or service plans - mix VPS resources as needed and change VPS configuration anytime. Also offering DNS Hosting, E-mail hosting, Domains Registration.&lt;br /&gt;
* [http://www.vistapages.com/vps Vistapages VPS] - IBM &amp;amp; Dell Hardware. MCI/Verizon Backbone. Distros: Centos, Fedora, Debian &amp;amp; more. Full management available. Located in Toronto.&lt;br /&gt;
* [http://vpsville.ca/ VPSVille] - Good network. Good CPU. Good choice of distros: Centos, Fedora, Debian, Ubuntu, Slackware, Gentoo, OpenSUSE, CERN. My favorite OpenVZ provider. [mailto:jak@isp2dial.com John Kelly]&lt;br /&gt;
* [http://solib.ca/services-offerts/hebergement-haute-vitesse/serveurs-vps/ SOLIB Logiciel Libre Québec] Our company offers DDoS protected server solutions including OpenVZ containers. Very high availability and reliability, all our VPS are located in Quebec, Canada.&lt;br /&gt;
* [https://www.host-stage.net/linux-vps/ HostStage - Linux VPS] - Simple, Reliable OpenVZ VPS packed with 1 GBPS port speed, RAID 10 SSD, Intel Xeon CPU, DDoS Protection from $4.95/month&lt;br /&gt;
* [https://undergroundprivate.com/russiaoffshorevps.html  UndergroundPrivate.com] - OpenVZ with highly privacy, offshore , DMCA ignored , high confidence, SolusVM and cPanel, managed and non managed service.&lt;br /&gt;
* [http://www.vpsfast.us/canada-vps VPSFast] - VPS Provider with good prices in Canada.&lt;br /&gt;
* [https://websavers.ca/canadian-vps-hosting Websavers Inc in Halifax] - VZ containers priced by the resource. Resource changes entirely client-level.&lt;br /&gt;
* [https://www.yoorshop.fr/hosting-ssd-vps-usa-canada.php YOORshop SAS] - High performance NVMe SSD Linux VPS in Canada, daily backup included. Starting from €7,49 /month&lt;br /&gt;
&lt;br /&gt;
== Colombia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.datacorporate.co/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [http://www.soficol.com/ Soficol] Offers Enterprise OpenVZ based VPS, hosted on a clustered infrastructure and redundant network. Easy to use user management and instant setup.&lt;br /&gt;
* [https://www.hostingplus.com.co/ Hosting Plus Colombia] provide OpenVZ containers at our own datacenter in South America with triple internet provider. Starting from  us20/month&lt;br /&gt;
* [https://ibumu.com/ Ibumu] Best containers for wordpress starting from $5.5.&lt;br /&gt;
&lt;br /&gt;
== Czech Republic ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://4smart.cz 4Smart.cz] - prepaid, you are charged only by the system resources you use, therefore you can run a VPS for as little as  1 EUR a month if your vps is not resource hungry. Even if you pay  0,50 EUR  month, you still have 3 GB of RAM and 8 cores available to you VPS.&lt;br /&gt;
* [http://www.freecloud.cz FREECLOUD.CZ] - Free OpenVZ VPS Server - own IP, 800Mhz CPU, 512MB RAM, 50Mbits LAN, 10GB HDD, 100GB Traffic - Debian, Ubuntu, Gentoo, Slackware, Fedora, Centos&lt;br /&gt;
* [http://www.hukot.cz Hukot.cz] - OpenVZ VPS Servers starting from 2.92 €, XEON, 1 Gbps uplink, unlimited traffic. Debian, Ubuntu, CentOS, Scientific, SuSe, Fedora, Elastix.&lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [http://www.ultimatehosting.eu UltimateHosting.eu] - OpenVZ VPS Servers starting from $8 with custom configuration - up to 100 GB HDD, 2048 MB RAM, 2 GHz CPU, and unlimited traffic.&lt;br /&gt;
* [http://www.mujhost.net MUJHOST.NET] - OpenVZ VPS Servers starting from 160 Kč, 100Mbps / 1 Gbps uplink, unlimited traffic. Debian, Ubuntu, CentOS ...&lt;br /&gt;
&lt;br /&gt;
== Chile ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.1h.cl/ 1h.cl Vps - Chile] - VPS High Performance with OpenVZ in Chile&lt;br /&gt;
* [http://www.1hosting.cl/ 1hosting Virtual servers - Chile] - VPS Professional with OpenVZ&lt;br /&gt;
* [http://www.dch.cl/ DCH] - DCH.cl Hosting Chile - High Performance VPS Servers with OpenVZ &lt;br /&gt;
* [https://www.dominioweb.net/ Dominioweb] - Premium Hosting and domain registration&lt;br /&gt;
* [http://ecohosting.cl/ EcoHosting.cl Santiago - Chile] - VPS with OpenVZ in Chile&lt;br /&gt;
* [http://www.host.cl/ Host.cl] - Cloud Computing&lt;br /&gt;
* [https://www.hostingplus.cl/ HostingPlus Internet Limitada] - High Performance Vps provider in Chile&lt;br /&gt;
* [https://www.hostname.cl/ Hostname Ltda] - VPS Hosting with Datacenter in Chile&lt;br /&gt;
* [https://www.inc.cl/ INC Internet Limitada] - VPS Hosting provider in Chile&lt;br /&gt;
&lt;br /&gt;
== Denmark ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.vpsfast.us/denmark-cloud-server VPSFast] - VPS Provider with good prices in Denmark.&lt;br /&gt;
&lt;br /&gt;
== Ecuador ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.dedi.space/ DediSpace Telecom] - VPS Servers in Ecuador - USA, France, Germany, Ecuador Datacenter.&lt;br /&gt;
&lt;br /&gt;
== France ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.BargainVPS.co.uk/ BargainVPS] - UK / US / EU Instant setup VPS - We have some great Linux &amp;amp; Windows Bargain VPS packages on offer for you here all available Fully Managed.&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in France from 1.88EUR/month.&lt;br /&gt;
* [http://www.fixweb.com Fixweb] Great managed hosting provider with strong anti ddos solution - openvz only - leader in managed openvz solution with horizontal scaling and high availability&lt;br /&gt;
* [http://www.Freaksol.com/ FreaKs VPS Hosting] Self reliant hosted on independent networks &amp;amp; DC low ping,No restrictions on file types,Unlimited resources,high ram servers &lt;br /&gt;
* [https://galaxyhostplus.com/ovz GalaxyHostPlus] Cheap VPS Hosting based in Roubaix with new 2016 line starts from $2/Month &lt;br /&gt;
* [http://www.harmony-hosting.com Harmony-Hosting] A high performance VPS hosting - The leader in France&lt;br /&gt;
* [https://www.delimiter.com/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [http://www.lws.fr/serveur_dedie_linux.php LWS - Linux VPS ] - Linux VPS Hosting - Only 9.99€/month, Affordable and Secure OpenVZ VPS Servers with 99.99% up-time, web hosting control panel Included. French datacenter&lt;br /&gt;
* [http://www.ovh.co.uk/vps/ OVH VPS] linux from 3€/month, [http://www.ovh.co.uk/vps/vps-cloud.xml windows] from 12€/month.&lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [https://VPSZ.FR VPSZ] VPS Hosting in France. Starting from 2,99€, Unlimited traffic.&lt;br /&gt;
* [http://www.1euro-hosting.eu BEST EU VPS - 1€ Hosting] - Providing reliable and secure OpenVZ VPS Servers with 99.99% up-time, starting from 8€&lt;br /&gt;
* [https://www.shape.host/linux-vps/ Shape Host - Linux VPS] - OpenVZ virtual servers, Instant Linux VPS&lt;br /&gt;
* [https://undergroundprivate.com/russiaoffshorevps.html  UndergroundPrivate.com] - OpenVZ with highly privacy, offshore , DMCA ignored , high confidence, SolusVM and cPanel, managed and non managed service.&lt;br /&gt;
* [https://www.host-stage.net/linux-vps/ HostStage - Linux VPS] - Simple, Reliable OpenVZ VPS packed with 1 GBPS port speed, RAID 10 SSD, Intel Xeon CPU from $4.95/month&lt;br /&gt;
* [https://www.yoorshop.hosting/hosting-vps-ssd-europe.php YOORshop SAS] - High performance NVMe SSD OpenVZ 7 VPS within 13 countries in Europe, Canada and Singapore. Daily backup included. From €7,49 /month&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Germany ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://afterburst.com Afterburst (Previously FanaticalVPS)]: affordable unmetered, unmanaged VPS servers in Germany.&lt;br /&gt;
* [http://www.b2b-hosting.de/vps/ B2B Hosting]: Professional virtual servers for business applications. Performance and reliability at a fair price. Made with OpenVZ.&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in Germany from 1.88EUR/month.&lt;br /&gt;
* [https://www.delimiter.com/dedicated-servers/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [https://galaxyhostplus.com/ovz GalaxyHostPlus] Cheap VPS Hosting based in Frankfurt with new 2016 line starts from  $2/Month&lt;br /&gt;
* [http://hostmist.com/openvz-vps-germany.html Host Mist]: features budget OpenVZ VPS hosting in Germany.&lt;br /&gt;
* [http://www.host1plus.com/ Host1Plus] Servers based in Frankfurt am Main. Offering reliable OpenVZ based VPS servers in Germany starting from $2.50 per month.&lt;br /&gt;
* [http://www.hostingjuice.com/ HostingJuice] The Superioum VPS and Web Hosting provider, low prices - Premium packages.&lt;br /&gt;
* [http://www.ingate.de/managed-server.html Ingate] offers managed servers with openVZ virtualization. located in germany, great support.&lt;br /&gt;
* [http://linevast.de/angebote/linux-openvz-vserver-mieten.html Linevast] Reliable OpenVZ based VPS with fast support, located in germany&lt;br /&gt;
* [https://cp.myvirtualserver.com/?affid=42 MyVirtualServer]: Cheap VPS (OpenVZ/KVM, 5TB Traffic, 10Gigabit), servers located in Frankfurt (best ping, starting 1.99€) good support (en/de) //New Design!&lt;br /&gt;
* [https://www.nogics.com Nogics Technologies]: Affordable VPS based in Germany. Starts from $5.96/mo.&lt;br /&gt;
* [http://www.plambee.de/vserver.php Plambee.de Webhosting]: Powerfull OpenVZ based VPS servers at low cost with hosting in Germany&lt;br /&gt;
* [https://rackset.com/ Rackset Hosting] Managed Dedicated / VPS and Website Hosting services since 2004.&lt;br /&gt;
* [http://www.serverbiz.de/vserver Serverbiz] Powerful VPS at very low prices.&lt;br /&gt;
* [http://www.synapseglobal.com/voip_vps.html SynapseGlobal.com] Elastix, Trixbox, PBX in a Flash and Asterisk VPS - OpenVZ based Asterisk VOIP servers located in Munich Germany.&lt;br /&gt;
* [http://www.vStarVPS.com vStarVPS]: Reliable VPS Hosting at lowest prices, with 99.9% uptime, Premium Unmetered Bandwidth and Custom HDD/RAM of your choice. Instant and FREE Setup. RapidLeech Allowed.&lt;br /&gt;
* [http://whynotavps.com WhyNOTaVPS]: Instant activated VPS SERVERS!!&lt;br /&gt;
* [http://squote.de/index.php?ref=1421485383 SQuote]: SQuote VPS Hosting and more. VPS 1 Core, 1.024MB RAM, 512MB RAM SWAP, 50 GB HDD, 1x IPv4. 3,89EUR/month. For the best VPS SQuote.de&lt;br /&gt;
* [http://www.vpsfast.us/germany-vps VPSFast] - VPS Provider with good prices in Germany.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Guatemala ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.globalnetcafe.com/gnc/menu/hospedaje.htm Global Net Cafe]: Servicios de hospedaje, reseller, vps, colocacion y servidores. Incluyendo OpenVZ.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Hong Kong ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [https://hostus.us HostUS] features unmanaged and managed OpenVZ VPS in Hong Kong as well as 3 USA locations. Unparalleled connectivity to the Asia Pacific. Enjoy 15% off with coupon VPS15OFF.&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides self-managed OpenVZ based SSD VPS in Hong Kong, located at the Pacnet datacenter. &lt;br /&gt;
* [http://vps.timway.com/linux_vps.html Timway VPS Hosting] - Quality, non-oversold hosting provider focused on being security conscious and offering a positive client experience.   Centos, Debian, Fedora, OpenSuse and Ubuntu Containers are available.&lt;br /&gt;
* [http://www.vpsfast.us/hong-kong-cloud-server VPSFast] - VPS Provider with good prices in Hong Kong.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Hungary ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://elin.hu/index.php?menu=8&amp;amp;nyelv=hu&amp;amp;cim=Virtualis-szerver Virtual server] OpenVZ server: 2xX5650 Intel Xeon, 32GB RAM, 15.000rpm SAS disks, 100Mbit/s, unlimited bandwith.&lt;br /&gt;
* [https://www.ivirtual.co/vps-hosting/ iVirtual.co ] OpenVZ Master Server: 2x Intel Xeon @ 3.0GHZ, 64 GB ECC Ram, 15k RPM SAS HDD's, 1Gbit/s Network, Unlimited bandwith.&lt;br /&gt;
&lt;br /&gt;
== Iceland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
&lt;br /&gt;
== Ireland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== India ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://cochinwebhost.in/budget-vps-hosting/ Low Cost VPS Hosting] Fast SSD VPS Server for Hosting Solutions at budget prices with 24x7 Technical Support.&lt;br /&gt;
&lt;br /&gt;
* [http://www.datacorporate.in/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
&lt;br /&gt;
*[http://www.fastwebhost.in/vps-hosting.html fastwebhost VPS Hosting] VPS hosting offered by fastwebhost are powered by ''VPS hosting, virtual server hosting and Linux VPS hosting services''. Fully Managed VPS with control panels.&lt;br /&gt;
&lt;br /&gt;
* [http://www.Freaksol.com/ Freaksol VPS Hosting] Self reliant hosted on independent networks &amp;amp; DC low ping to India,No restrictions on file types,Unlimited resources,high ram servers&lt;br /&gt;
&lt;br /&gt;
* [https://www.geniushost.in Genius Host] Fully managed [https://www.geniushost.in SSD Web Hosting] offered by Genius Host are powered by ''OpenVZ'' With LiteSpeed Web Server &amp;amp; Mariadb.&lt;br /&gt;
&lt;br /&gt;
* [http://www.hioxindia.com/virtual-private-server.php VPS Hosting] Reliable and quality VPS Virtual Private Server Hosting&lt;br /&gt;
&lt;br /&gt;
* [https://www.hostnamaste.com HostNamaste] is your high-performance [https://www.hostnamaste.com/openvz-vps.php OpenVZ VPS Hosting] Provider. Get your perfect [https://www.hostnamaste.com/openvz-vps.php VPS Hosting] account today! Available in [https://www.hostnamaste.com/datacenter-losangeles.php Los Angeles], [https://www.hostnamaste.com/datacenter-dallas.php Dallas], [https://www.hostnamaste.com/datacenter-jacksonville.php Jacksonville], USA,  [https://www.hostnamaste.com/datacenter-france.php France], Europe, [https://www.hostnamaste.com/datacenter-mumbai-pune.php Mumbai], India and [https://www.hostnamaste.com/openvz-vps-moscow-russia.php Moscow], Russia.&lt;br /&gt;
&lt;br /&gt;
* [https://www.hostsoch.in/windows-hosting.html HostSoch Windows Hosting] Windows hosting offered by HostSoch are powered by ''Windows 2012, ASP.NET, MVC, IIS, PHP and More''. 99.9% Uptime, 24/7 Dedicated support guaranteed. &lt;br /&gt;
&lt;br /&gt;
* [https://www.miditech.co.in/ MidiTech VPS Hosting] VPS hosting offered by MidiTech are powered by ''VMware, ''. Fully Managed VPS with control panels. &lt;br /&gt;
&lt;br /&gt;
* [http://www.milesweb.com/vps-hosting.php Milesweb VPS Hosting] VPS hosting offered by Milesweb are powered by ''VMware, OpenVZ''. Fully Managed VPS with control panels. &lt;br /&gt;
&lt;br /&gt;
* [https://www.nogics.com/web/vps-hosting/ Nogics Technologies] Instant provisioning of VPS, VPS starts from $5.96/mo. 30+ OS templates.&lt;br /&gt;
&lt;br /&gt;
* [http://overlineindia.net/vpshosting-p-62.html Overline India VPS Hosting] Fully managed cPanel Installed VPS Hosting with 24x7x365 Live Chat Tech support, powered by OpenVZ&lt;br /&gt;
&lt;br /&gt;
* [http://www.prohosterz.com/linux-vps.php ProHosterZ VPS Hosting] Reliable and quality Virtual Dedicated Servers | Virtual Private Servers | XEN VPS | OpenVZ VPS | Virtual Hosting&lt;br /&gt;
&lt;br /&gt;
* [http://pve.proxmox.com/wiki/User:Apmuthu Ap.Muthu] sponsored by [http://www.gnuacademy.org GNUAcademy], [http://www.planettel.com.sg PlaNetTel] and [http://www.sacollege.net S A College] creates OpenVZ Templates for the Open Source Community and provides hosting in datacenters of clients choice or on site.&lt;br /&gt;
&lt;br /&gt;
* [http://www.servers.co.in/vps/vps_hosting.php Server Web Hosting] Offers Fully Managed OpenVZ VPS Web hosting in India/US/UK at affordable and cheap rates with best hardware quality and customer service 24/7/365 days&lt;br /&gt;
&lt;br /&gt;
* [http://vpsbeach.com VpsBeach Managed Hosting] Fully managed cPanel Installed VPS Hosting with 24x7x365 Live Chat Tech support, powered by OpenVZ&lt;br /&gt;
&lt;br /&gt;
* [http://www.vpsfast.us/india-vps VPSFast] - VPS Provider with good prices in India.&lt;br /&gt;
&lt;br /&gt;
* [http://www.vpshostingindia.net/ VPS Hosting India, Fully Managed Server] A Committed Fully Managed VPS Server for Hosting solution in India, Complete Technical Support assistance with commitment of fast, clustered and most supportive DataCenters.&lt;br /&gt;
* [http://touchstone.hosting/ Touchstone Solutions Private Limited] High-performance Enterprise VPS Hosting in India. One of the highest performing VPS Servers available with cPanel Installed.&lt;br /&gt;
* [http://www.hostitsmart.com/ Host IT Smart] - One of the best VPS Hosting Provider in India with 24X7X365 Customer support.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Indonesia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.herza.id/vps-murah/ Herza.ID] Low Cost OpenVZ Virtual Server, starting from IDR 50.000 / Month with RAID 10 SSD, Unlimited Bandwidth with 1 Gbps IIX &amp;amp; OIXP Connection, and 24/7 Technical Support.&lt;br /&gt;
&lt;br /&gt;
== Iran==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.ehost.ir EHost.ir] - OpenVZ Servers , DUAL XEON Cpus , 12 Gb Ram , 100Mbit Dedicated Connection , SAS HardDisk&lt;br /&gt;
* [http://www.vpsfa.com VPSFa.com] - OpenVZ Servers , DUAL XEON Cpus -  , 24Gb Ram , 1000Mbit Dedicated Connection , SAS HardDisk&lt;br /&gt;
* [https://webramz.com Webramz Host] - With more than 15 years experience in Managed Hosting, Webramz was first vps provider in Iran which used to setup OpenVZ servers. Nowadays we provide wide range of services including CloudLinux based OpenVZ and Managed Vps Servers.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Italy ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
* [http://www.hosting-italia.net hosting italia] - OpenVZ Servers and panel enduser Virtualizor Intel® Core™ i7-920 Quad-Core 48 GB DDR3 RAM - Guaranteed Bandwidth 200 Mbit/s&lt;br /&gt;
* [http://www.vpsfast.us/italy-vps VPSFast] - VPS Provider with good prices in Italy.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Liechtenstein ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
&lt;br /&gt;
== Lithuania ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.cloudlix.com/ CloudLix.com] - Managed and unmanaged OpenVZ virtual servers based on 2.6.32 kernel. Up to 20GHz (Intel SandyBridge) CPU and 10GB RAM. Located in Vilnius and Siauliai.&lt;br /&gt;
* [http://www.databank.lt/ databank.lt] - high-quality professional OpenVZ hosting with cloud computing solutions.&lt;br /&gt;
* [https://www.hostens.com/vps-hosting/ Hostens] - Unmanaged VPS hosting for the great price: clear deals, no hidden conditions, quality service from the heart of Europe. &lt;br /&gt;
* [https://www.lavavps.lt/ lavavps.lt] - Professional high-quality OpenVZ containers (VPS servers) affordable for everyone. Powerful control panel for VPS management.&lt;br /&gt;
* [https://monovm.com/ monovm.com] - High Quality VPS Hosting Provider&lt;br /&gt;
* [http://www.serveriai.lt/ Serveriai.lt] - Affordable OpenVZ containers on quality HP hardware. Wide choice of virtual dedicated servers up to 8 CPU cores and 8 GB RAM. Full management available. Located in Vilnius.&lt;br /&gt;
* [https://www.time4vps.com/?affid=1359 Time4VPS] - Powerful cloud technology based infrastructure will let you build custom virtual machine and pay only for what you really need. Located in Vilnius city.(0.99€/month(2Yr) 512mbRAM, 1TB Traffic// 4.5€/month(2Yr) StorageVps, 1TB, 10TB Traffic)&lt;br /&gt;
* [https://www.vpsnet.lt/en/ VPSnet.lt] - Powerful and high quality servers for a competitive price in Lithuania (Eastern Europe).&lt;br /&gt;
* [http://www.vpsfast.us/lithuania-vps VPSFast] - VPS Provider with good prices in Lithuania.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Latvia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.altnet.lv/ Altnet] - Hosting and colocation services. Any flawor, you name it. &lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
&lt;br /&gt;
* [http://www.vpsfast.us/latvia-vps VPSFast] - VPS Provider with good prices in Latvia.&lt;br /&gt;
&lt;br /&gt;
== Luxembourg ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.vpsfast.us/luxembourg-vps VPSFast] - VPS Provider with good prices in Luxembourg.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Malaysia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.cubiex.com/ Cubiex] - Malaysia Affordable Web Hosting and Domain Name. Affordable Linux VPS Hosting in Malaysia. OpenVZ based, Quad Core Xeon node. cPanel/WHM and DirectAdmin also available.&lt;br /&gt;
* [https://controlvm.com ControlVM] ControlVM Sdn. Bhd. offering OpenVZ VPS in Singapore, Malaysia, USA and Germany.&lt;br /&gt;
* [https://www.yoorshop.fr/hosting-ssd-vps-singapore-asia.php YOORshop SAS] - High performance SSD Linux VPS In Singapore with daily backup included. Starting from €7,49 /month&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Malta ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.a6it.com/ A6iT] - Stable, quality managed OpenVZ VPSs based in Malta.  Redundant network.&lt;br /&gt;
&lt;br /&gt;
== Morocco ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.belsemtech.com/ BelsemTech.CoM] BelsemTech SARL offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from 300 DH. Virtual Private Server (VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://www.hostoweb.com/ HosToWeb] is the only company providing VPS hosting in Morocco Data Center.&lt;br /&gt;
* [http://www.adk-media.com/ ADK Media] provides affordable managed and unmanaged virtual servers based on OpenVZ, Xen Paravirtualization and Xen HVM platforms. 24/7 Technical Support. Distros: Centos, Fedora, Debian, Ubuntu and more.&lt;br /&gt;
* [http://www.naja7host.com/ Naja7Host.CoM] The Naja7host SARL provides affordable VPS hosting using the OpenVZ platform. Running on Full Quality Nodes of up to 8 CPU and 16 GB RAM. . All VPS's come with Real 24/7/365  Technical Support and cPanel free (if option selected  ). Multiple choice of OS 32/64Bits (Centos, fedora, ubuntu, debian .ect ...)&lt;br /&gt;
* [http://www.lehoster.com/ Le Hoster] offers affordable Virtual Private Servers using the OpenVZ and KVM platform. Backed with our amazing customer support.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Netherlands ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.avanpad.com/ Avanpad] offers OpenVZ VPS hosting with 24\7 online support. Customer can request different control panels or templates for installation on his VPS.&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in Netherlands from 1.88EUR/month.&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
* [http://www.Freaksol.com/ FreaKs VPS Hosting] Self reliant hosted on independent networks &amp;amp; DC low ping around the world,No restrictions on file types,Unlimited resources,high ram servers&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [http://www.HostSailor.com/ HostSailor] Number 1 Netherlands Provider HostSailor provides affordable &amp;amp; high quality services such as VPS (XEN, OpenVZ and KVM) Linux or Windows, Dedicated servers, SSL certificates and domain name services.&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides self-managed OpenVZ SSD VPS in Telecity AMS 5, one of the best datacenters located in the Amsterdam area.&lt;br /&gt;
* [https://iniz.com/ INIZ VPS Hosting] INIZ provides affordable VPS Hosting in Amsterdam, Netherlands with high resources at low prices.&lt;br /&gt;
* [https://www.liteserver.nl/ LiteServer] Looking for a quality and affordable VPS in the center of The Netherlands? We provide SSD, Storage and High Bandwidth VPSes, starting at only €16 per year. We operate AS60404.&lt;br /&gt;
* [https://www.mangelot-hosting.nl/ Mangelot Hosting] Mangelot Hosting, A webhosting company located in the Netherlands, offers budget OpenVZ hosting solutions for maximum scalability en performance.&lt;br /&gt;
* [http://www.osbox.nl OsBoX Dutch Network Engineering] Cheap VPS host as low as $1 per month. Very great uptime and a overall good support. Check the website for the server plans.&lt;br /&gt;
* [http://www.signet.nl/ Signet VPS Hosting] - Signet delivers VPS hosting plans based on CentOS or Debian templates, including control-panel Virtualmin.&lt;br /&gt;
* [http://simple-webhosting.eu/ Simple-webhosting.eu] - OpenVZ based web hosting starting from €0.98 per month.&lt;br /&gt;
* [https://www.seedvps.com SeedVPS] Provides Powerful &amp;amp; Reliable OVZ/KVM VPS Hosting in The Netherlands&lt;br /&gt;
* [http://www.touchvps.com/ TouchVPS] is a company who offer Support and Managed Services for OpenVZ Servers ,also offer templates for openvz ready to go with cPanel , DirectAdmin , Plesk , Games, IRC Services, Desktop and many more.&lt;br /&gt;
* [http://www.voipcomplete.com/product-overview/dedicated-vps.html VOIPcomplete] offers dedicated VPS plans based on CentOS including a VPS management interface.&lt;br /&gt;
* [https://www.waveride.at/ Waveride] Waveride, an EDIS company, offers budget full gigabit OpenVZ + solusVM VPS in Austria, USA and the Netherlands&lt;br /&gt;
* [https://undergroundprivate.com/russiaoffshorevps.html  UndergroundPrivate.com] - OpenVZ with highly privacy, offshore , DMCA ignored , high confidence, SolusVM and cPanel, managed and non managed service.&lt;br /&gt;
* [https://www.totallyhosted.nl/ TotallyHosted] OpenVZ based Premium VPS services located in the Netherlands @ Serverius DC.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [http://www.vpsfast.us/netherlands-vps VPSFast] - VPS Provider with good prices in Netherlands.&lt;br /&gt;
&lt;br /&gt;
== Norway ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.vpsfast.us/norway-vps VPSFast] - VPS Provider with good prices in Norway.&lt;br /&gt;
&lt;br /&gt;
== Pakistan ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://vimzaa.com/ Vimzaa] The best hosting in Pakistan.&lt;br /&gt;
&lt;br /&gt;
== Philippines ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.web.com.ph/vps.php Web.com.ph] - provides OpenVZ virtual servers in the Philippines.&lt;br /&gt;
&lt;br /&gt;
== Perú ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.hn.pe/ Hostname] Hostname offers business OpenVZ containers in Perú&lt;br /&gt;
* [http://www.hostingandino.pe/ Hostingandino Lima - Peru] - VPS with OpenVZ in Peru&lt;br /&gt;
* [http://www.hostingplus.pe/ HostingPlus Internet Limitada] - High Performance Vps provider in Peru&lt;br /&gt;
* [https://www.hostingroup.com/ Hostingroup] Web hosting for small businness in Perú.&lt;br /&gt;
* [https://hostingweb.pe/ Hosting Web] The best hosting in PERU.&lt;br /&gt;
* [https://www.inchosting.pe/ HostingINC SAC] OpenVZ virtualization solutions for business in Perú.&lt;br /&gt;
* [https://www.mejorhosting.pe/ Mejor Hosting Perú] Hosting comparison for peruvian hosting providers.&lt;br /&gt;
* [https://webuniversal.pe/ Web Universal] The best hosting in PERU in the World.&lt;br /&gt;
&lt;br /&gt;
== Poland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://hosteam.pl/ HosTeam] offers OpenVZ VPS hosting from their DataCenter in Poland. Customer has choice of all major Linux distros (WARNING!!! restoring your backup is VERY expensive and they charge even if it wasn't restored correctly!), NATIVE IPV6 AVAILABLE!&lt;br /&gt;
&lt;br /&gt;
* [http://ultimahost.pl/ UltimaHost] high grade OpenVZ VPS and FreeBSD jail (DC in Łódź, Poland), brand of statnet.pl, SSD available for more expensive packets, NO IPV6 AVAILABLE (but they can load you tun module)&lt;br /&gt;
&lt;br /&gt;
* [http://budgetvps.pl/ BudgetVPS] very cheap, low end grade OpenVZ VPSes (DC in Gdańsk, Poland), brand of HitMe.pl&lt;br /&gt;
&lt;br /&gt;
* [https://hitme.pl/ HitMe.pl] high grade OpenVZ/Xen PV/Xen HVM VPSes, Virtuozzo (DC in Gdańsk, Poland), NATIVE IPV6 AVAILABLE (/64 on demand for free)!&lt;br /&gt;
&lt;br /&gt;
* [http://www.kr-cpd.pl/oferta/serwery-vps/ KR-CPD] Cracow's Center of Data Processing (DC of course in Cracow, Poland)&lt;br /&gt;
&lt;br /&gt;
* [http://livenet.pl Livenet] cheap, middle/low end OpenVZ VPSes (DC in Łódź, Poland)&lt;br /&gt;
&lt;br /&gt;
* [http://slaskdatacenter.pl/ Śląsk Data Center] high/middle grade OpenVZ VPSes (DC in Silesia province, Poland), SSD available for more expensive packets&lt;br /&gt;
&lt;br /&gt;
* [https://www.ionic.pl/ IONIC.pl] VPS OpenVZ with SolusVM control panel, own DC in Cracow&lt;br /&gt;
&lt;br /&gt;
* [https://microvps.pl/ MicroVPS.pl] Middle And low end OpenVZv7 VPS plans. SSD for regular VPS and HHD for storage plans (up to 1TB)&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Portugal ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.ptservidor.pt/ PTServidor] - OpenVZ virtual servers with free management based in Portugal.&lt;br /&gt;
* [http://www.efeito.net/ Weblevel.pt] - OpenVZ virtual servers based in Portugal.&lt;br /&gt;
* [https://www.webtuga.pt/ WebTuga] - Managed/Unmanaged Virtual Private Servers hosted in a Portuguese Datacenter with lots of extras&lt;br /&gt;
* [https://www.cloudfire.pt/ CloudFire] - OpenVZ VPS at very low prices hosted in Portugal&lt;br /&gt;
* [https://www.linxisp.com/ LINXISP] - High Availability &amp;amp; Performance OpenVZ Containers&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] - Build an OpenVZ VPS in 14 locations WordWide From £2.49&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Romania ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.intovps.com IntoVPS] - offers unmanaged OpenVZ virtual servers based in Romania, Netherlands and USA. A lot of resources for decent prices.&lt;br /&gt;
* [http://www.ename.ro/dedicated.html eName] - managed OpenVZ virtual servers in Bucharest, Romania&lt;br /&gt;
* [http://www.ch-center.com/virtual-servers Ch-center] - unmanaged OpenVZ virtual servers, based in Romania in it's own Data Center&lt;br /&gt;
* [http://www.clouds.ro/servere-virtuale/ Clouds] - OpenVZ virtual servers hosted on premium hardware, in Romania&lt;br /&gt;
* [http://www.HostSailor.com/ HostSailor] HostSailor provides affordable &amp;amp; high quality OpenVZ and KVM servers in Romania&lt;br /&gt;
* [https://www.shape.host/linux-vps/ Linux VPS] - OpenVZ virtual servers, Instant Linux VPS&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Russia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.internoc24.host Internoc24.HOST] is an international [https://www.www.internoc24.host Offshore VPS ] provider with reliable SSD VPS in Moscow, Russia. Focus ist on high privacy protection so they accept several Cryptocurrencies like Bitcoin, Ethereum and others for anonymous payments.&lt;br /&gt;
* [http://www.ihc.ru/vps.html IHC.RU] - VPS hosting in Moscow, Russia starting at $10/month with good set of precreated templates&lt;br /&gt;
* [http://mchost.ru/services/linux-vps/ McHost.ru] - Linux VDS Hosting from McHost.&lt;br /&gt;
* [http://hosting.agava.ru/vps/ AGAVA] - Linux VPS hosting based on OpenVZ.&lt;br /&gt;
* [http://vdsplanet.ru/ VDSPlanet.ru] - unmanaged VDS/VPS hosting starting at 3.99$ a month. Large variety of OS templates and free ISPmanager Lite control panel. Total automation is our goal.&lt;br /&gt;
* [http://www.demos.ru/service/datacenter/vps.html Demos-Internet] - we offer OpenVZ Virtual Private Server based on Linux.  All VPS come with ISPmanager control panel.&lt;br /&gt;
* [http://www.net.ru/service/net9/ www.net.ru] - OpenVZ virtual private servers.&lt;br /&gt;
* [http://www.eurobyte.ru/ Eurobyte.ru] - Linux VDS Hosting from Eurobyte.&lt;br /&gt;
* [https://undergroundprivate.com/russiaoffshorevps.html  UndergroundPrivate.com] - OpenVZ with highly privacy, offshore , DMCA ignored , high confidence, SolusVM and cPanel, managed and non managed service.&lt;br /&gt;
* [http://www.telekom.ru/service/vps.html Elvis Telekom] - OpenVZ hosting with base and cpanel templates from Elvis Telekom.&lt;br /&gt;
* [http://fastvps.ru/vds/ FastVPS] - OpenVZ hosting, ISPmanager, Hetzner, MayFlower.&lt;br /&gt;
* [https://lepus.su/vps.html Lepus] - OpenVZ hosting, SSD, ISPmanager free, Hetzner.&lt;br /&gt;
* [http://www.hts.ru/vds/ HTS] - OpenVZ hosting, ISPmanager, Linux VPS hosting based on OpenVZ in Moscow.&lt;br /&gt;
* [https://selectel.ru/services/vds/ Selectel] - OpenVZ hosting.&lt;br /&gt;
* [https://galaxydata.ru/root-server/ GalaxyData] - Virtuozzo Containers in Cloud Storage.&lt;br /&gt;
* [http://hosterbox.ru/servers/ Hosterbox.ru] - Managed VPS hosting. Based on OpenVZ + SolusVM + ISPmanager.&lt;br /&gt;
* [https://firstvds.ru FirstVDS.ru] - One of the leading hosting companies providing virtual private servers.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Singapore ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://conceptlane.com/?t=hostingservices#ratesvps ConceptLane Pte Ltd] - OpenVZ VPS on dual octa-core AMD Opterons running Debian Wheezy 7, custom control panel with bandwidth graphs, reboot/reinit and web-based VNC access.&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [http://www.qoxy.com/vps QOXY.com] Affordable and Reliable OpenVZ VPS Hosting in a Singapore Data Center.&lt;br /&gt;
* [http://www.secureax.com/ SecureAX Pte Ltd] - Singapore Premium Internet Solution Provider&lt;br /&gt;
* [http://www.planettel.com.sg PlaNetTel] - Affordable and customised OpenVZ containers across 3 data centers - contact Thomas Festus at +65-66936881. [http://pve.proxmox.com/wiki/User:Apmuthu#Squeeze_based_Templates Sponsors OpenVZ Container Template]s for the Open Source community.&lt;br /&gt;
* [http://www.vpsfast.us/singapore-vps VPSFast] - VPS Provider with good prices in Singapore.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Serbia ==&lt;br /&gt;
* [https://www.skyhosting.rs/en/vps-servers SkyHosting] - Fast Linux OpenVZ VPS SSD Hosting with SolusVM control panel.&lt;br /&gt;
* [https://www.ninet.rs/en/vps-servers NiNet Company] - Linux OpenVZ VPS servers. Well known VPS hosting company from Serbia with their own data center&lt;br /&gt;
* [http://www.suonline.net SuOnline.Net ISP] - Linux OpenVZ VPS servers, Docker enabled !!!&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== South Africa ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.host1plus.com/ Host1Plus] - Local South African servers hosted in Johannesburg. OpenVZ VPS servers starting from $3.00 per month.&lt;br /&gt;
* [http://www.vps.co.za/ VPS.CO.ZA] - South Africa's oldest VPS provider. Local South African servers with SolusVM control panel. OpenVZ, Xen and OnApp Cloud.&lt;br /&gt;
* [http://247hosting.co.za/vpshosting.php 247Hosting] - OpenVZ virtual servers locally in South Africa with SolusVM control panel. cPanel option available!&lt;br /&gt;
* [http://www.SoftDux.co.za/ SoftDux] - OpenVZ virtual servers based America &amp;amp; South Africa. All VPS's come with cPanel or Plesk control panels. XEN VPS's also available.&lt;br /&gt;
* [http://www.clickworks.co.za/ Clickworks] - OpenVZ / Xen VPS servers hosted in RSA. Backed by Solusvm control panel.&lt;br /&gt;
* [http://www.elitehost.co.za/ Elite Host] - OpenVZ virtual servers based in America &amp;amp; South Africa. All VPS's come with cPanel and unlimited bandwidth.&lt;br /&gt;
* [http://www.telasera.com/ Telasera] - OpenVZ VPS servers hosted in South Africa. Supermicro Servers powered by Intel Xeon with 24/7 Support.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Spain ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.actiu.net/pro/ Actiu informatica]&lt;br /&gt;
* [http://www.corpresa.com/servidores-virtuales.html Corpresa Hosting] - Tiene algún proyecto entre manos y un plan de hosting no le hes sufuciente y un servidor dedicado no está dentro de su presupuesto?, una solución de VPS a medida será la que cubrirá todas sus necesidades.&amp;quot;&lt;br /&gt;
* [https://www.datomedia.es Datomedia] - Cloud alta disponibilidad powered by Virtuozzo 6 y Servidores VPS bajo openvz y kvm.&lt;br /&gt;
* [https://www.evidaliahost.com/vps/ EvidaliaHosting] - Servidores VPS totalmente configurados con panel de gestión Plesk 12.5, garantía de devolución de 30 días y posibilidad de discos SSD.&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
* [https://ginernet.com/vps-ssd.php GINERNET] - Servidores VPS alojados en España desde 1.99€/mes.&lt;br /&gt;
* [https://www.hostingplus.com.es Hosting Plus España] provide OpenVZ containers at our own datacenter. Starting from us20/month RAID 10 SSD.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Sweden ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.admax.se/vps/ Admax] - Admax offers enterprise grade virtual servers with great pricing. Custom control panel, API, remote access &amp;amp; more.&lt;br /&gt;
* [https://www.acon.se/vps Acon VPS Server] - VPS Server and Dedicated server provider in Sweden.&lt;br /&gt;
* [https://www.glesys.com/vps.php GleSYS] - VPS Provider with a great control panel and good prices&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides the highest quality SSD VPS in Stockholm, Sweden. Based on completely pure SSD in RAID-10 and delivering extremely high network &amp;amp; hardware performance along with reliability.&lt;br /&gt;
* [https://www.nametyper.com NameTyper] - VPS and Shared hosting provider. Customize your own OpenVZ Container with 1-12 cores running on SSD and ECC RAM. &lt;br /&gt;
* [https://virtualcenter.se VirtualCenter] - The first Cloud provider with SSD VPS in Sweden. Offer enterprise class hardware and network infrastructure&lt;br /&gt;
* [http://www.vpsfast.us/sweden-vps VPSFast] - VPS Provider with good prices in Sweden.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Switzerland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
* [http://www.vpsfast.us/switzerland-vps VPSFast] - VPS Provider with good prices in Switzerland.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Tanzania==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.aptus.co.tz/ Aptus Solutions] - OpenVZ / SolusVM VPS Servers located in Dar es Salaam - 100meg to TIX. CentOS &amp;amp; Ubuntu.&lt;br /&gt;
&lt;br /&gt;
== UK ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.34sp.com/ 34SP.com] - We're a UK based web hosting company, bridging the gap between sophisticated hosting solutions &amp;amp; affordable prices&lt;br /&gt;
* [http://www.AceShells.com/ AceShells] - Fast, stable, high quality UK based virtual private servers from just £5 a month, operating since 2001&lt;br /&gt;
* [http://www.AtlanticServers.com/ Atlantic Servers] - Affordable VPS, stable, high quality VPS, UK based Data Centre&lt;br /&gt;
* [https://awebhosting.uk/ AWebHosting.uk] VPS hosting offered by [https://awebsolutions.uk/ AWEBSOLUTIONS LIMITED] reliable UK hosting provider located in London, UK and Hosted in UK DataCentre.* [http://www.BargainVPS.co.uk/ BargainVPS] - UK / US / EU Instant setup VPS - We have some great Linux &amp;amp; Windows Bargain VPS packages on offer for you here all available Fully Managed.&lt;br /&gt;
* [http://www.cheapvps.co.uk/ CheapVPS] - CheapVPS provide cheap, UK based OpenVZ VPS servers. Hosted on high end hardware, in a top UK datacenter backed up with 24/7/365 support. Choice from a wide range of Linux distros. OpenVZ VPS managed with SolusVM.&lt;br /&gt;
* [http://www.chilliserver.com/ Chilliserver] - Affordable plans starting from just £3.99, not oversold. RHEL6 Kernel with VSwap, TUN/TAP/FUSE and ACL support enabled. SolusVM control panel with custom snapshot system and rescue system. Based in a European data Centre with UK based support.&lt;br /&gt;
* [http://www.chvps.com/ CHVPS] - Switzerland Based VPS, Cheap Pricing with solusVM control panel.&lt;br /&gt;
* [http://www.cislondon.co.uk/virtual-private-servers/ Commercial Internet Solutions] - CIS provides premium hosting at competitive rates, focused on Small Businesses within the M25 orbital. Hosting is on Dual Quad core Intel Xeon supermicro servers in Tier 4 datacenters around London.&lt;br /&gt;
* [http://www.datacorporate.co.uk/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [http://domvps.com/ domVPS] - OpenVZ Virtual Servers in the USA, Germany, France &amp;amp; the Netherlands at a low cost.&lt;br /&gt;
* [http://www.DubHosting.co.uk/ DubHosting] - DubHosting started in 2004 has been providing cost effective hosting to clients world wide. Fully managed OpenVZ servers based in Europe &amp;amp; US are one of their many strong points. They can provide you with a dedicated server and install openvz allowing you to sell your own vps servers. Their servers are located at UKGrid in Manchester with 24/7/365 support&lt;br /&gt;
* [http://www.europhase.net/virtual-private-servers/ Europhase UK Limited, UK VPS] - OpenVZ VPS Hosting, Virtual Dedicated Servers, UK VPS hosted at multiple UK datacentres from £4.99&lt;br /&gt;
* [https://farbyte.uk/vps Farbyte VPS] - UK based OpenVZ VPS and shared web hosting services&lt;br /&gt;
* [http://www.fdqwholesale.co.uk FDQ Wholesale] - UK based hosting services&lt;br /&gt;
* [http://www.gemvps.net/ GemVPS.NET] - UK (Manchester) Based Company, OpenVZ Virtual Servers in the UK &amp;amp; France on Fast nodes.&lt;br /&gt;
* [http://www.hadrill.org.uk Hadrill Online] - Fully managed hosting with unlimited bandwidth. Quotes available through contact form.&lt;br /&gt;
* [http://www.infrenion.com./uk_vps_hosting.html Infrenion Networks UK] Cheap, economical and reliable web hosting solutions, VPS based on the openVZ platform. You can host any YouTube Clone scripts with free FFMPEG setup on our vps servers. Also offers with a choice of selecting DataCenter.&lt;br /&gt;
* [https://www.laws-hosting.co.uk/vps-hosting.php Laws Web Hosting] - Laws Web Hosting offers OpenVZ VPS Hosting with packages starting from £5.50/m that will cater for anyone. We have OpenVZ VPS hosting solutions, and come with moderate DDoS protection.&lt;br /&gt;
* [http://www.letstalkdigital.com/index.php?option=com_content&amp;amp;view=article&amp;amp;id=73&amp;amp;Itemid=65 LetsTalkDigital VPS Hosting] - LetsTalkDigital.com offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from $14.99. Virtual Private Server(VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://www.meteorvps.com/ MeteorVPS] - Professional, Non-Oversold amazing VPS plans pretty cheap using SolusVM management, range from 512MB -&amp;gt; 16GB&lt;br /&gt;
* [http://www.minivps.co.uk miniVPS] miniVPS offers VPS hosting solutions with nodes located in UK, utilising openvz/solusvm with future locations of USA and UK. &lt;br /&gt;
* [https://www.first2host.co.uk First2Host Cheap VPS] - Intel Xeon E5-2630v3 OpenVZ VPS Servers. Don't be defined by a pre-made VPS plan. Create your own VPS Plan by assigning the resources that you require. SATA, SSD or NVMe storage 100 MBPS, 250 MBPS, 500 MBPS, 1GBPS speeds and free cPanel licenses.&lt;br /&gt;
* [http://www.phurix.co.uk/ Phurix] - A UK based web solutions company that provides you with reliable hosting at extremely affordable prices, VPS server virtualization using OpenVZ.&lt;br /&gt;
* [http://www.qualityservers.co.uk Quality Servers] - Affordable OpenVZ virtual servers based in the UK and USA. Choice of control panels and management options.&lt;br /&gt;
* [http://www.rackburst.net/ Rackburst] - UK SSD VPS Hosting with fast UK-based Live Support available from £1.49 per month.&lt;br /&gt;
* [http://www.rshosting.co.uk/vps.html RSHosting UK] - Offering the most secure, reliable, stable and fast UK VPS Web Hosting based on OpenVZ architecture. Our Virtual Dedicated Servers are physically hosted on powerfull Quad Core servers located in multiple UK datacentres.&lt;br /&gt;
* [http://www.sharkserve.rs SharkServers] - Low Cost OpenVZ virtual servers in the UK. Choice of control panels and management options. Own Datacentre.&lt;br /&gt;
* [https://www.ukhost4u.com/ UKHost4u] - A leading provider of VPS solutions for over 19 years!&lt;br /&gt;
* [http://www.vpsfast.us/united-kingdom-vps VPSFast] - VPS Provider with good prices in UK.&lt;br /&gt;
* [http://www.vpsmachine.co.uk/ vpsMachine] Quality openvz hosting platform with a large choice of customer OS templates.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [https://www.webhostuk.co.uk/vps-hosting.html WebHostUK LTD] - Offers Cheap yet Best UK VPS Web Hosting working on OpenVZ Platform.We offers fully Managed UK VPS with true 24/7/365 days support.All our Servers are located in UK London DC.&lt;br /&gt;
* [http://www.webhostinguk.com/vps/vps-hosting.html Web Hosting UK] - Fully managed OpenVZ VPS Hosting offered on fast and reliable and affordable servers in UK &amp;amp; European datacenter with 24x7x365 days lightning fast support.&lt;br /&gt;
* [http://www.weycrest.co.uk/vps-hosting.php Weycrest VPS] - Low Cost, Stable OpenVZ and Parallels' Virtuozzo Virtual Private Server solutions. London UK Hosted at Coreix with a choice of operating systems, and root and control panel options.&lt;br /&gt;
* [http://www.xilo.net/virtual_private_servers-vps/ XILO] - UK-based hosting with UK-based support. VPS services offered with a choice of cPanel, Webmin and other useful applications, VoIP, SIP, VPN to name a few.&lt;br /&gt;
* [http://www.zxvps.co.uk/ ZxVPS VPS Hosting] - Quality, non-oversold VPS based on the openVZ platform, using SolusVM management panel, VPS from 128mb - 2gb, cpanel, direct admin, kloxo, etc.&lt;br /&gt;
&lt;br /&gt;
== Ukraine ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://ekvia.com/ Ekvia] - VDS/VPS based on OpenVZ. Free trial 14 days. Domain registration for VDS/VPS.&lt;br /&gt;
* [http://www.gelihost.com/ Geliar Hosting Solutions] - Fast virtual dedicated servers based on OpenVZ. Geliar Hosting Solutions offering many control panels and other useful services.&lt;br /&gt;
* [http://www.hostpro.ua/ Hostpro.ua] - Full managed OpenVZ servers.&lt;br /&gt;
* [http://www.vpsfast.us/ukraine-vps VPSFast] - VPS Provider with good prices in Ukraine.&lt;br /&gt;
&lt;br /&gt;
== USA ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.a2hosting.com A2 Hosting] is your high-performance [http://a2hosting.com/openvz-vps-hosting OpenVZ VPS Hosting] provider. Design your perfect [http://a2hosting.com/vps-hosting VPS Hosting] account today! Featuring SwiftServers and SSDs with page load speeds up to 300% faster compared to standard drives.&lt;br /&gt;
* [http://www.afterburst.com Afterburst] (Previously FanaticalVPS): affordable unmetered, unmanaged VPS servers in NY.&lt;br /&gt;
* [https://www.asurahosting.com/ AsuraHosting] offers powerful, reliable, and simple OpenVZ VPS to clients. AsuraHosting has a dedicated support team, and quality hosting; Pricing starts at just $5/month!&lt;br /&gt;
* [http://beyondhosting.net BeyondHosting.net] High Performance OpenVZ Virtual Private Servers (VPS)  Tier 1 US Datacenter.&lt;br /&gt;
* [http://buyvm.net BuyVM.net] DDoS Protection, three datacenter locations, Stallion control panel. Affordable quality VPS hosting since 2010!&lt;br /&gt;
* [https://www.binarycpu.com Binary Computer Solutions] has provided OpenVZ based Virtual Private Server hosting for over 5 years.  Network outages are a thing of the past, and oversold services are never heard of here.  Built on solid technology, with infrastructure to match - Binary Computer Solutions will give you hosting you need, without the cost others ask for.  Starting at $30.00/mo.&lt;br /&gt;
* [http://www.bodhost.com/ Bodhost.com] Fast, Reliable and secure web hosting service with 24*7 free customer service.&lt;br /&gt;
* [http://www.buildyourvps.com/ BuildYourVPS.com] mix ‘n’ match your VPS; choose only the bandwidth, RAM, disk capacity, type of IP connection, level server redundancy, and the support/monitoring you want. [http://www.buildyourvps.com/ BuildYourVPS] is the 1st to offer you a highly-customized VPS solution, without making you pay for unused extra features.&lt;br /&gt;
* [https://www.budgetvm.com/openvz-linux-vps.php BudgetVM.com] Each server includes our industry-leading SLA, DDoS protection, 200Gbps networks and 7 * 24-hour customer support.&lt;br /&gt;
* [http://www.byethost.com Byethost.com] offers OpenVZ based VPS Hosting as its main VPS solution, with the hypervm panel. Centos, Debian, Fedora, OpenSuse and Ubuntu Containers are available.&lt;br /&gt;
* [http://cheaperasp.net CheaperASP.Net] provides Quality web hosting on the OpenVZ platform. You also help you get best options at [http://cheaperasp.net/godaddy-1-hosting-free-domain-promo/ affordable] cost.&lt;br /&gt;
* [http://www.chhost.net/vps.htm CH Hosting VPS Hosting] CH Hosting or chhost.net offers OpenVZ based VPS Hosting. 24/7 Support. Upgrade/Downgrade your plan as needed on-the-fly without the risk of downtime. Since 2006. Non-Oversell&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in USA from 1.88EUR/month.&lt;br /&gt;
* [http://www.cloudshards.com Cloud Shards] High Performance, reliable, stable and affordable OpenVZ Virtual Private Servers (VPS) in data centers across the USA.&lt;br /&gt;
* [https://cloudgearhosting.com CloudGear Hosting] - offers OpenVZ hosting in 4 locations across the USA. Including free DDoS Protection and free SSL with cPanel.&lt;br /&gt;
* [http://www.datacorporate.com/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [https://www.delimiter.com/storage-vps/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [https://www.cheapdomainnamesdot.com Domain Host SSL] provides Reliable web hosting with OpenVZ platform Since 2003, Located New York city, Atlanta, Los Angeles. &lt;br /&gt;
* [http://www.DubHosting.com/ DubHosting] - DubHosting started in 2004 has been providing cost effective hosting to clients world wide. Fully managed OpenVZ servers based in Europe &amp;amp; US are one of their many strong points. They can provide you with a dedicated server and install openvz allowing you to sell your own vps servers.&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
* [http://www.ethernetservers.com/ Ethernet Servers] A leading provider of OpenVZ Virtual Servers in Los Angeles, Miami and Buffalo with SolusVM.&lt;br /&gt;
* [http://www.evolucix.com/ Evolucix.com] Evolucix offers state of the art, professional, and reliable OpenVZ VPS solutions on top-notch hardware while providing quality support.&lt;br /&gt;
* [http://www.evolvedservers.com Evolvedservers.com] Openvz based vps servers. Hosted in Michigan, USA. 24/7 Support. Hosted in tier-3 and tier-4 datacenter's with multiple redundancies.&lt;br /&gt;
* [http://fastwebhost.com/vps-hosting.html Fastwebhost]: affordable cloud VPS servers using OpenVZ. &lt;br /&gt;
* [http://www.fliphost.net Fliphost.net]: Powerful, affordable instant setup VPS systems. Servers based in Phoenix Az with another location coming soon.&lt;br /&gt;
* [http://www.frontrangehosting.com Front Range Hosting]: SSD Cached KVM &amp;amp; OpenVZ VPS Hosting Prices Start at 2.00/mo, located in Colorado Springs, Colorado.&lt;br /&gt;
* [http://glesys.se GleSYS] is a hosting company specialized in serverhosting. Also offering VPS hosting mainly based on OpenVZ. GleSYS has provided access to server and Cisco hardware for developers from OpenVZ to find problem with VLAN implementation.&lt;br /&gt;
* [http://goodealhosting.com/ GOODEALHOSTING.com] Quality Hosting Solutions! Provides affordable unmanaged/managed VPS based on OpenVZ! start from $10.00, real 24/7 support.&lt;br /&gt;
* [http://gothost.net GotHost.net] Providing OpenVZ based VPS Hosting with SolusVM. All nodes are Quad Core Xeon with RAID-10 for speed and redundancy. Budget plans starting at $7.99.&lt;br /&gt;
* [http://www.greengeeks.com/ GreenGeeks Hosting] VPS Hosting. Dual Intel Xeon 64-Bit CPU's, DDR3 RAM, RAID-10 SSD Storage Arrays. 24/7 Support. cPanel/WHM + more!&lt;br /&gt;
* [http://hostarmor.com HostArmor™] - is best known for low-cost and reliable shared hosting and dedicated servers. Recently the company expanded to offer OpenVZ virtual server plans at 8 worldwide locations, five in the U.S., one in Germany, one in France, and one in the Netherlands. VPS plans start at $13.99/month.&lt;br /&gt;
* [http://www.host4geeks.com Host4Geeks] - Host4Geeks is a premium Fully Managed VPS provider with datacenters across 2 locations in US and in UK. All servers offer a free cPanel license.&lt;br /&gt;
* [http://www.host1plus.com Host1Plus] - OpenVZ based virtual servers in Chicago and Los Angeles. VPS plans start at $2.00 per month.&lt;br /&gt;
* [http://www.hostavps.com HostAVPS] - Providing Fully Managed VPS's on both the West &amp;amp; East Coast.&lt;br /&gt;
* [https://www.hostcapitol.com Host Capitol] offers fast and reliable web hosting services, including OpenVZ VPS Hosting, to clients ranging from small businesses to corporations. Located in Piscataway, New Jersey.&lt;br /&gt;
* [http://www.hostcolor.com Host Color] - OpenVZ based virtual servers hosted in a Tier 4 class data center based out of South Bend, Indiana. Juniper managed, fully-redundant network with uplinks to Level 3, Cogent and Internap.&lt;br /&gt;
* [https://www.hostgalaxy.com HostGalaxy] - OpenVZ based virtual servers. The fastest hosting in the Galaxy!&lt;br /&gt;
* [http://www.hostigation.com Hostigation] - High resource unmanage VPS hosting solutions.&lt;br /&gt;
* [http://www.hostingrails.com Hosting Rails] offers Rails-targeted OpenVZ VPS Hosting and updated Rails-ready OS images.&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [http://www.hostmist.com Host Mist] features budget OpenVZ VPS hosting from four major cities across the US.&lt;br /&gt;
* [http://www.hostrush.com HostRush] Self managed, ssd vps for business and non business. &lt;br /&gt;
* [http://www.dailyhosting.net hostoople] We offer OpenVZ VPS hosting from Dallas Texas, Starting at $29.95/month &lt;br /&gt;
* [https://hostus.us HostUS] provides unmanaged and managed OpenVZ VPS in Atlanta, Dallas and Los Angeles with custom control panel. A large variety of Linux distros are available. Enjoy 15% off with coupon VPS15OFF.&lt;br /&gt;
* [https://www.hostwinds.com Hostwinds] Affordable managed/unmanaged VPS Solutions.&lt;br /&gt;
* [http://hostsia.com Hostsia] With HOSTSIA Web services, you can get an OpenVZ VPS for only $15.00/mo. Each OpenVZ VPS includes multiple free-of-charge bonuses and offers a 99.9% uptime guarantee. You can also use our charge-free Hepsia CP, which is available with each OS – it permits you to host an unmetered number of domains and comprises heaps of handy tools, which will help you better manage your site and your VPS web hosting account.&lt;br /&gt;
* [http://www.infrenion.com./vps_hosting.html Infrenion Networks] Cheap, reliable and secure VPS hosting solutions, based on the openVZ platform. You can host any YouTube Clone scripts with enhanced support quality round the clock.&lt;br /&gt;
* [http://iniz.com/ INIZ VPS Hosting] INIZ provides affordable VPS Hosting in Los Angeles &amp;amp; New York with high resources at low prices.&lt;br /&gt;
* [https://www.interserver.net/ InterServer Web Hosting] Fast &amp;amp; Reliable VPS - 24x7 Support. 99.9% Up-time, Hosting Since 1999!.&lt;br /&gt;
* [http://www.joinvps.com JoinVPS.com] ISPmanager OpenVZ based VPS hosting. 24/7 Technical Support. Free ISPmanager control panel.&lt;br /&gt;
* [http://www.lovevps.com LoveVPS] Budget VPS provider starting at $5.99/month located in the US with Xeon nodes.&lt;br /&gt;
* [http://www.letstalkdigital.com/index.php?option=com_content&amp;amp;view=article&amp;amp;id=73&amp;amp;Itemid=65 LetsTalkDigital VPS Hosting] LetsTalkDigital.com offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from $14.99 Virtual Private Server(VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://lylix.net LYLIX] offers affordable VPS hosting with a choice of eight different Linux distributions, dedicated VPS hosting, and specializes in Asterisk/VOIP based hosting including Trixbox, AsteriskNow, Elastix, and PBX-in-a-Flash.  Popular choice for unmanaged IP-PBX services; entire infrastructure built on a High-availability (HA) network across three regional NOCs.&lt;br /&gt;
* [http://www.micfo.com Micfo.com] offers VPS hosting services for both Linux VPS hosting and Window VPS hosting on affordable price combined with world-class 24x7x365 support.&lt;br /&gt;
* [http://www.neostreams.info/neoshop/cart.php?gid=9 nEo Stream Services] Offer's Top Quality OpenVZ Servers, Starting at $18.95 per month! SolusVM Control panel , 7 day Money Back Guarantee , 24x7 Professional Support.&lt;br /&gt;
* [http://pogiweb.com/vps/ PogiWeb LLC] Instant and free setup. Includes SolusVM control panel and free level 1 support during first month.&lt;br /&gt;
* [http://www.theserverexperts.com TheServerExperts.com] TheServerExperts VPS line is the ideal solution for clients who require the control of a dedicated server matched with the affordability and simplicity of a traditional shared hosting account.&lt;br /&gt;
* [http://thenynoc.com New York NOC] affordable Linux VPS hosting out of New York and Chicago. Plans as low as $5 a month and are backed by a redundant infrastructure and 24/7 support.&lt;br /&gt;
* [http://railsplayground.com RailsPlayground.com] Ruby on Rails VPS with ready to go Rails images with the LxAdmin control panel&lt;br /&gt;
* [http://www.raidlogic.net RaidLogic.NET] RaidLogic.NET offers OpenVZ based Linux VPS out of multiple facilities across the United States, including Miami, Los Angeles, and Chicago. Starting as low as $3.95/month.&lt;br /&gt;
* [http://www.ramhost.us RAM Host] RAM Host offers OpenVZ based Linux VPS out of multiple facilities across the United States, including Atlanta, Kansas City, and Phoenix.&lt;br /&gt;
* [http://www.reconhosting.com Recon Hosting] Recon Hosting offers affordable OpenVZ VPS solutions where you get Quality Hosting at a Fraction of the price. Instant setup with the latest Operating System templates including cPanel.&lt;br /&gt;
* [http://www.rokabear.com Rokabear] Rokabear offers OpenVZ Linux VPS, Dedicated Server, and Colocation. All Hardware setup in High Availability mode including raided drives and redudnant power and network connections. With multiple upstream providers, Rokabear's connectivity is fast and reliable! Rokabear supports LAMP, Openvpn, and Asterisk configurations. VPSes start at $7.99!&lt;br /&gt;
* [https://www.rosehosting.com RoseHosting] offers OpenVZ Linux virtual servers equipped with Enterprise Grade SSD drives. All hosting plans are fully-managed with FREE 24/7 support, FREE website migration, FREE weekly backups and FREE server monitoring included.&lt;br /&gt;
* [http://www.rshosting.com/vps.html RSHosting.com] RSHosting offers the most secure, reliable and stable VPS - Virtual Private Servers based on OpenVZ architecture, powered by the most professional and qualified 24/7 lightening fast support.&lt;br /&gt;
* [http://www.servercomplete.com Server Complete, LLC] Server Complete offers OpenVZ based Linux VPS out of multiple facilities across the United States, including Atlanta, Dallas, and Chicago.&lt;br /&gt;
* [http://www.servergrove.com ServerGrove] uses OpenVZ as the main virtualization platform for its state of the art VPS hosting services.&lt;br /&gt;
* [http://serverswarm.com ServerSwarm] provides stable, affordable, high performance OpenVZ virtual private servers.&lt;br /&gt;
* [http://Sharktech.net Sharktech] provides custom OpenVZ solutions DDOS-protected up to 100Gbps.&lt;br /&gt;
* [http://www.silverrack.com/ SilverRack VPS Hosting] - SilverRack provides affordable VPS hosting using the OpenVZ platform.&lt;br /&gt;
* [http://www.soficol.com/ Soficol] Offers Enterprise OpenVZ based VPS, hosted on a clustered infrastructure and redundant network. Easy to use user management and instant setup.&lt;br /&gt;
* [http://www.spectrohost.com/ Spectro Host] - Offers performance VPS Servers running openvz. Always the most resources and never over committing OpenVZ nodes.&lt;br /&gt;
* [http://www.budgetvds.com/ BudgetVDS] - Offers VPS Servers running openvz we've been in business for 2 years now using openvz platform.&lt;br /&gt;
* [http://www.syera.net/ Syera Networks] Unmetered VPS From $18.88/M, 24/7 Support, OpenVZ/HyperVM, Instant Setup!, Free 1Gbps Upgrade with Coupon: syera1G&lt;br /&gt;
* [http://www.synapseglobal.com/voip_vps.html SynapseGlobal.com] Elastix, Trixbox, PBX in a Flash and Asterisk VPS - OpenVZ based Asterisk VOIP servers with 14 Tier 1 premium bandwidth providers.&lt;br /&gt;
* [http://www.tektonic.net TekTonic] provides VPS hosting services using both Virtuozzo and OpenVZ technology.&lt;br /&gt;
* [http://www.tigerservers.com/ TigerServers] - Provides affordable managed VPS based on OpenVZ. Servers located in Chicago, Illinois&lt;br /&gt;
* [http://www.tocici.com/ TOCICI VPS Hosting Services] Since 1995 TOCICI has offered web hosting services, with 24/7 support commitments and a strong non-oversell policy. Our purpose-built hosting infrastructure has serviced many organizations for over a decade. Offering OpenVZ VPS, data center colocation, and equipment leasing options, visit our website for prices and more details.&lt;br /&gt;
* [http://www.ultravps.com UltraVPS] UltraVPS offers managed and unmanaged OpenVZ-based VPS hosting utilizing dual CPU hardware nodes with redundant, high-performance RAID-10 storage.  UltraVPS offers VPS servers with many popular control panel options and turn-key applications.&lt;br /&gt;
* [http://www.vpsfx.com VPSFX] VPSFX.com offers OpenVZ VPS, data center colocation, and dedicated servers.&lt;br /&gt;
* [http://www.Webhost.US.Com/linuxvps.html US Web Hosting]  Webhost.US.Com offers powerful GUI based VPS management system with full OpenVZ, Xen Paravirtualization and Xen HVM support.All our Virtual Private servers are fully Managed with 99.9% uptime and 24/7 top notch support.&lt;br /&gt;
* [http://unixservice.com Unixservice/unxsVZ] Low cost OpenVZ ONLY hosting we specialize in Mail, DNS and RADIUS multiple container hosting. At the world famous Market St. San Jose, CA Silicon Valley datacenter. Ping times from your containers to local yahoo and google sites guaranteed single digit ms times. Your containers are backed up at 4 local and 2 remote locations. Contact supportgrp at unixservice dot com.&lt;br /&gt;
* [http://www.vogenic.xyz Vogenic: Cloud Services] If you are searching for an upgrade to the shared hosting service, then you should consider our OpenVZ or KVM VPS hosting services.&lt;br /&gt;
* [http://vpslink.com VPSLink.com] provides virtual private server hosting on the OpenVZ platform.&lt;br /&gt;
* [http://www.vpsspeed.com/ VPSSpeed] - VPSSpeed provides unmanaged OpenVZ based VPS hosting with over 50 OS Templates, real 24/7/365 support and fast US servers. No overselling.&lt;br /&gt;
* [http://vpsnoc.com VPSNOC] offers unmanaged vps hosting based in the USA utilizing OpenVZ hypervisor behind an in-house VPS control panel.&lt;br /&gt;
* [https://www.waveride.at/ Waveride] Waveride, an EDIS company, offers budget full gigabit OpenVZ + solusVM VPS in Austria, USA and the Netherlands&lt;br /&gt;
* [http://www.webappcabaret.com WebAppCabaret] provides VPS solutions for hosting applications. We offer OpenVZ with cPanel or Plesk for web site management; and NGASI Universal App Manager for deploying and managing JAVA and RAILS applications.&lt;br /&gt;
* [http://www.wirenine.com/vps-hosting/ WireNine.com VPS Hosting] Low cost fully managed and unmanaged OpenVZ based VPS Hosting with SAS 15k enterprise drives in high-performance RAID-10 storage.&lt;br /&gt;
* [http://www.zoidial.com/ Zoidial Hosting and VPS] - offers VPS and Virtual Dedicated Server solutions utilizing OpenVZ.  In business since 1998, Zoidial Incorporated is a small hosting provider focused on being security conscious, proactive, and offering a positive client experience.&lt;br /&gt;
* [http://zensix.com ZenSix Hosting] Cheap OpenVZ based VPS accounts with the SolusVM control panel.&lt;br /&gt;
* [http://zigothosting.com Zigot Hosting] Affordable and Reliable OpenVZ based VPS's within the SolusVM control panel.&lt;br /&gt;
* [http://www.vpsfast.us/usa-vps VPSFast] - VPS Provider with good prices in USA (Los Angeles, New Jersey, New York, Seattle, Washington, Dallas, Chicago, Atlanta, Ashburn, Miami, Piscataway).&lt;br /&gt;
* [http://www.xarixlite.com Xarix Lite] - offers OpenVZ hosting in Charlotte, SC. OpenVZ plans starting at $2.50/mo&lt;br /&gt;
* [https://www.yourlasthost.com YourLastHost] is your high-performance [https://www.yourlasthost.com/openvz-vps.php OpenVZ VPS Hosting] Provider. Get your perfect [https://www.yourlasthost.com/openvz-vps.php VPS Hosting] account today! Available in Los Angeles, Dallas, Jacksonville, USA and France, Europe.&lt;br /&gt;
&lt;br /&gt;
== Vietnam ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://appvz.com AppVZ.com] (www.appvz.com) is a leading web solution provider offering domain, hosting, reseller and VPS hosting packages from 2009. Just recently, the company has offered discount packages where customers can avail managed and un-managed VPS for only $9.5 per month.&lt;br /&gt;
&lt;br /&gt;
= Hosting providers comparison =&lt;br /&gt;
&lt;br /&gt;
It is hard to compare all virtual private server offers provided by different hosting providers.&lt;br /&gt;
Sites below can help you with it.&lt;br /&gt;
&lt;br /&gt;
* [https://www.cheapvpsservers.co.uk/ Cheap VPS Servers]&lt;br /&gt;
* [https://www.hostingmyths.com/ Hosting Myths]&lt;br /&gt;
* [https://cheapwebhosting.review/ VPS servers comparison]&lt;br /&gt;
* [https://reviewsquirrel.com/web-hosting-reviews/ Review Squirrel]&lt;br /&gt;
* [http://lowendstock.com/ Lowendstock]&lt;br /&gt;
* [https://www.websitehostingrating.com/ Best Web Hosting Services]&lt;br /&gt;
* [http://serverbear.com/compare?Sort=RAM&amp;amp;Order=asc&amp;amp;Server+Type=VPS&amp;amp;Monthly+Cost=-&amp;amp;HDD=-&amp;amp;RAM=-&amp;amp;Virtualization=OpenVZ Serverbear]&lt;br /&gt;
* [https://www.comparethehosts.com/vps-web-hosting.htm VPS Web Hosting Reviews]&lt;br /&gt;
* [https://thishosting.rocks/best-cheap-managed-vps/ ThisHosting.Rocks - Managed VPS Providers Comparison]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
http://vpscomp.com&lt;br /&gt;
http://reviewsignal.com/webhosting/compare/&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= See also =&lt;br /&gt;
&lt;br /&gt;
* [[Partners]]&lt;br /&gt;
* [[Download mirrors]]&lt;br /&gt;
* [[VPS vs Dedicated]]&lt;/div&gt;</summary>
		<author><name>Vvs</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.openvz.org/index.php?title=News/updates&amp;diff=23327</id>
		<title>News/updates</title>
		<link rel="alternate" type="text/html" href="https://wiki.openvz.org/index.php?title=News/updates&amp;diff=23327"/>
		<updated>2020-06-23T07:49:02Z</updated>

		<summary type="html">&lt;p&gt;Vvs: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- Everyone who edits this page should read the following three times.&lt;br /&gt;
&lt;br /&gt;
* This page is displayed as is, and also exported via RSS/Atom feed.&lt;br /&gt;
* Therefore, it should be edited with extreme care.&lt;br /&gt;
* Every record consists of the following 4 elements:&lt;br /&gt;
&lt;br /&gt;
  == Header ==&lt;br /&gt;
&lt;br /&gt;
  Semi-detailed textual change log.&lt;br /&gt;
&lt;br /&gt;
  {{Download link|path/to/package}}&lt;br /&gt;
&lt;br /&gt;
  --~~~~&lt;br /&gt;
&lt;br /&gt;
* Changelog should be PLAIN TEXT, i.e.&lt;br /&gt;
* NO LINKS in changelog&lt;br /&gt;
* NO BULLETS in changelog&lt;br /&gt;
* NO FORMATTING (wiki or html) in changelog&lt;br /&gt;
* Do not forget to SIGN your entries&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;startFeed /&amp;gt;&lt;br /&gt;
&amp;lt;!-- *DO NOT REMOVE THIS LINE* new news should go here --&amp;gt;&lt;br /&gt;
== Kernel RHEL6 042stab145.3 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to RHEL6 kernel 2.6.32-754.30.2.el6, security and stability fixes&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab145.3}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 07:48, 23 June 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab144.1 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to RHEL6 kernel 2.6.32-754.29.2.el6, security and stability fixes&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab144.1}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 10:19, 9 June 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab142.1 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to RHEL6 kernel 2.6.32-754.27.1.el6, bugfixes&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab142.1}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 07:41, 3 February 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab141.3 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to RHEL6 kernel 2.6.32-754.24.3.el6, security and stability fixes&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab141.3}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 17:28, 21 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab140.4 ==&lt;br /&gt;
&lt;br /&gt;
Fixed fail of firewalld in centos7.7 containers and other bugfixes.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab140.4}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 12:36, 15 October 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab140.1 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to RHEL6 kernel 2.6.32-754.18.2.el6, security and stability fixes.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab140.1}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 06:45, 20 August 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab139.1 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to RHEL6 kernel 2.6.32-754.15.3.el6, TCP SACK security fixes.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab139.1}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 12:56, 20 June 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab138.1 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to RHEL6 kernel 2.6.32-754.14.2.el6, MDS security fixes.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab138.1}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 15:41, 16 May 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab137.1 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to RHEL6 kernel 2.6.32-754.12.1.el6, security and stability fixes.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab137.1}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 09:47, 6 May 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab136.1 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to RHEL6 kernel 2.6.32-754.11.1.el6, bug fixes.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab136.1}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 08:57, 5 March 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab134.8 ==&lt;br /&gt;
&lt;br /&gt;
Fixes CVE-2018-9568, memory corruption due to incorrect socket cloning&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab134.8}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 08:53, 13 December 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab134.7 ==&lt;br /&gt;
&lt;br /&gt;
Fixes for Ubuntu 16.04 inside containers&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab134.7}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 04:47, 29 November 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab134.3 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to RHEL6 kernel 2.6.32-754.6.3.el6, security and bug fixes.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab134.3}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 14:27, 15 October 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab133.2 ==&lt;br /&gt;
&lt;br /&gt;
fixed regression in 042stab133.1 kernel.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab133.2}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 12:29, 30 August 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab133.1 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to RHEL6 kernel 2.6.32-754.3.5.el6, security and bug fixes.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab133.1}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 14:52, 20 August 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab132.1 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to RHEL6.10 kernel 2.6.32-754.2.1.el6, security fixes.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab132.1}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 01:32, 18 July 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab131.1 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to RHEL6.10 kernel 2.6.32-754.el6, security fixes.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab131.1}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 14:47, 25 June 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab130.1 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to RHEL6 kernel 2.6.32-696.30.1.el6, fixed CVE-2018-3639.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab130.1}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 11:51, 23 May 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Vzctl 4.11.1 ==&lt;br /&gt;
&lt;br /&gt;
Bug fixes&lt;br /&gt;
&lt;br /&gt;
{{Download link|vzctl/4.11.1}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 14:46, 18 May 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab129.1 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to RHEL6 kernel 2.6.32-696.28.1.el6, security and bug fixes.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab129.1}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 09:47, 15 May 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab128.2 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to RHEL6 kernel 2.6.32-696.23.1.el6, security and bug fixes.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab128.2}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 15:23, 26 March 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab127.2 ==&lt;br /&gt;
&lt;br /&gt;
Security and bug fixes.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab127.2}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 11:32, 6 January 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab126.2 ==&lt;br /&gt;
&lt;br /&gt;
Security fixes.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab126.2}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 11:15, 18 December 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab126.1 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to RHEL6 kernel 2.6.32-696.16.1.el6, security and bugfixes.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab126.1}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 06:50, 21 November 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab125.5 ==&lt;br /&gt;
&lt;br /&gt;
Security and bug fixes.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab125.5}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 06:58, 24 October 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL5 028stab122.4 ==&lt;br /&gt;
&lt;br /&gt;
Fixed CVE-2017-1000253.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel5/028stab122.4}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 15:09, 29 September 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab125.3 ==&lt;br /&gt;
&lt;br /&gt;
Fixed CVE-2017-1000253.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab125.3}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 15:08, 29 September 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab125.1 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to RHEL6 kernel 2.6.32-696.10.2.el6, security fixes.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab125.1}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 14:02, 26 September 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab124.2 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to RHEL6 kernel 2.6.32-696.10.1.el6, security and bugfixes.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab124.2}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 09:51, 6 September 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== vzstats 0.5.5 ==&lt;br /&gt;
&lt;br /&gt;
fixed upload to vzstats.openvz.org&lt;br /&gt;
&lt;br /&gt;
{{Download link|vzstats/0.5.5}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 14:18, 14 July 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab123.9 ==&lt;br /&gt;
&lt;br /&gt;
Updated fix for Stackguard security issue&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab123.9}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 11:24, 4 July 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL5 028stab122.3 ==&lt;br /&gt;
&lt;br /&gt;
Stackguard security bugfix backported from mainline&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel5/028stab122.3}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 11:06, 4 July 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL5 028stab122.2 ==&lt;br /&gt;
&lt;br /&gt;
Delayfs should not be mounted manually&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel5/028stab122.2}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 13:18, 27 June 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab123.8 ==&lt;br /&gt;
&lt;br /&gt;
Stackguard security bugfix backported from mainline&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab123.8}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 13:16, 27 June 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab123.6 ==&lt;br /&gt;
&lt;br /&gt;
Stability bugfix for nodes with VLAN in bridge &lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab123.6}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 13:15, 27 June 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab123.4 ==&lt;br /&gt;
&lt;br /&gt;
Several security and bug fixes &lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab123.4}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 13:13, 27 June 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab123.3 ==&lt;br /&gt;
&lt;br /&gt;
NFS-related security and bug fixes &lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab123.3}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 14:57, 18 May 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab123.2 ==&lt;br /&gt;
&lt;br /&gt;
Security fix &lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab123.2}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 05:55, 4 May 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab123.1 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to RHEL6.9 kernel, security and bugfixes &lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab123.1}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 07:50, 7 April 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab120.20 ==&lt;br /&gt;
&lt;br /&gt;
Security fix &lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab120.20}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 11:23, 27 March 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL5 028stab122.1 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to 2.6.18-419.el5, fix for DCCP security&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel5/028stab122.1}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 10:40, 21 March 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab120.19 ==&lt;br /&gt;
&lt;br /&gt;
Security and bugfixes &lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab120.19}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 08:47, 7 March 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL5 028stab121.1 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to 2.6.18-417.el5, fix for CVE-2016-7117&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel5/028stab121.1}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 07:47, 6 February 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab120.18 ==&lt;br /&gt;
&lt;br /&gt;
Security (CVE-2015-8539) and bugfixes (ploop, cpt) &lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab120.18}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 06:47, 6 February 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab120.16 ==&lt;br /&gt;
&lt;br /&gt;
Bugfixes (net, cpt) &lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab120.16}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 12:57, 22 December 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Legacy templates update Nov 2016 ==&lt;br /&gt;
&lt;br /&gt;
Added Ubuntu 16.10 (to beta). Moved Fedora 20, 21, 22, Ubuntu 15.04, 15.10 to unsupported (EOL). All existing templates are updated.&lt;br /&gt;
&lt;br /&gt;
{{Download link|template/precreated|Downloads}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Kir|Kir]] ([[User talk:Kir|talk]]) 23:33, 30 November 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab120.11 ==&lt;br /&gt;
&lt;br /&gt;
Security and bugfixes (net, cpt, filesystems) &lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab120.11}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 09:06, 23 November 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 testing 042stab120.7 ==&lt;br /&gt;
&lt;br /&gt;
Fixed crash on restore of unix socket and crash in ixgbe driver&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6-testing/042stab120.7}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 17:56, 2 November 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab120.6 ==&lt;br /&gt;
&lt;br /&gt;
fixed hang after nfs mount with &amp;quot;lock&amp;quot; option, ploop-over-nfs cleanup&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab120.6}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 17:08, 28 October 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL5 028stab120.3 ==&lt;br /&gt;
&lt;br /&gt;
Fixed CVE-2016-5195 mm: privilege escalation via MAP_PRIVATE COW breakage&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel5/028stab120.3}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 15:33, 26 October 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab120.5 ==&lt;br /&gt;
&lt;br /&gt;
updated fix for CVE-2016-5195, fixed host hang on CT resume, fixed crash on load of sb_edac module&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab120.5}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 10:26, 26 October 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 testing 042stab120.4 ==&lt;br /&gt;
&lt;br /&gt;
Fixed crash on boot during loading of sb_edac module (OVZ-6809)&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6-testing/042stab120.4}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 13:12, 24 October 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab120.3 ==&lt;br /&gt;
&lt;br /&gt;
Fixed CVE-2016-5195 mm: privilege escalation via MAP_PRIVATE COW breakage&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab120.3}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 14:12, 22 October 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab120.2 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to RHEL6u8 kernel 2.6.32-642.6.1.el6. Security, bugfixes, enhancements &lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab120.2}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 14:07, 22 October 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab117.16 ==&lt;br /&gt;
&lt;br /&gt;
Mount of nfs with lock option inside several containers can cause node hang.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab117.16}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 11:22, 4 October 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL5 028stab120.2 ==&lt;br /&gt;
&lt;br /&gt;
Fixed a kernel panic triggerable via the move_pages() syscall.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel5/028stab120.2}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vasily Averin|Vvs]] 12:00, 14 September 2016 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab117.14 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to RHEL6u8 kernel 2.6.32-642.el6 (security, bug fixes, enhancements, see RHSA-2016-0855). Fixes and enhancements in KVM, UBC, ext4, networking, cpt.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab117.14}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vasily Averin|Vvs]] 15:00, 13 September 2016 (EDT)&lt;br /&gt;
&lt;br /&gt;
== OpenVZ 7.0 GA ==&lt;br /&gt;
&lt;br /&gt;
OpenVZ 7.0 has been released. The new release focuses on merging OpenVZ and Virtuozzo source codebase, replacing our own hypervisor with KVM.&lt;br /&gt;
&lt;br /&gt;
Key changes in comparison to the last stable OpenVZ release:&lt;br /&gt;
&lt;br /&gt;
* OpenVZ 7.0 becomes a complete Linux distribution based on our own VzLinux.&lt;br /&gt;
* The main difference between the Virtuozzo (commercial) and OpenVZ (free) versions are the EULA, packages with paid features, and Anaconda installer.&lt;br /&gt;
* The user documentation is publicly available.&lt;br /&gt;
* EZ templates can be used instead of tarballs with template caches.&lt;br /&gt;
* Additional features (see announce)&lt;br /&gt;
&lt;br /&gt;
[https://lists.openvz.org/pipermail/announce/2016-July/000664.html Read more...]&lt;br /&gt;
&lt;br /&gt;
--[[User:Sergey Bronnikov|SergeyB]] ([[User talk:Sergey Bronnikov|talk]]) 16:58, 25 July 2016 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 testing 042stab117.5 ==&lt;br /&gt;
&lt;br /&gt;
Fix in cpt.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6-testing/042stab117.5}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Sergey Bronnikov|SergeyB]] ([[User talk:Sergey Bronnikov|talk]]) 05:45, 20 June 2016 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 testing 042stab117.4 ==&lt;br /&gt;
&lt;br /&gt;
Fixes in swap and cpt.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6-testing/042stab117.4}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Sergey Bronnikov|SergeyB]] ([[User talk:Sergey Bronnikov|talk]]) 05:54, 14 June 2016 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 testing 042stab117.3 ==&lt;br /&gt;
&lt;br /&gt;
Ploop, CPT fixes and fixed crash on mount of non-EXT4 filesystems.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6-testing/042stab117.3}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Sergey Bronnikov|SergeyB]] ([[User talk:Sergey Bronnikov|talk]]) 08:32, 3 June 2016 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 testing 042stab117.2 ==&lt;br /&gt;
&lt;br /&gt;
Fixes in CPT, CPU hotplug and numabalanced improvements.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6-testing/042stab117.2}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Sergey Bronnikov|SergeyB]] ([[User talk:Sergey Bronnikov|talk]]) 01:39, 31 May 2016 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 testing 042stab117.1 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to RHEL6u8 kernel 2.6.32-642.el6. Improved ext4 defragmentation. Fixes in CPT.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6-testing/042stab117.1}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Kir|Kir]] ([[User talk:Kir|talk]]) 20:10, 25 May 2016 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab116.1 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to RHEL6 kernel 2.6.32-573.26.1.el6. Security, bug and stability fixes.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab116.1}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Kir|Kir]] ([[User talk:Kir|talk]]) 20:09, 25 May 2016 (EDT)&lt;br /&gt;
&lt;br /&gt;
== ploop 1.15 ==&lt;br /&gt;
&lt;br /&gt;
Support for e4defrag2 on compact. Docker-related fixes. Fixes for Alpine Linux and newest GCC. Many other fixes and improvements.&lt;br /&gt;
&lt;br /&gt;
{{Download link|ploop/1.15}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Kir|Kir]] ([[User talk:Kir|talk]]) 22:28, 29 April 2016 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 testing 042stab115.2 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to RHEL6u8 beta kernel 2.6.32-621.el6.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6-testing/042stab115.2}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Sergey Bronnikov|SergeyB]] ([[User talk:Sergey Bronnikov|talk]]) 08:33, 6 April 2016 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 testing 042stab114.5 ==&lt;br /&gt;
&lt;br /&gt;
Proper fix for CVE-2016-3156. Fix for kernel BUG in cfq-iosched (OVZ-6651). Fix for kernel crash inside pick_next_task_fair() (PSBM-44475). Write to CIFS share hangs (OVZ-6642). ub memcg: fake use_hierarhy file is required for KVM's libvirtd (OVZ-6660). Other fixes.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6-testing/042stab114.5}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Sergey Bronnikov|SergeyB]] ([[User talk:Sergey Bronnikov|talk]]) 08:10, 30 March 2016 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Virtuozzo 7 Beta ==&lt;br /&gt;
&lt;br /&gt;
This Virtuozzo 7.0 Beta offers the following major improvements:&lt;br /&gt;
&lt;br /&gt;
Unified management of containers and KVM virtual machines with the prlctl tool and SDK. You get a single universal toolset for all CT/VM management needs.&lt;br /&gt;
&lt;br /&gt;
Autoballooning and kernel same-page merging that allows overcommitting memory resources in the smartest way possible with an insignificant impact on customer workloads.&lt;br /&gt;
&lt;br /&gt;
Memory hotplugging for containers and VMs that allows both increasing and reducing CT/VM memory size on the fly, without the need to reboot. Your customers can now scale their workloads without any downtime. This feature also enables you to make PAYG offerings, allowing customers to change VM resources depending on workload and potentially pay less.&lt;br /&gt;
&lt;br /&gt;
Memory guarantees for both containers and virtual machines.&lt;br /&gt;
&lt;br /&gt;
Ability to manage containers and VMs with libvirt and virt-manager. If you used to manage VMs with libvirt, you can do it in Virtuozzo in absolutely the same way.&lt;br /&gt;
&lt;br /&gt;
Guest tools for Windows and Linux VMs.&lt;br /&gt;
&lt;br /&gt;
[https://download.openvz.org/virtuozzo/releases/7.0-beta3/x86_64/iso/ Download]&lt;br /&gt;
&lt;br /&gt;
--[[User:Sergey Bronnikov|SergeyB]] ([[User talk:Sergey Bronnikov|talk]]) 05:53, 29 March 2016 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab113.21 ==&lt;br /&gt;
&lt;br /&gt;
IPv6 link-local address was being assigned to slave interfaces in bonding which resulted in DAD and network routing issues. (PSBM-42433). kswap activity needed to be restricted in case of high-order requests (PSBM-44291). Force charge swapin readahead pages if in ub0. (PSBM-44857). Missing bounds check in ipt_entry structure in netfilter. (PSBM-45193, CVE-2016-3134). IPv6 connect could cause DoS via NULL pointer dereference (PSBM-45219, CVE-2015-8543). Pipe buffer state corruption after unsuccessful atomic read from pipe (PSBM-45328, CVE-2016-0774). hostapd was broken in early RHEL6.7 kernels (OVZ-6649).&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab113.21}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Sergey Bronnikov|SergeyB]] ([[User talk:Sergey Bronnikov|talk]]) 05:48, 29 March 2016 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 testing 042stab113.21 ==&lt;br /&gt;
&lt;br /&gt;
Missing bounds check in ipt_entry structure in netfilter. (PSBM-45193, CVE-2016-3134). IPv6 connect could cause DoS via NULL pointer dereference (PSBM-45219, CVE-2015-8543). Pipe buffer state corruption after unsuccessful atomic read from pipe (PSBM-45328, CVE-2016-0774). hostapd was broken in early RHEL6.7 kernels. (OVZ-6649)&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6-testing/042stab113.21}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Sergey Bronnikov|SergeyB]] ([[User talk:Sergey Bronnikov|talk]]) 05:47, 29 March 2016 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 testing 042stab113.18 ==&lt;br /&gt;
&lt;br /&gt;
bonding: Prevent IPv6 link local address on enslaved devices (PSBM-42433). kswap activity restriction in case high-order requests (PSBM-44291). force charge swapin readahead pages if in ub0 (PSBM-44857)&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6-testing/042stab113.18}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Sergey Bronnikov|SergeyB]] ([[User talk:Sergey Bronnikov|talk]]) 10:22, 14 March 2016 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 stable 042stab113.17 ==&lt;br /&gt;
&lt;br /&gt;
Crash in restore_one_vfsmount() on restoring shared non-master mounts (PSBM-42471). Introduced FADV_DEACTIVATE flag in fadvise() to be able to move file pages from the active to the inactive list (PSBM-42664). Race between keyctl_read() and keyctl_revoke() could crash the host (PSBM-43799, CVE-2015-7550). Under certain circumstances, backup/restore via CBT interface could hang the host (PSBM-43936). Second-level quota in simfs containers was broken in 042stab113.x kernels (OVZ-6655).&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab113.17}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Sergey Bronnikov|SergeyB]] ([[User talk:Sergey Bronnikov|talk]]) 06:37, 14 March 2016 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 testing 042stab113.17 ==&lt;br /&gt;
&lt;br /&gt;
Crash in restore_one_vfsmount() on restoring shared non-master mounts (PSBM-42471). Introduced FADV_DEACTIVATE flag in fadvise() to be able to move file pages from the active to the inactive list (PSBM-42664). Race between keyctl_read() and keyctl_revoke() could crash the host (PSBM-43799, CVE-2015-7550). Under certain circumstances, backup/restore via CBT interface could hang the host (PSBM-43936). Second-level quota in simfs containers was broken in 042stab113.x kernels (OVZ-6655).&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6-testing/042stab113.17}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Sergey Bronnikov|SergeyB]] ([[User talk:Sergey Bronnikov|talk]]) 06:37, 14 March 2016 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL5 stable 028stab120.1 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to RHEL5 kernel 2.6.32-408.el5. Fixes for CVE-2015-5364, CVE-2015-5366.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel5/028stab120.1}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Sergey Bronnikov|SergeyB]] ([[User talk:Sergey Bronnikov|talk]]) 07:30, 2 February 2016 (EST)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL5 testing 028stab120.1 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to RHEL5 kernel 2.6.32-408.el5. Fixes for CVE-2015-5364, CVE-2015-5366.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel5-testing/028stab120.1}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Sergey Bronnikov|SergeyB]] ([[User talk:Sergey Bronnikov|talk]]) 04:30, 25 January 2016 (EST)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL5 stable 028stab119.6 ==&lt;br /&gt;
&lt;br /&gt;
Improved accounting for network-related memory objects (PCLIN-32553). Introduced a per-container limit for the number of mounts (PCLIN-32554). Introduced a per-container limit for IPv4 network interface aliases (PCLIN-32555).&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel5/028stab119.6}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Sergey Bronnikov|SergeyB]] ([[User talk:Sergey Bronnikov|talk]]) 09:25, 3 January 2016 (EST)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;endFeed /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Older updates ==&lt;br /&gt;
* [[/2015/]] (59)&lt;br /&gt;
* [[/2014/]] (74)&lt;br /&gt;
* [[/2013/]] (98)&lt;br /&gt;
* [[/2012/]] (93)&lt;br /&gt;
* [[/2011/]] (102)&lt;br /&gt;
* [[/2010/]] (64)&lt;br /&gt;
* [[/2009/]] (22)&lt;br /&gt;
* [[/2008/]] (24)&lt;br /&gt;
* 2005-2007 (119): available from the [http://old.openvz.org/news/updates old site]&lt;/div&gt;</summary>
		<author><name>Vvs</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.openvz.org/index.php?title=Download/kernel/rhel6/Archives/allversions&amp;diff=23326</id>
		<title>Download/kernel/rhel6/Archives/allversions</title>
		<link rel="alternate" type="text/html" href="https://wiki.openvz.org/index.php?title=Download/kernel/rhel6/Archives/allversions&amp;diff=23326"/>
		<updated>2020-06-23T07:45:36Z</updated>

		<summary type="html">&lt;p&gt;Vvs: Bot: Automated import of articles *** existing text overwritten ***&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* {{kernel link|rhel6|042stab145.3}}&lt;br /&gt;
* {{kernel link|rhel6|042stab144.1}}&lt;br /&gt;
* {{kernel link|rhel6|042stab142.1}}&lt;br /&gt;
* {{kernel link|rhel6|042stab141.3}}&lt;br /&gt;
* {{kernel link|rhel6|042stab140.4}}&lt;br /&gt;
* {{kernel link|rhel6|042stab140.1}}&lt;br /&gt;
* {{kernel link|rhel6|042stab139.1}}&lt;br /&gt;
* {{kernel link|rhel6|042stab138.1}}&lt;br /&gt;
* {{kernel link|rhel6|042stab137.1}}&lt;br /&gt;
* {{kernel link|rhel6|042stab136.1}}&lt;br /&gt;
* {{kernel link|rhel6|042stab134.8}}&lt;br /&gt;
* {{kernel link|rhel6|042stab134.7}}&lt;br /&gt;
* {{kernel link|rhel6|042stab134.3}}&lt;br /&gt;
* {{kernel link|rhel6|042stab133.2}}&lt;br /&gt;
* {{kernel link|rhel6|042stab133.1}}&lt;br /&gt;
* {{kernel link|rhel6|042stab132.1}}&lt;br /&gt;
* {{kernel link|rhel6|042stab131.1}}&lt;br /&gt;
* {{kernel link|rhel6|042stab130.1}}&lt;br /&gt;
* {{kernel link|rhel6|042stab129.1}}&lt;br /&gt;
* {{kernel link|rhel6|042stab128.2}}&lt;br /&gt;
* {{kernel link|rhel6|042stab127.2}}&lt;br /&gt;
* {{kernel link|rhel6|042stab126.2}}&lt;br /&gt;
* {{kernel link|rhel6|042stab126.1}}&lt;br /&gt;
* {{kernel link|rhel6|042stab125.5}}&lt;br /&gt;
* {{kernel link|rhel6|042stab125.3}}&lt;br /&gt;
* {{kernel link|rhel6|042stab125.1}}&lt;br /&gt;
* {{kernel link|rhel6|042stab124.2}}&lt;br /&gt;
* {{kernel link|rhel6|042stab123.9}}&lt;br /&gt;
* {{kernel link|rhel6|042stab123.8}}&lt;br /&gt;
* {{kernel link|rhel6|042stab123.6}}&lt;br /&gt;
* {{kernel link|rhel6|042stab123.4}}&lt;br /&gt;
* {{kernel link|rhel6|042stab123.3}}&lt;br /&gt;
* {{kernel link|rhel6|042stab123.2}}&lt;br /&gt;
* {{kernel link|rhel6|042stab123.1}}&lt;br /&gt;
* {{kernel link|rhel6|042stab120.20}}&lt;br /&gt;
* {{kernel link|rhel6|042stab120.19}}&lt;br /&gt;
* {{kernel link|rhel6|042stab120.18}}&lt;br /&gt;
* {{kernel link|rhel6|042stab120.16}}&lt;br /&gt;
* {{kernel link|rhel6|042stab120.11}}&lt;br /&gt;
* {{kernel link|rhel6|042stab120.6}}&lt;br /&gt;
* {{kernel link|rhel6|042stab120.5}}&lt;br /&gt;
* {{kernel link|rhel6|042stab120.3}}&lt;br /&gt;
* {{kernel link|rhel6|042stab120.2}}&lt;br /&gt;
* {{kernel link|rhel6|042stab117.16}}&lt;br /&gt;
* {{kernel link|rhel6|042stab117.14}}&lt;br /&gt;
* {{kernel link|rhel6|042stab116.2}}&lt;br /&gt;
* {{kernel link|rhel6|042stab116.1}}&lt;br /&gt;
* {{kernel link|rhel6|042stab113.21}}&lt;br /&gt;
* {{kernel link|rhel6|042stab113.17}}&lt;br /&gt;
* {{kernel link|rhel6|042stab113.11}}&lt;br /&gt;
* {{kernel link|rhel6|042stab112.15}}&lt;br /&gt;
* {{kernel link|rhel6|042stab111.12}}&lt;br /&gt;
* {{kernel link|rhel6|042stab111.11}}&lt;br /&gt;
* {{kernel link|rhel6|042stab108.8}}&lt;br /&gt;
* {{kernel link|rhel6|042stab108.7}}&lt;br /&gt;
* {{kernel link|rhel6|042stab108.6}}&lt;br /&gt;
* {{kernel link|rhel6|042stab108.5}}&lt;br /&gt;
* {{kernel link|rhel6|042stab108.2}}&lt;br /&gt;
* {{kernel link|rhel6|042stab108.1}}&lt;br /&gt;
* {{kernel link|rhel6|042stab106.6}}&lt;br /&gt;
* {{kernel link|rhel6|042stab106.4}}&lt;br /&gt;
* {{kernel link|rhel6|042stab105.14}}&lt;br /&gt;
* {{kernel link|rhel6|042stab104.1}}&lt;br /&gt;
* {{kernel link|rhel6|042stab103.6}}&lt;br /&gt;
* {{kernel link|rhel6|042stab102.9}}&lt;br /&gt;
* {{kernel link|rhel6|042stab094.8}}&lt;br /&gt;
* {{kernel link|rhel6|042stab094.7}}&lt;br /&gt;
* {{kernel link|rhel6|042stab093.5}}&lt;br /&gt;
* {{kernel link|rhel6|042stab093.4}}&lt;br /&gt;
* {{kernel link|rhel6|042stab092.3}}&lt;br /&gt;
* {{kernel link|rhel6|042stab092.2}}&lt;br /&gt;
* {{kernel link|rhel6|042stab092.1}}&lt;br /&gt;
* {{kernel link|rhel6|042stab090.5}}&lt;br /&gt;
* {{kernel link|rhel6|042stab090.4}}&lt;br /&gt;
* {{kernel link|rhel6|042stab090.3}}&lt;br /&gt;
* {{kernel link|rhel6|042stab090.2}}&lt;br /&gt;
* {{kernel link|rhel6|042stab088.4}}&lt;br /&gt;
* {{kernel link|rhel6|042stab085.20}}&lt;br /&gt;
* {{kernel link|rhel6|042stab085.17}}&lt;br /&gt;
* {{kernel link|rhel6|042stab084.26}}&lt;br /&gt;
* {{kernel link|rhel6|042stab084.25}}&lt;br /&gt;
* {{kernel link|rhel6|042stab084.20}}&lt;br /&gt;
* {{kernel link|rhel6|042stab084.17}}&lt;br /&gt;
* {{kernel link|rhel6|042stab084.14}}&lt;br /&gt;
* {{kernel link|rhel6|042stab084.12}}&lt;br /&gt;
* {{kernel link|rhel6|042stab083.2}}&lt;br /&gt;
* {{kernel link|rhel6|042stab081.8}}&lt;br /&gt;
* {{kernel link|rhel6|042stab081.5}}&lt;br /&gt;
* {{kernel link|rhel6|042stab081.3}}&lt;br /&gt;
* {{kernel link|rhel6|042stab079.6}}&lt;br /&gt;
* {{kernel link|rhel6|042stab079.5}}&lt;br /&gt;
* {{kernel link|rhel6|042stab079.4}}&lt;br /&gt;
* {{kernel link|rhel6|042stab078.28}}&lt;br /&gt;
* {{kernel link|rhel6|042stab078.27}}&lt;br /&gt;
* {{kernel link|rhel6|042stab078.26}}&lt;br /&gt;
* {{kernel link|rhel6|042stab078.22}}&lt;br /&gt;
* {{kernel link|rhel6|042stab076.8}}&lt;br /&gt;
* {{kernel link|rhel6|042stab076.7}}&lt;br /&gt;
* {{kernel link|rhel6|042stab076.5}}&lt;br /&gt;
* {{kernel link|rhel6|042stab075.2}}&lt;br /&gt;
* {{kernel link|rhel6|042stab074.10}}&lt;br /&gt;
* {{kernel link|rhel6|042stab072.10}}&lt;br /&gt;
* {{kernel link|rhel6|042stab068.8}}&lt;br /&gt;
* {{kernel link|rhel6|042stab065.3}}&lt;br /&gt;
* {{kernel link|rhel6|042stab063.2}}&lt;br /&gt;
* {{kernel link|rhel6|042stab062.2}}&lt;br /&gt;
* {{kernel link|rhel6|042stab061.2}}&lt;br /&gt;
* {{kernel link|rhel6|042stab059.7}}&lt;br /&gt;
* {{kernel link|rhel6|042stab057.1}}&lt;br /&gt;
* {{kernel link|rhel6|042stab055.16}}&lt;br /&gt;
* {{kernel link|rhel6|042stab055.12}}&lt;br /&gt;
* {{kernel link|rhel6|042stab055.10}}&lt;br /&gt;
* {{kernel link|rhel6|042stab053.5}}&lt;br /&gt;
* {{kernel link|rhel6|042stab049.7}}&lt;br /&gt;
* {{kernel link|rhel6|042stab049.6}}&lt;br /&gt;
* {{kernel link|rhel6|042stab044.17}}&lt;br /&gt;
* {{kernel link|rhel6|042stab044.11}}&lt;br /&gt;
* {{kernel link|rhel6|042stab039.11}}&lt;br /&gt;
* {{kernel link|rhel6|042stab039.10}}&lt;br /&gt;
* {{kernel link|rhel6|042stab037.1}}&lt;/div&gt;</summary>
		<author><name>Vvs</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.openvz.org/index.php?title=Download/kernel/rhel6/042stab145.3&amp;diff=23325</id>
		<title>Download/kernel/rhel6/042stab145.3</title>
		<link rel="alternate" type="text/html" href="https://wiki.openvz.org/index.php?title=Download/kernel/rhel6/042stab145.3&amp;diff=23325"/>
		<updated>2020-06-23T07:45:26Z</updated>

		<summary type="html">&lt;p&gt;Vvs: Bot: Automated import of articles&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Kernel branch rhel6|042stab145.3}}&lt;br /&gt;
{{Changelog}}&lt;br /&gt;
== RPMs ==&lt;br /&gt;
&lt;br /&gt;
{{Kernel flavors info rhel6}}&lt;br /&gt;
=== {{i686}} ===&lt;br /&gt;
&lt;br /&gt;
{{Download/Table head}}&lt;br /&gt;
{{Download/Table row|path=kernel/branches/rhel6-2.6.32/042stab145.3|file=vzkernel-2.6.32-042stab145.3.i686.rpm|size=33&amp;amp;nbsp;Mb|date=2020-06-23 07:19:13|sig=}}&lt;br /&gt;
{{Download/Table row|path=kernel/branches/rhel6-2.6.32/042stab145.3|file=vzkernel-devel-2.6.32-042stab145.3.i686.rpm|size=10&amp;amp;nbsp;Mb|date=2020-06-23 07:19:25|sig=}}&lt;br /&gt;
{{Download/Table row|path=kernel/branches/rhel6-2.6.32/042stab145.3|file=vzkernel-headers-2.6.32-042stab145.3.i686.rpm|size=5&amp;amp;nbsp;Mb|date=2020-06-23 07:19:27|sig=}}&lt;br /&gt;
{{Download/Table row|path=kernel/branches/rhel6-2.6.32/042stab145.3|file=vzkernel-debug-2.6.32-042stab145.3.i686.rpm|size=34&amp;amp;nbsp;Mb|date=2020-06-23 07:19:21|sig=}}&lt;br /&gt;
{{Download/Table row|path=kernel/branches/rhel6-2.6.32/042stab145.3|file=vzkernel-debug-devel-2.6.32-042stab145.3.i686.rpm|size=10&amp;amp;nbsp;Mb|date=2020-06-23 07:19:23|sig=}}&lt;br /&gt;
{{Download/Table row|path=kernel/branches/rhel6-2.6.32/042stab145.3|file=vzkernel-firmware-2.6.32-042stab145.3.noarch.rpm|size=33&amp;amp;nbsp;Mb|date=2020-06-23 07:19:27|sig=}}&lt;br /&gt;
{{Download/Table tail}}&lt;br /&gt;
=== {{x86_64}} ===&lt;br /&gt;
&lt;br /&gt;
{{Download/Table head}}&lt;br /&gt;
{{Download/Table row|path=kernel/branches/rhel6-2.6.32/042stab145.3|file=vzkernel-2.6.32-042stab145.3.x86_64.rpm|size=35&amp;amp;nbsp;Mb|date=2020-06-23 07:19:20|sig=}}&lt;br /&gt;
{{Download/Table row|path=kernel/branches/rhel6-2.6.32/042stab145.3|file=vzkernel-devel-2.6.32-042stab145.3.x86_64.rpm|size=10&amp;amp;nbsp;Mb|date=2020-06-23 07:19:25|sig=}}&lt;br /&gt;
{{Download/Table row|path=kernel/branches/rhel6-2.6.32/042stab145.3|file=vzkernel-headers-2.6.32-042stab145.3.x86_64.rpm|size=5&amp;amp;nbsp;Mb|date=2020-06-23 07:19:28|sig=}}&lt;br /&gt;
{{Download/Table row|path=kernel/branches/rhel6-2.6.32/042stab145.3|file=vzkernel-debug-2.6.32-042stab145.3.x86_64.rpm|size=36&amp;amp;nbsp;Mb|date=2020-06-23 07:19:23|sig=}}&lt;br /&gt;
{{Download/Table row|path=kernel/branches/rhel6-2.6.32/042stab145.3|file=vzkernel-debug-devel-2.6.32-042stab145.3.x86_64.rpm|size=10&amp;amp;nbsp;Mb|date=2020-06-23 07:19:24|sig=}}&lt;br /&gt;
{{Download/Table row|path=kernel/branches/rhel6-2.6.32/042stab145.3|file=vzkernel-firmware-2.6.32-042stab145.3.noarch.rpm|size=33&amp;amp;nbsp;Mb|date=2020-06-23 07:19:27|sig=}}&lt;br /&gt;
{{Download/Table tail}}&lt;br /&gt;
=== source ===&lt;br /&gt;
&lt;br /&gt;
{{Download/Table head}}&lt;br /&gt;
{{Download/Table row|path=kernel/branches/rhel6-2.6.32/042stab145.3|file=vzkernel-2.6.32-042stab145.3.src.rpm|size=130&amp;amp;nbsp;Mb|date=2020-06-23 07:19:19|sig=}}&lt;br /&gt;
{{Download/Table row|path=kernel/branches/rhel6-2.6.32/042stab145.3|file=kernel.spec|size=4&amp;amp;nbsp;Mb|date=2020-06-23 07:12:52|sig=}}&lt;br /&gt;
{{Download/Table tail}}&lt;br /&gt;
== DEBs ==&lt;br /&gt;
=== {{amd64}} ===&lt;br /&gt;
&lt;br /&gt;
{{Download/Table head}}&lt;br /&gt;
{{Download/Table row|path=kernel/branches/rhel6-2.6.32/042stab145.3|file=linux-image-2.6.32-openvz-042stab145.3-amd64_1_amd64.deb|size=66&amp;amp;nbsp;Mb|date=2020-06-23 07:11:40|sig=}}&lt;br /&gt;
{{Download/Table row|path=kernel/branches/rhel6-2.6.32/042stab145.3|file=linux-headers-2.6.32-openvz-042stab145.3-amd64_1_amd64.deb|size=7&amp;amp;nbsp;Mb|date=2020-06-23 07:11:38|sig=}}&lt;br /&gt;
{{Download/Table row|path=kernel/branches/rhel6-2.6.32/042stab145.3|file=linux-image-openvz-amd64_042stab145.3_amd64.deb|size=3&amp;amp;nbsp;Kb|date=2020-06-23 07:11:41|sig=}}&lt;br /&gt;
{{Download/Table row|path=kernel/branches/rhel6-2.6.32/042stab145.3|file=linux-source-2.6.32-openvz-042stab145.3-amd64_1_all.deb|size=134&amp;amp;nbsp;Mb|date=2020-06-23 07:11:44|sig=}}&lt;br /&gt;
{{Download/Table tail}}&lt;br /&gt;
=== {{i386}} ===&lt;br /&gt;
&lt;br /&gt;
{{Download/Table head}}&lt;br /&gt;
{{Download/Table row|path=kernel/branches/rhel6-2.6.32/042stab145.3|file=linux-image-2.6.32-openvz-042stab145.3-i386-686_1_i386.deb|size=63&amp;amp;nbsp;Mb|date=2020-06-23 07:11:41|sig=}}&lt;br /&gt;
{{Download/Table row|path=kernel/branches/rhel6-2.6.32/042stab145.3|file=linux-headers-2.6.32-openvz-042stab145.3-i386_1_i386.deb|size=7&amp;amp;nbsp;Mb|date=2020-06-23 07:11:38|sig=}}&lt;br /&gt;
{{Download/Table row|path=kernel/branches/rhel6-2.6.32/042stab145.3|file=linux-image-openvz-i386_042stab145.3_i386.deb|size=3&amp;amp;nbsp;Kb|date=2020-06-23 07:11:41|sig=}}&lt;br /&gt;
{{Download/Table row|path=kernel/branches/rhel6-2.6.32/042stab145.3|file=linux-source-2.6.32-openvz-042stab145.3-i386_1_all.deb|size=134&amp;amp;nbsp;Mb|date=2020-06-23 07:11:47|sig=}}&lt;br /&gt;
{{Download/Table tail}}&lt;br /&gt;
&lt;br /&gt;
{{Kernel patch for|2.6.32}}&lt;br /&gt;
&lt;br /&gt;
{{Download/Table head}}&lt;br /&gt;
{{Download/Table row|path=kernel/branches/rhel6-2.6.32/042stab145.3/patches|file=patch-042stab145.3-combined.gz|size=89&amp;amp;nbsp;Mb|date=2020-06-23 07:17:13|sig=patch-042stab145.3-combined.gz.asc}}&lt;br /&gt;
{{Download/Table tail}}&lt;br /&gt;
== Configs ==&lt;br /&gt;
&lt;br /&gt;
Official configs of this OpenVZ kernel used to build binaries.&lt;br /&gt;
&lt;br /&gt;
{{Download/Table head}}&lt;br /&gt;
{{Download/Table row|path=kernel/branches/rhel6-2.6.32/042stab145.3/configs|file=config-2.6.32-042stab145.3.debug.i686|size=111&amp;amp;nbsp;Kb|date=2020-06-23 07:18:52|sig=}}&lt;br /&gt;
{{Download/Table row|path=kernel/branches/rhel6-2.6.32/042stab145.3/configs|file=config-2.6.32-042stab145.3.debug.x86_64|size=107&amp;amp;nbsp;Kb|date=2020-06-23 07:18:59|sig=}}&lt;br /&gt;
{{Download/Table row|path=kernel/branches/rhel6-2.6.32/042stab145.3/configs|file=config-2.6.32-042stab145.3.i686|size=111&amp;amp;nbsp;Kb|date=2020-06-23 07:18:35|sig=}}&lt;br /&gt;
{{Download/Table row|path=kernel/branches/rhel6-2.6.32/042stab145.3/configs|file=config-2.6.32-042stab145.3.x86_64|size=106&amp;amp;nbsp;Kb|date=2020-06-23 07:18:43|sig=}}&lt;br /&gt;
{{Download/Table tail}}&lt;br /&gt;
&lt;br /&gt;
{{Kernel archives|rhel6}}&lt;/div&gt;</summary>
		<author><name>Vvs</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.openvz.org/index.php?title=Template:Latest_rhel6_kernel&amp;diff=23324</id>
		<title>Template:Latest rhel6 kernel</title>
		<link rel="alternate" type="text/html" href="https://wiki.openvz.org/index.php?title=Template:Latest_rhel6_kernel&amp;diff=23324"/>
		<updated>2020-06-23T07:45:16Z</updated>

		<summary type="html">&lt;p&gt;Vvs: Bot: Automated import of articles *** existing text overwritten ***&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;042stab145.3&lt;/div&gt;</summary>
		<author><name>Vvs</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.openvz.org/index.php?title=Download/kernel/rhel6/042stab145.3/changes&amp;diff=23323</id>
		<title>Download/kernel/rhel6/042stab145.3/changes</title>
		<link rel="alternate" type="text/html" href="https://wiki.openvz.org/index.php?title=Download/kernel/rhel6/042stab145.3/changes&amp;diff=23323"/>
		<updated>2020-06-23T07:10:25Z</updated>

		<summary type="html">&lt;p&gt;Vvs: Created page with &amp;quot;== Changes == Since {{kernel link|rhel6|042stab144.1}}:  * Rebase to RHEL6u10 kernel 2.6.32-754.30.2.el6 * '''Moderate''' hw: Special Register Buffer Data Sampling (SRBDS). (C...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Changes ==&lt;br /&gt;
Since {{kernel link|rhel6|042stab144.1}}:&lt;br /&gt;
&lt;br /&gt;
* Rebase to RHEL6u10 kernel 2.6.32-754.30.2.el6&lt;br /&gt;
* '''Moderate''' hw: Special Register Buffer Data Sampling (SRBDS). (CVE-2020-0543)&lt;br /&gt;
* Host crashes in nf_nat_cleanup_conntrack() on container stop. (PSBM-104341, OVZ-6241, OVZ-6708)&lt;br /&gt;
* Stability fixes in ext4, cpt and vzsnap.&lt;br /&gt;
&lt;br /&gt;
=== See also ===&lt;br /&gt;
* {{RHSA|2020-2430}}&lt;br /&gt;
* {{CVE|2020-0543}}&lt;/div&gt;</summary>
		<author><name>Vvs</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.openvz.org/index.php?title=Hosting_providers&amp;diff=23322</id>
		<title>Hosting providers</title>
		<link rel="alternate" type="text/html" href="https://wiki.openvz.org/index.php?title=Hosting_providers&amp;diff=23322"/>
		<updated>2020-06-17T06:50:55Z</updated>

		<summary type="html">&lt;p&gt;Vvs: Please do not remove content of page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''OpenVZ is free and open implementation of Virtuozzo containers for Linux.&lt;br /&gt;
Don't forget to keep [[testimonials|testimonial]] and [[donate]] to OpenVZ.'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
OpenVZ makes for a great hosting platform for VPS hosting. The providers below offer VPS services using OpenVZ.&lt;br /&gt;
&lt;br /&gt;
[[File:UsageLocation.svg]]&lt;br /&gt;
&lt;br /&gt;
= OpenVZ hosting providers =&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- @@@@@@@@@@@@@@@@@@@@@@@&lt;br /&gt;
&lt;br /&gt;
IF YOU EDIT THIS PAGE,  PLEASE OBEY TO THE FOLLOWING RULES:&lt;br /&gt;
&lt;br /&gt;
1. Keep your record on ONE line&lt;br /&gt;
2. Keep the list of providers alphabetically sorted, DO NOT insert your record on top.&lt;br /&gt;
3. Keep the list of countries alphabetically sorted as well.&lt;br /&gt;
&lt;br /&gt;
     @@@@@@@@@@@@@@@@@@@@@@@@ --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Andorra ==&lt;br /&gt;
* [https://www.actiu.net/pro/ Actiu informatica] amb servidors dins i fora del principat.&lt;br /&gt;
&lt;br /&gt;
== Argentina ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.fulltech.com.ar/ Full Tech Solutions] Specializes in the virtualization of OpenVZ &amp;amp; Virtuozzo containers, installed in the Full Tech Solutions Data Center located in Villa Elisa, Entre Rios Argentina.  It also offers services hosted in the United States, Netherlands and Germany&lt;br /&gt;
* [http://www.g2khosting.com/ G2K Hosting] offer OpenVZ containers with high level hardware technology from 25 US with Control Panel, various Linux Dists and full support.&lt;br /&gt;
* [https://hostingplus.com.ar/ HostingPlus Argentina] provide OpenVZ containers at our own datacenter in South America with triple internet provider. Starting from  us20/month&lt;br /&gt;
* [https://ibumu.com/ Ibumu] Best containers for wordpress starting from $5.5.&lt;br /&gt;
* [http://www.ihserver.net/ IHServer] Specialized virtualization on OpenVZ containers at Gigared datacenter. We have in Argentina one of the better fiber connection to the US, but also provides services from LSTN in Texas.&lt;br /&gt;
* [https://www.infranetworking.com.ar/ Infranetworking] All our Cloud VPS container solutions for Argentine customers are powered by the all mighty OpenVZ virtualization software.&lt;br /&gt;
* [https://www.neolo.com/ Neolo] provide OpenVZ containers at our own datacenter in South America with double internet provider. Choose your Linux OS and apps. Full support.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [http://www.wiredhosting.com.ar/ WiredHosting] offer XEN and OpenVZ containers with SSD drives, cloudflare security and weekly backups to protect your information. Phone and Helpdesk support. &lt;br /&gt;
&lt;br /&gt;
== Australia == &lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.auhost4u.com/ AUHost4u] - VPS Solutions provided from our D.C. in Sydney.&lt;br /&gt;
* [https://www.conetix.com.au/ Conetix Hosting] Specialising in business grade, fully managed Virtuozzo containers with Virtuzzo Cloud Storage. 100% Australian owned and operated. Brisbane based DC with Enterprise Dell servers.&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides self-managed OpenVZ based SSD VPS located at Equinix SY3 in Sydney, one of the best and well-connected datacenters in the region.&lt;br /&gt;
* [http://www.vpsfast.us/australia-cloud-server VPSFast] - VPS Provider with good prices in Australia.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Austria ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
* [https://kapper.net/ kapper.net] kapper.net offers OpenVZ and Virtuozzo (and other HyperVisors) based server-solutions with kind support and 24x7 maintenance.&lt;br /&gt;
* [https://mdhost.eu/vserver.php MDHost.eu] New Hosting Provider with nice Prices and many Server locations. Austria, Germany, France and more.&lt;br /&gt;
* [https://www.snb.at/ SNB] offers OpenVZ containers and support's also existing vm's in customers environment&lt;br /&gt;
* [https://www.waveride.at/ Waveride] Waveride, an EDIS company, offers budget full gigabit OpenVZ + solusVM VPS in Austria, USA and the Netherlands&lt;br /&gt;
* [http://www.vpsfast.us/austria-cloud-server VPSFast] - VPS Provider with good prices in Austria.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Brazil ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.datacorporate.com.br/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [http://www.globalmedia.com.br/ GlobalMedia] We offers OpenVZ containers hosted on a very fast network with fast setup. Ubuntu, Debian, CentOS.&lt;br /&gt;
* [http://www.host1plus.com.br/ Host1Plus] Servers hosted in São Paulo. We offering reliable and secure OpenVZ VPS Servers with 99.99% up-time, starting from $5.00 per month.&lt;br /&gt;
* [http://www.ipdeck.net/ IPDECK] VPS Linux server from R$15,00/month! Fully customizable according to your needs.&lt;br /&gt;
* [https://www.quantivehost.com.br/ QuantiveHost] VPS Linux with 99.99% uptime. Prices starting from R$ 29,35.&lt;br /&gt;
* [https://www.elevahost.com.br/ Eleva host] Server hosted in Brazil. The best support.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [https://www.ferenz.com.br/ Ferenz Networks] VPS Linux with best support. Prices starting from R$ 29,90.&lt;br /&gt;
&lt;br /&gt;
== Bulgaria ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.cloudhostinghub.com Offshore VPS Hsoting] CloudHostingHub.com is an [https://www.cloudhostinghub.com Cloud Offshore VPS Hosting] located in Buglaria. They provide both OpenVZ and KVM virtualization. CloudHostingHub.com is known for the high privacy protection , performance and stability.&lt;br /&gt;
* [https://www.cyberhour.com CyberHour.com] CyberHour.com is an [https://www.cyberhour.com offshore VPS hosting] provider located in Europe. The provide blazing fast servers and premium Bandwidth of 200Mbps. With high privacy protection.&lt;br /&gt;
* [https://www.linuxssdvps.com Bulgaria VPS] Linux SSD VPS is an [https://www.linuxssdvps.com offshore VPS hosting] provider located in Sofia, Bulgaria. Privacy is very respected and anonymous registrations are allowed, as well as payments via Bitcoin / PayPal.&lt;br /&gt;
* [http://www.webuzo.net Bulgaria VPS] Webuzo Network is an offshore SSD VPS hosting provider located in Bulgaria. Privacy is very respected and anonymous registrations are allowed, as well as payments via Bitcoin / PayPal.&lt;br /&gt;
* [https://vpsbg.eu/en Bulgaria VPS] VPSBG.eu is an offshore SSD VPS hosting provider located in Sofia, Bulgaria. Privacy is very respected and anonymous registrations are allowed, as well as payments via Bitcoin.&lt;br /&gt;
* [http://www.bul.net/ Bul.net] Provides OpenVZ based VPS, perfect user/VPS management via [http://ispsystem.com VDSManager]. Instant creation after online payment. Debian/Ubuntu/CentOS with ISPManager Control panel. Optimal price policy.&lt;br /&gt;
* [http://www.cointech.eu/vps-hosting/ CoInTech] provides OpenVZ based VPS containers, free webmin managment. Containers can be CentOS, Slackware, Ubuntu, custom or our special [http://www.mandriva.com Mandriva Linux] container with own [http://mandriva.cointech.net repository].&lt;br /&gt;
* [http://www.rax.bg/ RAX.bg] Offers OpenVZ based VPS, hosted on a clustered infrastructure and redundant network. Easy to use user management, Instant setup, CentOS (OS).&lt;br /&gt;
* [http://www.jump.bg/ Jump.bg] Provides OpenVZ VPS servers hosted on a redundant network which provides a very easy to manage platform for all clients which gain instant access to their OS ( Ubuntu, CentOS , Debian etc ... )&lt;br /&gt;
* [https://www.fitvps.com/ FitVPS.com] Offers affordable and reliable OpenVZ based VPS in Varna, Bulgaria. Own data center, own multihomed network, with SLA. Instant automatic setup, SolusVM control panel.&lt;br /&gt;
* [http://www.qhoster.com/ QHoster.com] Instant activation OpenVZ VPS in UK, USA, Germany, France and Switzerland. Both 32/64 bit OpenVZ OS VPS templates : CentOS 5/6, Debian 6/7, Ubuntu 12/13.&lt;br /&gt;
* [https://www.verdina.net Verdina.NET] Verdina.net offers dedicated hosting services, provided by powerful dell hardware. Servers are located in Telepoint Datacenter, a Tier 3 DC located in Sofia, Bulgaria.&lt;br /&gt;
* [https://www.vps.ag/ VPS.AG] Affordable and reliable OpenVZ VPS based in Sofia, Bulgaria. Instant setup and 24/7 support.&lt;br /&gt;
* [http://www.vpsfast.us/bulgaria-vps VPSFast] - VPS Provider with good prices in Bulgaria.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Canada ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://4goodhosting.com/linux-vps-hosting 4GooodHosting] - Canadian OpenVZ VPS Servers, Starting from  $18.99/month SSD,. Canada VPS hosting in three different Canadian Data Centers with nightly backups.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [https://whc.ca/canadian-cloud-servers Web Hosting Canada Cloud Servers] - Powerful Cloud servers powered by OpenVZ and located in Canadian datacenters, with fast RAID-10 storage, fully managed with cPanel.&lt;br /&gt;
* [http://compevo.com compevo Clustered VPS Server Hosting Provider] - We offer clustered VPS Servers to avoid downtime and dataloss. Our network and service is second to none and is used by businesses around the world.&lt;br /&gt;
* [http://www.datacorporate.ca/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [https://www.delimiter.com/storage-vps/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [https://www.miditech.com/ MidiTech Hosting Canada] VPS hosting offered by MidiTech Canada are powered by VMware, . Fully Managed VPS with control panels&lt;br /&gt;
* [http://www.gotekky.com Gotekky Cloud VPS Hosting] High quality Cloud VPS packages powered by our own infrastructure and network in Toronto. Scalable from our $5/mo plan all the way to your own dedicated cloud server. Based on OpenVZ and our own proprietary panel.&lt;br /&gt;
* [https://gigebox.com GIGEBOX.COM] GIGEBOX are expert providers of secure business hosting services, we operate high-performance professional servers, specially designed for businesses, powered by the Intel(R) Xeon(R) Hexa-Core CPU Processors and 128 GB DDR3 minimum RAM. Enjoy high availability, performance and security for multiple uses.&lt;br /&gt;
* [http://www.letstalkdigital.com/index.php?option=com_content&amp;amp;view=article&amp;amp;id=73&amp;amp;Itemid=65 LetsTalkDigital VPS Hosting] LetsTalkDigital.com offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from $14.99. Virtual Private Server (VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://secure.media-hosts.com/link.php?id=7 Media-Hosts.com] Provides Quality and Scalable OpenVZ based Virtual Private Servers. 100% network uptime guaranteed. Located in Montreal Quebec with 5 Tier1 upstream providers.&lt;br /&gt;
* [http://www.openvz.ca OpenVZ.ca] Canadian Budget VPS Servers on OpenVZ Platform. &lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [http://protoserver.com ProtoServer] Advanced VPS Hosting from $4.95/month. Many pre-installed VPS Templates available (CMS, E-commerce, Web development, Online community, Media streaming, etc.) No bundles or service plans - mix VPS resources as needed and change VPS configuration anytime. Also offering DNS Hosting, E-mail hosting, Domains Registration.&lt;br /&gt;
* [http://www.vistapages.com/vps Vistapages VPS] - IBM &amp;amp; Dell Hardware. MCI/Verizon Backbone. Distros: Centos, Fedora, Debian &amp;amp; more. Full management available. Located in Toronto.&lt;br /&gt;
* [http://vpsville.ca/ VPSVille] - Good network. Good CPU. Good choice of distros: Centos, Fedora, Debian, Ubuntu, Slackware, Gentoo, OpenSUSE, CERN. My favorite OpenVZ provider. [mailto:jak@isp2dial.com John Kelly]&lt;br /&gt;
* [http://solib.ca/services-offerts/hebergement-haute-vitesse/serveurs-vps/ SOLIB Logiciel Libre Québec] Our company offers DDoS protected server solutions including OpenVZ containers. Very high availability and reliability, all our VPS are located in Quebec, Canada.&lt;br /&gt;
* [https://www.host-stage.net/linux-vps/ HostStage - Linux VPS] - Simple, Reliable OpenVZ VPS packed with 1 GBPS port speed, RAID 10 SSD, Intel Xeon CPU, DDoS Protection from $4.95/month&lt;br /&gt;
* [https://undergroundprivate.com/russiaoffshorevps.html  UndergroundPrivate.com] - OpenVZ with highly privacy, offshore , DMCA ignored , high confidence, SolusVM and cPanel, managed and non managed service.&lt;br /&gt;
* [http://www.vpsfast.us/canada-vps VPSFast] - VPS Provider with good prices in Canada.&lt;br /&gt;
* [https://websavers.ca/canadian-vps-hosting Websavers Inc in Halifax] - VZ containers priced by the resource. Resource changes entirely client-level.&lt;br /&gt;
* [https://www.yoorshop.fr/hosting-ssd-vps-usa-canada.php YOORshop SAS] - High performance NVMe SSD Linux VPS in Canada, daily backup included. Starting from €7,49 /month&lt;br /&gt;
&lt;br /&gt;
== Colombia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.datacorporate.co/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [http://www.soficol.com/ Soficol] Offers Enterprise OpenVZ based VPS, hosted on a clustered infrastructure and redundant network. Easy to use user management and instant setup.&lt;br /&gt;
* [https://www.hostingplus.com.co/ Hosting Plus Colombia] provide OpenVZ containers at our own datacenter in South America with triple internet provider. Starting from  us20/month&lt;br /&gt;
* [https://ibumu.com/ Ibumu] Best containers for wordpress starting from $5.5.&lt;br /&gt;
&lt;br /&gt;
== Czech Republic ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://4smart.cz 4Smart.cz] - prepaid, you are charged only by the system resources you use, therefore you can run a VPS for as little as  1 EUR a month if your vps is not resource hungry. Even if you pay  0,50 EUR  month, you still have 3 GB of RAM and 8 cores available to you VPS.&lt;br /&gt;
* [http://www.freecloud.cz FREECLOUD.CZ] - Free OpenVZ VPS Server - own IP, 800Mhz CPU, 512MB RAM, 50Mbits LAN, 10GB HDD, 100GB Traffic - Debian, Ubuntu, Gentoo, Slackware, Fedora, Centos&lt;br /&gt;
* [http://www.hukot.cz Hukot.cz] - OpenVZ VPS Servers starting from 2.92 €, XEON, 1 Gbps uplink, unlimited traffic. Debian, Ubuntu, CentOS, Scientific, SuSe, Fedora, Elastix.&lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [http://www.ultimatehosting.eu UltimateHosting.eu] - OpenVZ VPS Servers starting from $8 with custom configuration - up to 100 GB HDD, 2048 MB RAM, 2 GHz CPU, and unlimited traffic.&lt;br /&gt;
* [http://www.mujhost.net MUJHOST.NET] - OpenVZ VPS Servers starting from 160 Kč, 100Mbps / 1 Gbps uplink, unlimited traffic. Debian, Ubuntu, CentOS ...&lt;br /&gt;
&lt;br /&gt;
== Chile ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.1h.cl/ 1h.cl Vps - Chile] - VPS High Performance with OpenVZ in Chile&lt;br /&gt;
* [http://www.1hosting.cl/ 1hosting Virtual servers - Chile] - VPS Professional with OpenVZ&lt;br /&gt;
* [http://www.dch.cl/ DCH] - DCH.cl Hosting Chile - High Performance VPS Servers with OpenVZ &lt;br /&gt;
* [https://www.dominioweb.net/ Dominioweb] - Premium Hosting and domain registration&lt;br /&gt;
* [http://ecohosting.cl/ EcoHosting.cl Santiago - Chile] - VPS with OpenVZ in Chile&lt;br /&gt;
* [http://www.host.cl/ Host.cl] - Cloud Computing&lt;br /&gt;
* [https://www.hostingplus.cl/ HostingPlus Internet Limitada] - High Performance Vps provider in Chile&lt;br /&gt;
* [https://www.hostname.cl/ Hostname Ltda] - VPS Hosting with Datacenter in Chile&lt;br /&gt;
* [https://www.inc.cl/ INC Internet Limitada] - VPS Hosting provider in Chile&lt;br /&gt;
&lt;br /&gt;
== Denmark ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.vpsfast.us/denmark-cloud-server VPSFast] - VPS Provider with good prices in Denmark.&lt;br /&gt;
&lt;br /&gt;
== Ecuador ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.dedi.space/ DediSpace Telecom] - VPS Servers in Ecuador - USA, France, Germany, Ecuador Datacenter.&lt;br /&gt;
&lt;br /&gt;
== France ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.BargainVPS.co.uk/ BargainVPS] - UK / US / EU Instant setup VPS - We have some great Linux &amp;amp; Windows Bargain VPS packages on offer for you here all available Fully Managed.&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in France from 1.88EUR/month.&lt;br /&gt;
* [http://www.fixweb.com Fixweb] Great managed hosting provider with strong anti ddos solution - openvz only - leader in managed openvz solution with horizontal scaling and high availability&lt;br /&gt;
* [http://www.Freaksol.com/ FreaKs VPS Hosting] Self reliant hosted on independent networks &amp;amp; DC low ping,No restrictions on file types,Unlimited resources,high ram servers &lt;br /&gt;
* [https://galaxyhostplus.com/ovz GalaxyHostPlus] Cheap VPS Hosting based in Roubaix with new 2016 line starts from $2/Month &lt;br /&gt;
* [http://www.harmony-hosting.com Harmony-Hosting] A high performance VPS hosting - The leader in France&lt;br /&gt;
* [https://www.delimiter.com/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [http://www.lws.fr/serveur_dedie_linux.php LWS - Linux VPS ] - Linux VPS Hosting - Only 9.99€/month, Affordable and Secure OpenVZ VPS Servers with 99.99% up-time, web hosting control panel Included. French datacenter&lt;br /&gt;
* [http://www.ovh.co.uk/vps/ OVH VPS] linux from 3€/month, [http://www.ovh.co.uk/vps/vps-cloud.xml windows] from 12€/month.&lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [https://VPSZ.FR VPSZ] VPS Hosting in France. Starting from 2,99€, Unlimited traffic.&lt;br /&gt;
* [http://www.1euro-hosting.eu BEST EU VPS - 1€ Hosting] - Providing reliable and secure OpenVZ VPS Servers with 99.99% up-time, starting from 8€&lt;br /&gt;
* [https://www.shape.host/linux-vps/ Shape Host - Linux VPS] - OpenVZ virtual servers, Instant Linux VPS&lt;br /&gt;
* [https://undergroundprivate.com/russiaoffshorevps.html  UndergroundPrivate.com] - OpenVZ with highly privacy, offshore , DMCA ignored , high confidence, SolusVM and cPanel, managed and non managed service.&lt;br /&gt;
* [https://www.host-stage.net/linux-vps/ HostStage - Linux VPS] - Simple, Reliable OpenVZ VPS packed with 1 GBPS port speed, RAID 10 SSD, Intel Xeon CPU from $4.95/month&lt;br /&gt;
* [https://www.yoorshop.hosting/hosting-vps-ssd-europe.php YOORshop SAS] - High performance NVMe SSD OpenVZ 7 VPS within 13 countries in Europe, Canada and Singapore. Daily backup included. From €7,49 /month&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Germany ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://afterburst.com Afterburst (Previously FanaticalVPS)]: affordable unmetered, unmanaged VPS servers in Germany.&lt;br /&gt;
* [http://www.b2b-hosting.de/vps/ B2B Hosting]: Professional virtual servers for business applications. Performance and reliability at a fair price. Made with OpenVZ.&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in Germany from 1.88EUR/month.&lt;br /&gt;
* [https://www.delimiter.com/dedicated-servers/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [https://galaxyhostplus.com/ovz GalaxyHostPlus] Cheap VPS Hosting based in Frankfurt with new 2016 line starts from  $2/Month&lt;br /&gt;
* [http://hostmist.com/openvz-vps-germany.html Host Mist]: features budget OpenVZ VPS hosting in Germany.&lt;br /&gt;
* [http://www.host1plus.com/ Host1Plus] Servers based in Frankfurt am Main. Offering reliable OpenVZ based VPS servers in Germany starting from $2.50 per month.&lt;br /&gt;
* [http://www.hostingjuice.com/ HostingJuice] The Superioum VPS and Web Hosting provider, low prices - Premium packages.&lt;br /&gt;
* [http://www.ingate.de/managed-server.html Ingate] offers managed servers with openVZ virtualization. located in germany, great support.&lt;br /&gt;
* [http://linevast.de/angebote/linux-openvz-vserver-mieten.html Linevast] Reliable OpenVZ based VPS with fast support, located in germany&lt;br /&gt;
* [https://cp.myvirtualserver.com/?affid=42 MyVirtualServer]: Cheap VPS (OpenVZ/KVM, 5TB Traffic, 10Gigabit), servers located in Frankfurt (best ping, starting 1.99€) good support (en/de) //New Design!&lt;br /&gt;
* [https://www.nogics.com Nogics Technologies]: Affordable VPS based in Germany. Starts from $5.96/mo.&lt;br /&gt;
* [http://www.plambee.de/vserver.php Plambee.de Webhosting]: Powerfull OpenVZ based VPS servers at low cost with hosting in Germany&lt;br /&gt;
* [https://rackset.com/ Rackset Hosting] Managed Dedicated / VPS and Website Hosting services since 2004.&lt;br /&gt;
* [http://www.serverbiz.de/vserver Serverbiz] Powerful VPS at very low prices.&lt;br /&gt;
* [http://www.synapseglobal.com/voip_vps.html SynapseGlobal.com] Elastix, Trixbox, PBX in a Flash and Asterisk VPS - OpenVZ based Asterisk VOIP servers located in Munich Germany.&lt;br /&gt;
* [http://www.vStarVPS.com vStarVPS]: Reliable VPS Hosting at lowest prices, with 99.9% uptime, Premium Unmetered Bandwidth and Custom HDD/RAM of your choice. Instant and FREE Setup. RapidLeech Allowed.&lt;br /&gt;
* [http://whynotavps.com WhyNOTaVPS]: Instant activated VPS SERVERS!!&lt;br /&gt;
* [http://squote.de/index.php?ref=1421485383 SQuote]: SQuote VPS Hosting and more. VPS 1 Core, 1.024MB RAM, 512MB RAM SWAP, 50 GB HDD, 1x IPv4. 3,89EUR/month. For the best VPS SQuote.de&lt;br /&gt;
* [http://www.vpsfast.us/germany-vps VPSFast] - VPS Provider with good prices in Germany.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Guatemala ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.globalnetcafe.com/gnc/menu/hospedaje.htm Global Net Cafe]: Servicios de hospedaje, reseller, vps, colocacion y servidores. Incluyendo OpenVZ.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Hong Kong ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [https://hostus.us HostUS] features unmanaged and managed OpenVZ VPS in Hong Kong as well as 3 USA locations. Unparalleled connectivity to the Asia Pacific. Enjoy 15% off with coupon VPS15OFF.&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides self-managed OpenVZ based SSD VPS in Hong Kong, located at the Pacnet datacenter. &lt;br /&gt;
* [http://vps.timway.com/linux_vps.html Timway VPS Hosting] - Quality, non-oversold hosting provider focused on being security conscious and offering a positive client experience.   Centos, Debian, Fedora, OpenSuse and Ubuntu Containers are available.&lt;br /&gt;
* [http://www.vpsfast.us/hong-kong-cloud-server VPSFast] - VPS Provider with good prices in Hong Kong.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Hungary ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://elin.hu/index.php?menu=8&amp;amp;nyelv=hu&amp;amp;cim=Virtualis-szerver Virtual server] OpenVZ server: 2xX5650 Intel Xeon, 32GB RAM, 15.000rpm SAS disks, 100Mbit/s, unlimited bandwith.&lt;br /&gt;
* [https://www.ivirtual.co/vps-hosting/ iVirtual.co ] OpenVZ Master Server: 2x Intel Xeon @ 3.0GHZ, 64 GB ECC Ram, 15k RPM SAS HDD's, 1Gbit/s Network, Unlimited bandwith.&lt;br /&gt;
&lt;br /&gt;
== Iceland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
&lt;br /&gt;
== Ireland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== India ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://cochinwebhost.in/budget-vps-hosting/ Low Cost VPS Hosting] Fast SSD VPS Server for Hosting Solutions at budget prices with 24x7 Technical Support.&lt;br /&gt;
&lt;br /&gt;
* [http://www.datacorporate.in/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
&lt;br /&gt;
*[http://www.fastwebhost.in/vps-hosting.html fastwebhost VPS Hosting] VPS hosting offered by fastwebhost are powered by ''VPS hosting, virtual server hosting and Linux VPS hosting services''. Fully Managed VPS with control panels.&lt;br /&gt;
&lt;br /&gt;
* [http://www.Freaksol.com/ Freaksol VPS Hosting] Self reliant hosted on independent networks &amp;amp; DC low ping to India,No restrictions on file types,Unlimited resources,high ram servers&lt;br /&gt;
&lt;br /&gt;
* [https://www.geniushost.in Genius Host] Fully managed [https://www.geniushost.in SSD Web Hosting] offered by Genius Host are powered by ''OpenVZ'' With LiteSpeed Web Server &amp;amp; Mariadb.&lt;br /&gt;
&lt;br /&gt;
* [http://www.hioxindia.com/virtual-private-server.php VPS Hosting] Reliable and quality VPS Virtual Private Server Hosting&lt;br /&gt;
&lt;br /&gt;
* [https://www.hostnamaste.com HostNamaste] is your high-performance [https://www.hostnamaste.com/openvz-vps.php OpenVZ VPS Hosting] Provider. Get your perfect [https://www.hostnamaste.com/openvz-vps.php VPS Hosting] account today! Available in [https://www.hostnamaste.com/datacenter-losangeles.php Los Angeles], [https://www.hostnamaste.com/datacenter-dallas.php Dallas], [https://www.hostnamaste.com/datacenter-jacksonville.php Jacksonville], USA,  [https://www.hostnamaste.com/datacenter-france.php France], Europe, [https://www.hostnamaste.com/datacenter-mumbai-pune.php Mumbai], India and [https://www.hostnamaste.com/openvz-vps-moscow-russia.php Moscow], Russia.&lt;br /&gt;
&lt;br /&gt;
* [https://www.hostsoch.in/windows-hosting.html HostSoch Windows Hosting] Windows hosting offered by HostSoch are powered by ''Windows 2012, ASP.NET, MVC, IIS, PHP and More''. 99.9% Uptime, 24/7 Dedicated support guaranteed. &lt;br /&gt;
&lt;br /&gt;
* [https://www.miditech.co.in/ MidiTech VPS Hosting] VPS hosting offered by MidiTech are powered by ''VMware, ''. Fully Managed VPS with control panels. &lt;br /&gt;
&lt;br /&gt;
* [http://www.milesweb.com/vps-hosting.php Milesweb VPS Hosting] VPS hosting offered by Milesweb are powered by ''VMware, OpenVZ''. Fully Managed VPS with control panels. &lt;br /&gt;
&lt;br /&gt;
* [https://www.nogics.com/web/vps-hosting/ Nogics Technologies] Instant provisioning of VPS, VPS starts from $5.96/mo. 30+ OS templates.&lt;br /&gt;
&lt;br /&gt;
* [http://overlineindia.net/vpshosting-p-62.html Overline India VPS Hosting] Fully managed cPanel Installed VPS Hosting with 24x7x365 Live Chat Tech support, powered by OpenVZ&lt;br /&gt;
&lt;br /&gt;
* [http://www.prohosterz.com/linux-vps.php ProHosterZ VPS Hosting] Reliable and quality Virtual Dedicated Servers | Virtual Private Servers | XEN VPS | OpenVZ VPS | Virtual Hosting&lt;br /&gt;
&lt;br /&gt;
* [http://pve.proxmox.com/wiki/User:Apmuthu Ap.Muthu] sponsored by [http://www.gnuacademy.org GNUAcademy], [http://www.planettel.com.sg PlaNetTel] and [http://www.sacollege.net S A College] creates OpenVZ Templates for the Open Source Community and provides hosting in datacenters of clients choice or on site.&lt;br /&gt;
&lt;br /&gt;
* [http://www.servers.co.in/vps/vps_hosting.php Server Web Hosting] Offers Fully Managed OpenVZ VPS Web hosting in India/US/UK at affordable and cheap rates with best hardware quality and customer service 24/7/365 days&lt;br /&gt;
&lt;br /&gt;
* [http://vpsbeach.com VpsBeach Managed Hosting] Fully managed cPanel Installed VPS Hosting with 24x7x365 Live Chat Tech support, powered by OpenVZ&lt;br /&gt;
&lt;br /&gt;
* [http://www.vpsfast.us/india-vps VPSFast] - VPS Provider with good prices in India.&lt;br /&gt;
&lt;br /&gt;
* [http://www.vpshostingindia.net/ VPS Hosting India, Fully Managed Server] A Committed Fully Managed VPS Server for Hosting solution in India, Complete Technical Support assistance with commitment of fast, clustered and most supportive DataCenters.&lt;br /&gt;
* [http://touchstone.hosting/ Touchstone Solutions Private Limited] High-performance Enterprise VPS Hosting in India. One of the highest performing VPS Servers available with cPanel Installed.&lt;br /&gt;
* [http://www.hostitsmart.com/ Host IT Smart] - One of the best VPS Hosting Provider in India with 24X7X365 Customer support.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Indonesia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.herza.id/vps-murah/ Herza.ID] Low Cost OpenVZ Virtual Server, starting from IDR 50.000 / Month with RAID 10 SSD, Unlimited Bandwidth with 1 Gbps IIX &amp;amp; OIXP Connection, and 24/7 Technical Support.&lt;br /&gt;
&lt;br /&gt;
== Iran==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.ehost.ir EHost.ir] - OpenVZ Servers , DUAL XEON Cpus , 12 Gb Ram , 100Mbit Dedicated Connection , SAS HardDisk&lt;br /&gt;
* [http://www.vpsfa.com VPSFa.com] - OpenVZ Servers , DUAL XEON Cpus -  , 24Gb Ram , 1000Mbit Dedicated Connection , SAS HardDisk&lt;br /&gt;
* [https://webramz.com Webramz Host] - With more than 15 years experience in Managed Hosting, Webramz was first vps provider in Iran which used to setup OpenVZ servers. Nowadays we provide wide range of services including CloudLinux based OpenVZ and Managed Vps Servers.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Italy ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
* [http://www.hosting-italia.net hosting italia] - OpenVZ Servers and panel enduser Virtualizor Intel® Core™ i7-920 Quad-Core 48 GB DDR3 RAM - Guaranteed Bandwidth 200 Mbit/s&lt;br /&gt;
* [http://www.vpsfast.us/italy-vps VPSFast] - VPS Provider with good prices in Italy.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Liechtenstein ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
&lt;br /&gt;
== Lithuania ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.cloudlix.com/ CloudLix.com] - Managed and unmanaged OpenVZ virtual servers based on 2.6.32 kernel. Up to 20GHz (Intel SandyBridge) CPU and 10GB RAM. Located in Vilnius and Siauliai.&lt;br /&gt;
* [http://www.databank.lt/ databank.lt] - high-quality professional OpenVZ hosting with cloud computing solutions.&lt;br /&gt;
* [https://www.hostens.com/vps-hosting/ Hostens] - Unmanaged VPS hosting for the great price: clear deals, no hidden conditions, quality service from the heart of Europe. &lt;br /&gt;
* [https://www.lavavps.lt/ lavavps.lt] - Professional high-quality OpenVZ containers (VPS servers) affordable for everyone. Powerful control panel for VPS management.&lt;br /&gt;
* [https://monovm.com/ monovm.com] - High Quality VPS Hosting Provider&lt;br /&gt;
* [http://www.serveriai.lt/ Serveriai.lt] - Affordable OpenVZ containers on quality HP hardware. Wide choice of virtual dedicated servers up to 8 CPU cores and 8 GB RAM. Full management available. Located in Vilnius.&lt;br /&gt;
* [https://www.time4vps.com/?affid=1359 Time4VPS] - Powerful cloud technology based infrastructure will let you build custom virtual machine and pay only for what you really need. Located in Vilnius city.(0.99€/month(2Yr) 512mbRAM, 1TB Traffic// 4.5€/month(2Yr) StorageVps, 1TB, 10TB Traffic)&lt;br /&gt;
* [https://www.vpsnet.lt/en/ VPSnet.lt] - Powerful and high quality servers for a competitive price in Lithuania (Eastern Europe).&lt;br /&gt;
* [http://www.vpsfast.us/lithuania-vps VPSFast] - VPS Provider with good prices in Lithuania.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Latvia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.altnet.lv/ Altnet] - Hosting and colocation services. Any flawor, you name it. &lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
&lt;br /&gt;
* [http://www.vpsfast.us/latvia-vps VPSFast] - VPS Provider with good prices in Latvia.&lt;br /&gt;
&lt;br /&gt;
== Luxembourg ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.vpsfast.us/luxembourg-vps VPSFast] - VPS Provider with good prices in Luxembourg.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Malaysia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.cubiex.com/ Cubiex] - Malaysia Affordable Web Hosting and Domain Name. Affordable Linux VPS Hosting in Malaysia. OpenVZ based, Quad Core Xeon node. cPanel/WHM and DirectAdmin also available.&lt;br /&gt;
* [https://controlvm.com ControlVM] ControlVM Sdn. Bhd. offering OpenVZ VPS in Singapore, Malaysia, USA and Germany.&lt;br /&gt;
* [https://www.yoorshop.fr/hosting-ssd-vps-singapore-asia.php YOORshop SAS] - High performance SSD Linux VPS In Singapore with daily backup included. Starting from €7,49 /month&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Malta ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.a6it.com/ A6iT] - Stable, quality managed OpenVZ VPSs based in Malta.  Redundant network.&lt;br /&gt;
&lt;br /&gt;
== Morocco ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.belsemtech.com/ BelsemTech.CoM] BelsemTech SARL offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from 300 DH. Virtual Private Server (VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://www.hostoweb.com/ HosToWeb] is the only company providing VPS hosting in Morocco Data Center.&lt;br /&gt;
* [http://www.adk-media.com/ ADK Media] provides affordable managed and unmanaged virtual servers based on OpenVZ, Xen Paravirtualization and Xen HVM platforms. 24/7 Technical Support. Distros: Centos, Fedora, Debian, Ubuntu and more.&lt;br /&gt;
* [http://www.naja7host.com/ Naja7Host.CoM] The Naja7host SARL provides affordable VPS hosting using the OpenVZ platform. Running on Full Quality Nodes of up to 8 CPU and 16 GB RAM. . All VPS's come with Real 24/7/365  Technical Support and cPanel free (if option selected  ). Multiple choice of OS 32/64Bits (Centos, fedora, ubuntu, debian .ect ...)&lt;br /&gt;
* [http://www.lehoster.com/ Le Hoster] offers affordable Virtual Private Servers using the OpenVZ and KVM platform. Backed with our amazing customer support.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Netherlands ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.avanpad.com/ Avanpad] offers OpenVZ VPS hosting with 24\7 online support. Customer can request different control panels or templates for installation on his VPS.&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in Netherlands from 1.88EUR/month.&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
* [http://www.Freaksol.com/ FreaKs VPS Hosting] Self reliant hosted on independent networks &amp;amp; DC low ping around the world,No restrictions on file types,Unlimited resources,high ram servers&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [http://www.HostSailor.com/ HostSailor] Number 1 Netherlands Provider HostSailor provides affordable &amp;amp; high quality services such as VPS (XEN, OpenVZ and KVM) Linux or Windows, Dedicated servers, SSL certificates and domain name services.&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides self-managed OpenVZ SSD VPS in Telecity AMS 5, one of the best datacenters located in the Amsterdam area.&lt;br /&gt;
* [https://iniz.com/ INIZ VPS Hosting] INIZ provides affordable VPS Hosting in Amsterdam, Netherlands with high resources at low prices.&lt;br /&gt;
* [https://www.liteserver.nl/ LiteServer] Looking for a quality and affordable VPS in the center of The Netherlands? We provide SSD, Storage and High Bandwidth VPSes, starting at only €16 per year. We operate AS60404.&lt;br /&gt;
* [https://www.mangelot-hosting.nl/ Mangelot Hosting] Mangelot Hosting, A webhosting company located in the Netherlands, offers budget OpenVZ hosting solutions for maximum scalability en performance.&lt;br /&gt;
* [http://www.osbox.nl OsBoX Dutch Network Engineering] Cheap VPS host as low as $1 per month. Very great uptime and a overall good support. Check the website for the server plans.&lt;br /&gt;
* [http://www.signet.nl/ Signet VPS Hosting] - Signet delivers VPS hosting plans based on CentOS or Debian templates, including control-panel Virtualmin.&lt;br /&gt;
* [http://simple-webhosting.eu/ Simple-webhosting.eu] - OpenVZ based web hosting starting from €0.98 per month.&lt;br /&gt;
* [https://www.seedvps.com SeedVPS] Provides Powerful &amp;amp; Reliable OVZ/KVM VPS Hosting in The Netherlands&lt;br /&gt;
* [http://www.touchvps.com/ TouchVPS] is a company who offer Support and Managed Services for OpenVZ Servers ,also offer templates for openvz ready to go with cPanel , DirectAdmin , Plesk , Games, IRC Services, Desktop and many more.&lt;br /&gt;
* [http://www.voipcomplete.com/product-overview/dedicated-vps.html VOIPcomplete] offers dedicated VPS plans based on CentOS including a VPS management interface.&lt;br /&gt;
* [https://www.waveride.at/ Waveride] Waveride, an EDIS company, offers budget full gigabit OpenVZ + solusVM VPS in Austria, USA and the Netherlands&lt;br /&gt;
* [https://undergroundprivate.com/russiaoffshorevps.html  UndergroundPrivate.com] - OpenVZ with highly privacy, offshore , DMCA ignored , high confidence, SolusVM and cPanel, managed and non managed service.&lt;br /&gt;
* [https://www.totallyhosted.nl/ TotallyHosted] OpenVZ based Premium VPS services located in the Netherlands @ Serverius DC.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [http://www.vpsfast.us/netherlands-vps VPSFast] - VPS Provider with good prices in Netherlands.&lt;br /&gt;
&lt;br /&gt;
== Norway ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.vpsfast.us/norway-vps VPSFast] - VPS Provider with good prices in Norway.&lt;br /&gt;
&lt;br /&gt;
== Pakistan ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://vimzaa.com/ Vimzaa] The best hosting in Pakistan.&lt;br /&gt;
&lt;br /&gt;
== Philippines ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.web.com.ph/vps.php Web.com.ph] - provides OpenVZ virtual servers in the Philippines.&lt;br /&gt;
&lt;br /&gt;
== Perú ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.hn.pe/ Hostname] Hostname offers business OpenVZ containers in Perú&lt;br /&gt;
* [http://www.hostingandino.pe/ Hostingandino Lima - Peru] - VPS with OpenVZ in Peru&lt;br /&gt;
* [http://www.hostingplus.pe/ HostingPlus Internet Limitada] - High Performance Vps provider in Peru&lt;br /&gt;
* [https://www.hostingroup.com/ Hostingroup] Web hosting for small businness in Perú.&lt;br /&gt;
* [https://hostingweb.pe/ Hosting Web] The best hosting in PERU.&lt;br /&gt;
* [https://www.inchosting.pe/ HostingINC SAC] OpenVZ virtualization solutions for business in Perú.&lt;br /&gt;
* [https://www.mejorhosting.pe/ Mejor Hosting Perú] Hosting comparison for peruvian hosting providers.&lt;br /&gt;
* [https://webuniversal.pe/ Web Universal] The best hosting in PERU in the World.&lt;br /&gt;
&lt;br /&gt;
== Poland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://hosteam.pl/ HosTeam] offers OpenVZ VPS hosting from their DataCenter in Poland. Customer has choice of all major Linux distros (WARNING!!! restoring your backup is VERY expensive and they charge even if it wasn't restored correctly!), NATIVE IPV6 AVAILABLE!&lt;br /&gt;
&lt;br /&gt;
* [http://ultimahost.pl/ UltimaHost] high grade OpenVZ VPS and FreeBSD jail (DC in Łódź, Poland), brand of statnet.pl, SSD available for more expensive packets, NO IPV6 AVAILABLE (but they can load you tun module)&lt;br /&gt;
&lt;br /&gt;
* [http://budgetvps.pl/ BudgetVPS] very cheap, low end grade OpenVZ VPSes (DC in Gdańsk, Poland), brand of HitMe.pl&lt;br /&gt;
&lt;br /&gt;
* [https://hitme.pl/ HitMe.pl] high grade OpenVZ/Xen PV/Xen HVM VPSes, Virtuozzo (DC in Gdańsk, Poland), NATIVE IPV6 AVAILABLE (/64 on demand for free)!&lt;br /&gt;
&lt;br /&gt;
* [http://www.kr-cpd.pl/oferta/serwery-vps/ KR-CPD] Cracow's Center of Data Processing (DC of course in Cracow, Poland)&lt;br /&gt;
&lt;br /&gt;
* [http://livenet.pl Livenet] cheap, middle/low end OpenVZ VPSes (DC in Łódź, Poland)&lt;br /&gt;
&lt;br /&gt;
* [http://slaskdatacenter.pl/ Śląsk Data Center] high/middle grade OpenVZ VPSes (DC in Silesia province, Poland), SSD available for more expensive packets&lt;br /&gt;
&lt;br /&gt;
* [https://www.ionic.pl/ IONIC.pl] VPS OpenVZ with SolusVM control panel, own DC in Cracow&lt;br /&gt;
&lt;br /&gt;
* [https://microvps.pl/ MicroVPS.pl] Middle And low end OpenVZv7 VPS plans. SSD for regular VPS and HHD for storage plans (up to 1TB)&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Portugal ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.ptservidor.pt/ PTServidor] - OpenVZ virtual servers with free management based in Portugal.&lt;br /&gt;
* [http://www.efeito.net/ Weblevel.pt] - OpenVZ virtual servers based in Portugal.&lt;br /&gt;
* [https://www.webtuga.pt/ WebTuga] - Managed/Unmanaged Virtual Private Servers hosted in a Portuguese Datacenter with lots of extras&lt;br /&gt;
* [https://www.cloudfire.pt/ CloudFire] - OpenVZ VPS at very low prices hosted in Portugal&lt;br /&gt;
* [https://www.linxisp.com/ LINXISP] - High Availability &amp;amp; Performance OpenVZ Containers&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] - Build an OpenVZ VPS in 14 locations WordWide From £2.49&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Romania ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.intovps.com IntoVPS] - offers unmanaged OpenVZ virtual servers based in Romania, Netherlands and USA. A lot of resources for decent prices.&lt;br /&gt;
* [http://www.ename.ro/dedicated.html eName] - managed OpenVZ virtual servers in Bucharest, Romania&lt;br /&gt;
* [http://www.ch-center.com/virtual-servers Ch-center] - unmanaged OpenVZ virtual servers, based in Romania in it's own Data Center&lt;br /&gt;
* [http://www.clouds.ro/servere-virtuale/ Clouds] - OpenVZ virtual servers hosted on premium hardware, in Romania&lt;br /&gt;
* [http://www.HostSailor.com/ HostSailor] HostSailor provides affordable &amp;amp; high quality OpenVZ and KVM servers in Romania&lt;br /&gt;
* [https://www.shape.host/linux-vps/ Linux VPS] - OpenVZ virtual servers, Instant Linux VPS&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Russia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.internoc24.host Internoc24.HOST] is an international [https://www.www.internoc24.host Offshore VPS ] provider with reliable SSD VPS in Moscow, Russia. Focus ist on high privacy protection so they accept several Cryptocurrencies like Bitcoin, Ethereum and others for anonymous payments.&lt;br /&gt;
* [http://www.ihc.ru/vps.html IHC.RU] - VPS hosting in Moscow, Russia starting at $10/month with good set of precreated templates&lt;br /&gt;
* [http://mchost.ru/services/linux-vps/ McHost.ru] - Linux VDS Hosting from McHost.&lt;br /&gt;
* [http://hosting.agava.ru/vps/ AGAVA] - Linux VPS hosting based on OpenVZ.&lt;br /&gt;
* [http://vdsplanet.ru/ VDSPlanet.ru] - unmanaged VDS/VPS hosting starting at 3.99$ a month. Large variety of OS templates and free ISPmanager Lite control panel. Total automation is our goal.&lt;br /&gt;
* [http://www.demos.ru/service/datacenter/vps.html Demos-Internet] - we offer OpenVZ Virtual Private Server based on Linux.  All VPS come with ISPmanager control panel.&lt;br /&gt;
* [http://www.net.ru/service/net9/ www.net.ru] - OpenVZ virtual private servers.&lt;br /&gt;
* [http://www.eurobyte.ru/ Eurobyte.ru] - Linux VDS Hosting from Eurobyte.&lt;br /&gt;
* [https://undergroundprivate.com/russiaoffshorevps.html  UndergroundPrivate.com] - OpenVZ with highly privacy, offshore , DMCA ignored , high confidence, SolusVM and cPanel, managed and non managed service.&lt;br /&gt;
* [http://www.telekom.ru/service/vps.html Elvis Telekom] - OpenVZ hosting with base and cpanel templates from Elvis Telekom.&lt;br /&gt;
* [http://fastvps.ru/vds/ FastVPS] - OpenVZ hosting, ISPmanager, Hetzner, MayFlower.&lt;br /&gt;
* [https://lepus.su/vps.html Lepus] - OpenVZ hosting, SSD, ISPmanager free, Hetzner.&lt;br /&gt;
* [http://www.hts.ru/vds/ HTS] - OpenVZ hosting, ISPmanager, Linux VPS hosting based on OpenVZ in Moscow.&lt;br /&gt;
* [https://selectel.ru/services/vds/ Selectel] - OpenVZ hosting.&lt;br /&gt;
* [https://galaxydata.ru/root-server/ GalaxyData] - Virtuozzo Containers in Cloud Storage.&lt;br /&gt;
* [http://hosterbox.ru/servers/ Hosterbox.ru] - Managed VPS hosting. Based on OpenVZ + SolusVM + ISPmanager.&lt;br /&gt;
* [https://firstvds.ru FirstVDS.ru] - One of the leading hosting companies providing virtual private servers.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Singapore ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://conceptlane.com/?t=hostingservices#ratesvps ConceptLane Pte Ltd] - OpenVZ VPS on dual octa-core AMD Opterons running Debian Wheezy 7, custom control panel with bandwidth graphs, reboot/reinit and web-based VNC access.&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [http://www.qoxy.com/vps QOXY.com] Affordable and Reliable OpenVZ VPS Hosting in a Singapore Data Center.&lt;br /&gt;
* [http://www.secureax.com/ SecureAX Pte Ltd] - Singapore Premium Internet Solution Provider&lt;br /&gt;
* [http://www.planettel.com.sg PlaNetTel] - Affordable and customised OpenVZ containers across 3 data centers - contact Thomas Festus at +65-66936881. [http://pve.proxmox.com/wiki/User:Apmuthu#Squeeze_based_Templates Sponsors OpenVZ Container Template]s for the Open Source community.&lt;br /&gt;
* [http://www.vpsfast.us/singapore-vps VPSFast] - VPS Provider with good prices in Singapore.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Serbia ==&lt;br /&gt;
* [https://www.skyhosting.rs/en/vps-servers SkyHosting] - Fast Linux OpenVZ VPS SSD Hosting with SolusVM control panel.&lt;br /&gt;
* [https://www.ninet.rs/en/vps-servers NiNet Company] - Linux OpenVZ VPS servers. Well known VPS hosting company from Serbia with their own data center&lt;br /&gt;
* [http://www.suonline.net SuOnline.Net ISP] - Linux OpenVZ VPS servers, Docker enabled !!!&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== South Africa ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.host1plus.com/ Host1Plus] - Local South African servers hosted in Johannesburg. OpenVZ VPS servers starting from $3.00 per month.&lt;br /&gt;
* [http://www.vps.co.za/ VPS.CO.ZA] - South Africa's oldest VPS provider. Local South African servers with SolusVM control panel. OpenVZ, Xen and OnApp Cloud.&lt;br /&gt;
* [http://247hosting.co.za/vpshosting.php 247Hosting] - OpenVZ virtual servers locally in South Africa with SolusVM control panel. cPanel option available!&lt;br /&gt;
* [http://www.SoftDux.co.za/ SoftDux] - OpenVZ virtual servers based America &amp;amp; South Africa. All VPS's come with cPanel or Plesk control panels. XEN VPS's also available.&lt;br /&gt;
* [http://www.clickworks.co.za/ Clickworks] - OpenVZ / Xen VPS servers hosted in RSA. Backed by Solusvm control panel.&lt;br /&gt;
* [http://www.elitehost.co.za/ Elite Host] - OpenVZ virtual servers based in America &amp;amp; South Africa. All VPS's come with cPanel and unlimited bandwidth.&lt;br /&gt;
* [http://www.telasera.com/ Telasera] - OpenVZ VPS servers hosted in South Africa. Supermicro Servers powered by Intel Xeon with 24/7 Support.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Spain ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.actiu.net/pro/ Actiu informatica]&lt;br /&gt;
* [http://www.corpresa.com/servidores-virtuales.html Corpresa Hosting] - Tiene algún proyecto entre manos y un plan de hosting no le hes sufuciente y un servidor dedicado no está dentro de su presupuesto?, una solución de VPS a medida será la que cubrirá todas sus necesidades.&amp;quot;&lt;br /&gt;
* [https://www.datomedia.es Datomedia] - Cloud alta disponibilidad powered by Virtuozzo 6 y Servidores VPS bajo openvz y kvm.&lt;br /&gt;
* [https://www.evidaliahost.com/vps/ EvidaliaHosting] - Servidores VPS totalmente configurados con panel de gestión Plesk 12.5, garantía de devolución de 30 días y posibilidad de discos SSD.&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
* [https://ginernet.com/vps-ssd.php GINERNET] - Servidores VPS alojados en España desde 1.99€/mes.&lt;br /&gt;
* [https://www.hostingplus.com.es Hosting Plus España] provide OpenVZ containers at our own datacenter. Starting from us20/month RAID 10 SSD.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Sweden ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.admax.se/vps/ Admax] - Admax offers enterprise grade virtual servers with great pricing. Custom control panel, API, remote access &amp;amp; more.&lt;br /&gt;
* [https://www.acon.se/vps Acon VPS Server] - VPS Server and Dedicated server provider in Sweden.&lt;br /&gt;
* [https://www.glesys.com/vps.php GleSYS] - VPS Provider with a great control panel and good prices&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides the highest quality SSD VPS in Stockholm, Sweden. Based on completely pure SSD in RAID-10 and delivering extremely high network &amp;amp; hardware performance along with reliability.&lt;br /&gt;
* [https://www.nametyper.com NameTyper] - VPS and Shared hosting provider. Customize your own OpenVZ Container with 1-12 cores running on SSD and ECC RAM. &lt;br /&gt;
* [https://virtualcenter.se VirtualCenter] - The first Cloud provider with SSD VPS in Sweden. Offer enterprise class hardware and network infrastructure&lt;br /&gt;
* [http://www.vpsfast.us/sweden-vps VPSFast] - VPS Provider with good prices in Sweden.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Switzerland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
* [http://www.vpsfast.us/switzerland-vps VPSFast] - VPS Provider with good prices in Switzerland.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Tanzania==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.aptus.co.tz/ Aptus Solutions] - OpenVZ / SolusVM VPS Servers located in Dar es Salaam - 100meg to TIX. CentOS &amp;amp; Ubuntu.&lt;br /&gt;
&lt;br /&gt;
== UK ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.34sp.com/ 34SP.com] - We're a UK based web hosting company, bridging the gap between sophisticated hosting solutions &amp;amp; affordable prices&lt;br /&gt;
* [http://www.AceShells.com/ AceShells] - Fast, stable, high quality UK based virtual private servers from just £5 a month, operating since 2001&lt;br /&gt;
* [http://www.AtlanticServers.com/ Atlantic Servers] - Affordable VPS, stable, high quality VPS, UK based Data Centre&lt;br /&gt;
* [https://awebhosting.uk/ AWebHosting.uk] VPS hosting offered by [https://awebsolutions.uk/ AWEBSOLUTIONS LIMITED] reliable UK hosting provider located in London, UK and Hosted in UK DataCentre.* [http://www.BargainVPS.co.uk/ BargainVPS] - UK / US / EU Instant setup VPS - We have some great Linux &amp;amp; Windows Bargain VPS packages on offer for you here all available Fully Managed.&lt;br /&gt;
* [http://www.cheapvps.co.uk/ CheapVPS] - CheapVPS provide cheap, UK based OpenVZ VPS servers. Hosted on high end hardware, in a top UK datacenter backed up with 24/7/365 support. Choice from a wide range of Linux distros. OpenVZ VPS managed with SolusVM.&lt;br /&gt;
* [http://www.chilliserver.com/ Chilliserver] - Affordable plans starting from just £3.99, not oversold. RHEL6 Kernel with VSwap, TUN/TAP/FUSE and ACL support enabled. SolusVM control panel with custom snapshot system and rescue system. Based in a European data Centre with UK based support.&lt;br /&gt;
* [http://www.chvps.com/ CHVPS] - Switzerland Based VPS, Cheap Pricing with solusVM control panel.&lt;br /&gt;
* [http://www.cislondon.co.uk/virtual-private-servers/ Commercial Internet Solutions] - CIS provides premium hosting at competitive rates, focused on Small Businesses within the M25 orbital. Hosting is on Dual Quad core Intel Xeon supermicro servers in Tier 4 datacenters around London.&lt;br /&gt;
* [http://www.datacorporate.co.uk/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [http://domvps.com/ domVPS] - OpenVZ Virtual Servers in the USA, Germany, France &amp;amp; the Netherlands at a low cost.&lt;br /&gt;
* [http://www.DubHosting.co.uk/ DubHosting] - DubHosting started in 2004 has been providing cost effective hosting to clients world wide. Fully managed OpenVZ servers based in Europe &amp;amp; US are one of their many strong points. They can provide you with a dedicated server and install openvz allowing you to sell your own vps servers. Their servers are located at UKGrid in Manchester with 24/7/365 support&lt;br /&gt;
* [http://www.europhase.net/virtual-private-servers/ Europhase UK Limited, UK VPS] - OpenVZ VPS Hosting, Virtual Dedicated Servers, UK VPS hosted at multiple UK datacentres from £4.99&lt;br /&gt;
* [https://farbyte.uk/vps Farbyte VPS] - UK based OpenVZ VPS and shared web hosting services&lt;br /&gt;
* [http://www.fdqwholesale.co.uk FDQ Wholesale] - UK based hosting services&lt;br /&gt;
* [http://www.gemvps.net/ GemVPS.NET] - UK (Manchester) Based Company, OpenVZ Virtual Servers in the UK &amp;amp; France on Fast nodes.&lt;br /&gt;
* [http://www.hadrill.org.uk Hadrill Online] - Fully managed hosting with unlimited bandwidth. Quotes available through contact form.&lt;br /&gt;
* [http://www.infrenion.com./uk_vps_hosting.html Infrenion Networks UK] Cheap, economical and reliable web hosting solutions, VPS based on the openVZ platform. You can host any YouTube Clone scripts with free FFMPEG setup on our vps servers. Also offers with a choice of selecting DataCenter.&lt;br /&gt;
* [https://www.laws-hosting.co.uk/vps-hosting.php Laws Web Hosting] - Laws Web Hosting offers OpenVZ VPS Hosting with packages starting from £5.50/m that will cater for anyone. We have OpenVZ VPS hosting solutions, and come with moderate DDoS protection.&lt;br /&gt;
* [http://www.letstalkdigital.com/index.php?option=com_content&amp;amp;view=article&amp;amp;id=73&amp;amp;Itemid=65 LetsTalkDigital VPS Hosting] - LetsTalkDigital.com offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from $14.99. Virtual Private Server(VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://www.meteorvps.com/ MeteorVPS] - Professional, Non-Oversold amazing VPS plans pretty cheap using SolusVM management, range from 512MB -&amp;gt; 16GB&lt;br /&gt;
* [http://www.minivps.co.uk miniVPS] miniVPS offers VPS hosting solutions with nodes located in UK, utilising openvz/solusvm with future locations of USA and UK. &lt;br /&gt;
* [https://www.first2host.co.uk First2Host Cheap VPS] - Intel Xeon E5-2630v3 OpenVZ VPS Servers. Don't be defined by a pre-made VPS plan. Create your own VPS Plan by assigning the resources that you require. SATA, SSD or NVMe storage 100 MBPS, 250 MBPS, 500 MBPS, 1GBPS speeds and free cPanel licenses.&lt;br /&gt;
* [http://www.phurix.co.uk/ Phurix] - A UK based web solutions company that provides you with reliable hosting at extremely affordable prices, VPS server virtualization using OpenVZ.&lt;br /&gt;
* [http://www.qualityservers.co.uk Quality Servers] - Affordable OpenVZ virtual servers based in the UK and USA. Choice of control panels and management options.&lt;br /&gt;
* [http://www.rackburst.net/ Rackburst] - UK SSD VPS Hosting with fast UK-based Live Support available from £1.49 per month.&lt;br /&gt;
* [http://www.rshosting.co.uk/vps.html RSHosting UK] - Offering the most secure, reliable, stable and fast UK VPS Web Hosting based on OpenVZ architecture. Our Virtual Dedicated Servers are physically hosted on powerfull Quad Core servers located in multiple UK datacentres.&lt;br /&gt;
* [http://www.sharkserve.rs SharkServers] - Low Cost OpenVZ virtual servers in the UK. Choice of control panels and management options. Own Datacentre.&lt;br /&gt;
* [https://www.ukhost4u.com/ UKHost4u] - A leading provider of VPS solutions for over 19 years!&lt;br /&gt;
* [http://www.vpsfast.us/united-kingdom-vps VPSFast] - VPS Provider with good prices in UK.&lt;br /&gt;
* [http://www.vpsmachine.co.uk/ vpsMachine] Quality openvz hosting platform with a large choice of customer OS templates.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [https://www.webhostuk.co.uk/vps-hosting.html WebHostUK LTD] - Offers Cheap yet Best UK VPS Web Hosting working on OpenVZ Platform.We offers fully Managed UK VPS with true 24/7/365 days support.All our Servers are located in UK London DC.&lt;br /&gt;
* [http://www.webhostinguk.com/vps/vps-hosting.html Web Hosting UK] - Fully managed OpenVZ VPS Hosting offered on fast and reliable and affordable servers in UK &amp;amp; European datacenter with 24x7x365 days lightning fast support.&lt;br /&gt;
* [http://www.weycrest.co.uk/vps-hosting.php Weycrest VPS] - Low Cost, Stable OpenVZ and Parallels' Virtuozzo Virtual Private Server solutions. London UK Hosted at Coreix with a choice of operating systems, and root and control panel options.&lt;br /&gt;
* [http://www.xilo.net/virtual_private_servers-vps/ XILO] - UK-based hosting with UK-based support. VPS services offered with a choice of cPanel, Webmin and other useful applications, VoIP, SIP, VPN to name a few.&lt;br /&gt;
* [http://www.zxvps.co.uk/ ZxVPS VPS Hosting] - Quality, non-oversold VPS based on the openVZ platform, using SolusVM management panel, VPS from 128mb - 2gb, cpanel, direct admin, kloxo, etc.&lt;br /&gt;
&lt;br /&gt;
== Ukraine ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://ekvia.com/ Ekvia] - VDS/VPS based on OpenVZ. Free trial 14 days. Domain registration for VDS/VPS.&lt;br /&gt;
* [http://www.gelihost.com/ Geliar Hosting Solutions] - Fast virtual dedicated servers based on OpenVZ. Geliar Hosting Solutions offering many control panels and other useful services.&lt;br /&gt;
* [http://www.hostpro.ua/ Hostpro.ua] - Full managed OpenVZ servers.&lt;br /&gt;
* [http://www.vpsfast.us/ukraine-vps VPSFast] - VPS Provider with good prices in Ukraine.&lt;br /&gt;
&lt;br /&gt;
== USA ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.a2hosting.com A2 Hosting] is your high-performance [http://a2hosting.com/openvz-vps-hosting OpenVZ VPS Hosting] provider. Design your perfect [http://a2hosting.com/vps-hosting VPS Hosting] account today! Featuring SwiftServers and SSDs with page load speeds up to 300% faster compared to standard drives.&lt;br /&gt;
* [http://www.afterburst.com Afterburst] (Previously FanaticalVPS): affordable unmetered, unmanaged VPS servers in NY.&lt;br /&gt;
* [https://www.asurahosting.com/ AsuraHosting] offers powerful, reliable, and simple OpenVZ VPS to clients. AsuraHosting has a dedicated support team, and quality hosting; Pricing starts at just $5/month!&lt;br /&gt;
* [http://beyondhosting.net BeyondHosting.net] High Performance OpenVZ Virtual Private Servers (VPS)  Tier 1 US Datacenter.&lt;br /&gt;
* [http://buyvm.net BuyVM.net] DDoS Protection, three datacenter locations, Stallion control panel. Affordable quality VPS hosting since 2010!&lt;br /&gt;
* [https://www.binarycpu.com Binary Computer Solutions] has provided OpenVZ based Virtual Private Server hosting for over 5 years.  Network outages are a thing of the past, and oversold services are never heard of here.  Built on solid technology, with infrastructure to match - Binary Computer Solutions will give you hosting you need, without the cost others ask for.  Starting at $30.00/mo.&lt;br /&gt;
* [http://www.bodhost.com/ Bodhost.com] Fast, Reliable and secure web hosting service with 24*7 free customer service.&lt;br /&gt;
* [http://www.buildyourvps.com/ BuildYourVPS.com] mix ‘n’ match your VPS; choose only the bandwidth, RAM, disk capacity, type of IP connection, level server redundancy, and the support/monitoring you want. [http://www.buildyourvps.com/ BuildYourVPS] is the 1st to offer you a highly-customized VPS solution, without making you pay for unused extra features.&lt;br /&gt;
* [https://www.budgetvm.com/openvz-linux-vps.php BudgetVM.com] Each server includes our industry-leading SLA, DDoS protection, 200Gbps networks and 7 * 24-hour customer support.&lt;br /&gt;
* [http://www.byethost.com Byethost.com] offers OpenVZ based VPS Hosting as its main VPS solution, with the hypervm panel. Centos, Debian, Fedora, OpenSuse and Ubuntu Containers are available.&lt;br /&gt;
* [http://cheaperasp.net CheaperASP.Net] provides Quality web hosting on the OpenVZ platform. You also help you get best options at [http://cheaperasp.net/godaddy-1-hosting-free-domain-promo/ affordable] cost.&lt;br /&gt;
* [http://www.chhost.net/vps.htm CH Hosting VPS Hosting] CH Hosting or chhost.net offers OpenVZ based VPS Hosting. 24/7 Support. Upgrade/Downgrade your plan as needed on-the-fly without the risk of downtime. Since 2006. Non-Oversell&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in USA from 1.88EUR/month.&lt;br /&gt;
* [http://www.cloudshards.com Cloud Shards] High Performance, reliable, stable and affordable OpenVZ Virtual Private Servers (VPS) in data centers across the USA.&lt;br /&gt;
* [https://cloudgearhosting.com CloudGear Hosting] - offers OpenVZ hosting in 4 locations across the USA. Including free DDoS Protection and free SSL with cPanel.&lt;br /&gt;
* [http://www.datacorporate.com/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [https://www.delimiter.com/storage-vps/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [https://www.cheapdomainnamesdot.com Domain Host SSL] provides Reliable web hosting with OpenVZ platform Since 2003, Located New York city, Atlanta, Los Angeles. &lt;br /&gt;
* [http://www.DubHosting.com/ DubHosting] - DubHosting started in 2004 has been providing cost effective hosting to clients world wide. Fully managed OpenVZ servers based in Europe &amp;amp; US are one of their many strong points. They can provide you with a dedicated server and install openvz allowing you to sell your own vps servers.&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
* [http://www.ethernetservers.com/ Ethernet Servers] A leading provider of OpenVZ Virtual Servers in Los Angeles, Miami and Buffalo with SolusVM.&lt;br /&gt;
* [http://www.evolucix.com/ Evolucix.com] Evolucix offers state of the art, professional, and reliable OpenVZ VPS solutions on top-notch hardware while providing quality support.&lt;br /&gt;
* [http://www.evolvedservers.com Evolvedservers.com] Openvz based vps servers. Hosted in Michigan, USA. 24/7 Support. Hosted in tier-3 and tier-4 datacenter's with multiple redundancies.&lt;br /&gt;
* [http://fastwebhost.com/vps-hosting.html Fastwebhost]: affordable cloud VPS servers using OpenVZ. &lt;br /&gt;
* [http://www.fliphost.net Fliphost.net]: Powerful, affordable instant setup VPS systems. Servers based in Phoenix Az with another location coming soon.&lt;br /&gt;
* [http://www.frontrangehosting.com Front Range Hosting]: SSD Cached KVM &amp;amp; OpenVZ VPS Hosting Prices Start at 2.00/mo, located in Colorado Springs, Colorado.&lt;br /&gt;
* [http://glesys.se GleSYS] is a hosting company specialized in serverhosting. Also offering VPS hosting mainly based on OpenVZ. GleSYS has provided access to server and Cisco hardware for developers from OpenVZ to find problem with VLAN implementation.&lt;br /&gt;
* [http://goodealhosting.com/ GOODEALHOSTING.com] Quality Hosting Solutions! Provides affordable unmanaged/managed VPS based on OpenVZ! start from $10.00, real 24/7 support.&lt;br /&gt;
* [http://gothost.net GotHost.net] Providing OpenVZ based VPS Hosting with SolusVM. All nodes are Quad Core Xeon with RAID-10 for speed and redundancy. Budget plans starting at $7.99.&lt;br /&gt;
* [http://www.greengeeks.com/ GreenGeeks Hosting] VPS Hosting. Dual Intel Xeon 64-Bit CPU's, DDR3 RAM, RAID-10 SSD Storage Arrays. 24/7 Support. cPanel/WHM + more!&lt;br /&gt;
* [http://hostarmor.com HostArmor™] - is best known for low-cost and reliable shared hosting and dedicated servers. Recently the company expanded to offer OpenVZ virtual server plans at 8 worldwide locations, five in the U.S., one in Germany, one in France, and one in the Netherlands. VPS plans start at $13.99/month.&lt;br /&gt;
* [http://www.host4geeks.com Host4Geeks] - Host4Geeks is a premium Fully Managed VPS provider with datacenters across 2 locations in US and in UK. All servers offer a free cPanel license.&lt;br /&gt;
* [http://www.host1plus.com Host1Plus] - OpenVZ based virtual servers in Chicago and Los Angeles. VPS plans start at $2.00 per month.&lt;br /&gt;
* [http://www.hostavps.com HostAVPS] - Providing Fully Managed VPS's on both the West &amp;amp; East Coast.&lt;br /&gt;
* [https://www.hostcapitol.com Host Capitol] offers fast and reliable web hosting services, including OpenVZ VPS Hosting, to clients ranging from small businesses to corporations. Located in Piscataway, New Jersey.&lt;br /&gt;
* [http://www.hostcolor.com Host Color] - OpenVZ based virtual servers hosted in a Tier 4 class data center based out of South Bend, Indiana. Juniper managed, fully-redundant network with uplinks to Level 3, Cogent and Internap.&lt;br /&gt;
* [https://www.hostgalaxy.com HostGalaxy] - OpenVZ based virtual servers. The fastest hosting in the Galaxy!&lt;br /&gt;
* [http://www.hostigation.com Hostigation] - High resource unmanage VPS hosting solutions.&lt;br /&gt;
* [http://www.hostingrails.com Hosting Rails] offers Rails-targeted OpenVZ VPS Hosting and updated Rails-ready OS images.&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [http://www.hostmist.com Host Mist] features budget OpenVZ VPS hosting from four major cities across the US.&lt;br /&gt;
* [http://www.hostrush.com HostRush] Self managed, ssd vps for business and non business. &lt;br /&gt;
* [http://www.dailyhosting.net hostoople] We offer OpenVZ VPS hosting from Dallas Texas, Starting at $29.95/month &lt;br /&gt;
* [https://hostus.us HostUS] provides unmanaged and managed OpenVZ VPS in Atlanta, Dallas and Los Angeles with custom control panel. A large variety of Linux distros are available. Enjoy 15% off with coupon VPS15OFF.&lt;br /&gt;
* [https://www.hostwinds.com Hostwinds] Affordable managed/unmanaged VPS Solutions.&lt;br /&gt;
* [http://hostsia.com Hostsia] With HOSTSIA Web services, you can get an OpenVZ VPS for only $15.00/mo. Each OpenVZ VPS includes multiple free-of-charge bonuses and offers a 99.9% uptime guarantee. You can also use our charge-free Hepsia CP, which is available with each OS – it permits you to host an unmetered number of domains and comprises heaps of handy tools, which will help you better manage your site and your VPS web hosting account.&lt;br /&gt;
* [http://www.infrenion.com./vps_hosting.html Infrenion Networks] Cheap, reliable and secure VPS hosting solutions, based on the openVZ platform. You can host any YouTube Clone scripts with enhanced support quality round the clock.&lt;br /&gt;
* [http://iniz.com/ INIZ VPS Hosting] INIZ provides affordable VPS Hosting in Los Angeles &amp;amp; New York with high resources at low prices.&lt;br /&gt;
* [https://www.interserver.net/ InterServer Web Hosting] Fast &amp;amp; Reliable VPS - 24x7 Support. 99.9% Up-time, Hosting Since 1999!.&lt;br /&gt;
* [http://www.joinvps.com JoinVPS.com] ISPmanager OpenVZ based VPS hosting. 24/7 Technical Support. Free ISPmanager control panel.&lt;br /&gt;
* [http://www.lovevps.com LoveVPS] Budget VPS provider starting at $5.99/month located in the US with Xeon nodes.&lt;br /&gt;
* [http://www.letstalkdigital.com/index.php?option=com_content&amp;amp;view=article&amp;amp;id=73&amp;amp;Itemid=65 LetsTalkDigital VPS Hosting] LetsTalkDigital.com offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from $14.99 Virtual Private Server(VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://lylix.net LYLIX] offers affordable VPS hosting with a choice of eight different Linux distributions, dedicated VPS hosting, and specializes in Asterisk/VOIP based hosting including Trixbox, AsteriskNow, Elastix, and PBX-in-a-Flash.  Popular choice for unmanaged IP-PBX services; entire infrastructure built on a High-availability (HA) network across three regional NOCs.&lt;br /&gt;
* [http://www.micfo.com Micfo.com] offers VPS hosting services for both Linux VPS hosting and Window VPS hosting on affordable price combined with world-class 24x7x365 support.&lt;br /&gt;
* [http://www.neostreams.info/neoshop/cart.php?gid=9 nEo Stream Services] Offer's Top Quality OpenVZ Servers, Starting at $18.95 per month! SolusVM Control panel , 7 day Money Back Guarantee , 24x7 Professional Support.&lt;br /&gt;
* [http://pogiweb.com/vps/ PogiWeb LLC] Instant and free setup. Includes SolusVM control panel and free level 1 support during first month.&lt;br /&gt;
* [http://www.theserverexperts.com TheServerExperts.com] TheServerExperts VPS line is the ideal solution for clients who require the control of a dedicated server matched with the affordability and simplicity of a traditional shared hosting account.&lt;br /&gt;
* [http://thenynoc.com New York NOC] affordable Linux VPS hosting out of New York and Chicago. Plans as low as $5 a month and are backed by a redundant infrastructure and 24/7 support.&lt;br /&gt;
* [http://railsplayground.com RailsPlayground.com] Ruby on Rails VPS with ready to go Rails images with the LxAdmin control panel&lt;br /&gt;
* [http://www.raidlogic.net RaidLogic.NET] RaidLogic.NET offers OpenVZ based Linux VPS out of multiple facilities across the United States, including Miami, Los Angeles, and Chicago. Starting as low as $3.95/month.&lt;br /&gt;
* [http://www.ramhost.us RAM Host] RAM Host offers OpenVZ based Linux VPS out of multiple facilities across the United States, including Atlanta, Kansas City, and Phoenix.&lt;br /&gt;
* [http://www.reconhosting.com Recon Hosting] Recon Hosting offers affordable OpenVZ VPS solutions where you get Quality Hosting at a Fraction of the price. Instant setup with the latest Operating System templates including cPanel.&lt;br /&gt;
* [http://www.rokabear.com Rokabear] Rokabear offers OpenVZ Linux VPS, Dedicated Server, and Colocation. All Hardware setup in High Availability mode including raided drives and redudnant power and network connections. With multiple upstream providers, Rokabear's connectivity is fast and reliable! Rokabear supports LAMP, Openvpn, and Asterisk configurations. VPSes start at $7.99!&lt;br /&gt;
* [https://www.rosehosting.com RoseHosting] offers OpenVZ Linux virtual servers equipped with Enterprise Grade SSD drives. All hosting plans are fully-managed with FREE 24/7 support, FREE website migration, FREE weekly backups and FREE server monitoring included.&lt;br /&gt;
* [http://www.rshosting.com/vps.html RSHosting.com] RSHosting offers the most secure, reliable and stable VPS - Virtual Private Servers based on OpenVZ architecture, powered by the most professional and qualified 24/7 lightening fast support.&lt;br /&gt;
* [http://www.servercomplete.com Server Complete, LLC] Server Complete offers OpenVZ based Linux VPS out of multiple facilities across the United States, including Atlanta, Dallas, and Chicago.&lt;br /&gt;
* [http://www.servergrove.com ServerGrove] uses OpenVZ as the main virtualization platform for its state of the art VPS hosting services.&lt;br /&gt;
* [http://serverswarm.com ServerSwarm] provides stable, affordable, high performance OpenVZ virtual private servers.&lt;br /&gt;
* [http://Sharktech.net Sharktech] provides custom OpenVZ solutions DDOS-protected up to 100Gbps.&lt;br /&gt;
* [http://www.silverrack.com/ SilverRack VPS Hosting] - SilverRack provides affordable VPS hosting using the OpenVZ platform.&lt;br /&gt;
* [http://www.soficol.com/ Soficol] Offers Enterprise OpenVZ based VPS, hosted on a clustered infrastructure and redundant network. Easy to use user management and instant setup.&lt;br /&gt;
* [http://www.spectrohost.com/ Spectro Host] - Offers performance VPS Servers running openvz. Always the most resources and never over committing OpenVZ nodes.&lt;br /&gt;
* [http://www.budgetvds.com/ BudgetVDS] - Offers VPS Servers running openvz we've been in business for 2 years now using openvz platform.&lt;br /&gt;
* [http://www.syera.net/ Syera Networks] Unmetered VPS From $18.88/M, 24/7 Support, OpenVZ/HyperVM, Instant Setup!, Free 1Gbps Upgrade with Coupon: syera1G&lt;br /&gt;
* [http://www.synapseglobal.com/voip_vps.html SynapseGlobal.com] Elastix, Trixbox, PBX in a Flash and Asterisk VPS - OpenVZ based Asterisk VOIP servers with 14 Tier 1 premium bandwidth providers.&lt;br /&gt;
* [http://www.tektonic.net TekTonic] provides VPS hosting services using both Virtuozzo and OpenVZ technology.&lt;br /&gt;
* [http://www.tigerservers.com/ TigerServers] - Provides affordable managed VPS based on OpenVZ. Servers located in Chicago, Illinois&lt;br /&gt;
* [http://www.tocici.com/ TOCICI VPS Hosting Services] Since 1995 TOCICI has offered web hosting services, with 24/7 support commitments and a strong non-oversell policy. Our purpose-built hosting infrastructure has serviced many organizations for over a decade. Offering OpenVZ VPS, data center colocation, and equipment leasing options, visit our website for prices and more details.&lt;br /&gt;
* [http://www.ultravps.com UltraVPS] UltraVPS offers managed and unmanaged OpenVZ-based VPS hosting utilizing dual CPU hardware nodes with redundant, high-performance RAID-10 storage.  UltraVPS offers VPS servers with many popular control panel options and turn-key applications.&lt;br /&gt;
* [http://www.vpsfx.com VPSFX] VPSFX.com offers OpenVZ VPS, data center colocation, and dedicated servers.&lt;br /&gt;
* [http://www.Webhost.US.Com/linuxvps.html US Web Hosting]  Webhost.US.Com offers powerful GUI based VPS management system with full OpenVZ, Xen Paravirtualization and Xen HVM support.All our Virtual Private servers are fully Managed with 99.9% uptime and 24/7 top notch support.&lt;br /&gt;
* [http://unixservice.com Unixservice/unxsVZ] Low cost OpenVZ ONLY hosting we specialize in Mail, DNS and RADIUS multiple container hosting. At the world famous Market St. San Jose, CA Silicon Valley datacenter. Ping times from your containers to local yahoo and google sites guaranteed single digit ms times. Your containers are backed up at 4 local and 2 remote locations. Contact supportgrp at unixservice dot com.&lt;br /&gt;
* [http://www.vogenic.xyz Vogenic: Cloud Services] If you are searching for an upgrade to the shared hosting service, then you should consider our OpenVZ or KVM VPS hosting services.&lt;br /&gt;
* [http://vpslink.com VPSLink.com] provides virtual private server hosting on the OpenVZ platform.&lt;br /&gt;
* [http://www.vpsspeed.com/ VPSSpeed] - VPSSpeed provides unmanaged OpenVZ based VPS hosting with over 50 OS Templates, real 24/7/365 support and fast US servers. No overselling.&lt;br /&gt;
* [http://vpsnoc.com VPSNOC] offers unmanaged vps hosting based in the USA utilizing OpenVZ hypervisor behind an in-house VPS control panel.&lt;br /&gt;
* [https://www.waveride.at/ Waveride] Waveride, an EDIS company, offers budget full gigabit OpenVZ + solusVM VPS in Austria, USA and the Netherlands&lt;br /&gt;
* [http://www.webappcabaret.com WebAppCabaret] provides VPS solutions for hosting applications. We offer OpenVZ with cPanel or Plesk for web site management; and NGASI Universal App Manager for deploying and managing JAVA and RAILS applications.&lt;br /&gt;
* [http://www.wirenine.com/vps-hosting/ WireNine.com VPS Hosting] Low cost fully managed and unmanaged OpenVZ based VPS Hosting with SAS 15k enterprise drives in high-performance RAID-10 storage.&lt;br /&gt;
* [http://www.zoidial.com/ Zoidial Hosting and VPS] - offers VPS and Virtual Dedicated Server solutions utilizing OpenVZ.  In business since 1998, Zoidial Incorporated is a small hosting provider focused on being security conscious, proactive, and offering a positive client experience.&lt;br /&gt;
* [http://zensix.com ZenSix Hosting] Cheap OpenVZ based VPS accounts with the SolusVM control panel.&lt;br /&gt;
* [http://zigothosting.com Zigot Hosting] Affordable and Reliable OpenVZ based VPS's within the SolusVM control panel.&lt;br /&gt;
* [http://www.vpsfast.us/usa-vps VPSFast] - VPS Provider with good prices in USA (Los Angeles, New Jersey, New York, Seattle, Washington, Dallas, Chicago, Atlanta, Ashburn, Miami, Piscataway).&lt;br /&gt;
* [http://www.xarixlite.com Xarix Lite] - offers OpenVZ hosting in Charlotte, SC. OpenVZ plans starting at $2.50/mo&lt;br /&gt;
* [https://www.yourlasthost.com YourLastHost] is your high-performance [https://www.yourlasthost.com/openvz-vps.php OpenVZ VPS Hosting] Provider. Get your perfect [https://www.yourlasthost.com/openvz-vps.php VPS Hosting] account today! Available in Los Angeles, Dallas, Jacksonville, USA and France, Europe.&lt;br /&gt;
&lt;br /&gt;
== Vietnam ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://appvz.com AppVZ.com] (www.appvz.com) is a leading web solution provider offering domain, hosting, reseller and VPS hosting packages from 2009. Just recently, the company has offered discount packages where customers can avail managed and un-managed VPS for only $9.5 per month.&lt;br /&gt;
&lt;br /&gt;
= Hosting providers comparison =&lt;br /&gt;
&lt;br /&gt;
It is hard to compare all virtual private server offers provided by different hosting providers.&lt;br /&gt;
Sites below can help you with it.&lt;br /&gt;
&lt;br /&gt;
* [https://www.cheapvpsservers.co.uk/ Cheap VPS Servers]&lt;br /&gt;
* [https://www.hostingmyths.com/ Hosting Myths]&lt;br /&gt;
* [https://cheapwebhosting.review/ VPS servers comparison]&lt;br /&gt;
* [https://reviewsquirrel.com/web-hosting-reviews/ Review Squirrel]&lt;br /&gt;
* [http://lowendstock.com/ Lowendstock]&lt;br /&gt;
* [https://www.websitehostingrating.com/ Best Web Hosting Services]&lt;br /&gt;
* [http://serverbear.com/compare?Sort=RAM&amp;amp;Order=asc&amp;amp;Server+Type=VPS&amp;amp;Monthly+Cost=-&amp;amp;HDD=-&amp;amp;RAM=-&amp;amp;Virtualization=OpenVZ Serverbear]&lt;br /&gt;
* [https://www.comparethehosts.com/vps-web-hosting.htm VPS Web Hosting Reviews]&lt;br /&gt;
* [https://thishosting.rocks/best-cheap-managed-vps/ ThisHosting.Rocks - Managed VPS Providers Comparison]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
http://vpscomp.com&lt;br /&gt;
http://reviewsignal.com/webhosting/compare/&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= See also =&lt;br /&gt;
&lt;br /&gt;
* [[Partners]]&lt;br /&gt;
* [[Download mirrors]]&lt;br /&gt;
* [[VPS vs Dedicated]]&lt;/div&gt;</summary>
		<author><name>Vvs</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.openvz.org/index.php?title=News/updates&amp;diff=23320</id>
		<title>News/updates</title>
		<link rel="alternate" type="text/html" href="https://wiki.openvz.org/index.php?title=News/updates&amp;diff=23320"/>
		<updated>2020-06-09T10:19:47Z</updated>

		<summary type="html">&lt;p&gt;Vvs: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- Everyone who edits this page should read the following three times.&lt;br /&gt;
&lt;br /&gt;
* This page is displayed as is, and also exported via RSS/Atom feed.&lt;br /&gt;
* Therefore, it should be edited with extreme care.&lt;br /&gt;
* Every record consists of the following 4 elements:&lt;br /&gt;
&lt;br /&gt;
  == Header ==&lt;br /&gt;
&lt;br /&gt;
  Semi-detailed textual change log.&lt;br /&gt;
&lt;br /&gt;
  {{Download link|path/to/package}}&lt;br /&gt;
&lt;br /&gt;
  --~~~~&lt;br /&gt;
&lt;br /&gt;
* Changelog should be PLAIN TEXT, i.e.&lt;br /&gt;
* NO LINKS in changelog&lt;br /&gt;
* NO BULLETS in changelog&lt;br /&gt;
* NO FORMATTING (wiki or html) in changelog&lt;br /&gt;
* Do not forget to SIGN your entries&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;startFeed /&amp;gt;&lt;br /&gt;
&amp;lt;!-- *DO NOT REMOVE THIS LINE* new news should go here --&amp;gt;&lt;br /&gt;
== Kernel RHEL6 042stab144.1 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to RHEL6 kernel 2.6.32-754.29.2.el6, security and stability fixes&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab144.1}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 10:19, 9 June 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab142.1 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to RHEL6 kernel 2.6.32-754.27.1.el6, bugfixes&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab142.1}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 07:41, 3 February 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab141.3 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to RHEL6 kernel 2.6.32-754.24.3.el6, security and stability fixes&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab141.3}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 17:28, 21 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab140.4 ==&lt;br /&gt;
&lt;br /&gt;
Fixed fail of firewalld in centos7.7 containers and other bugfixes.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab140.4}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 12:36, 15 October 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab140.1 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to RHEL6 kernel 2.6.32-754.18.2.el6, security and stability fixes.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab140.1}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 06:45, 20 August 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab139.1 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to RHEL6 kernel 2.6.32-754.15.3.el6, TCP SACK security fixes.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab139.1}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 12:56, 20 June 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab138.1 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to RHEL6 kernel 2.6.32-754.14.2.el6, MDS security fixes.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab138.1}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 15:41, 16 May 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab137.1 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to RHEL6 kernel 2.6.32-754.12.1.el6, security and stability fixes.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab137.1}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 09:47, 6 May 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab136.1 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to RHEL6 kernel 2.6.32-754.11.1.el6, bug fixes.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab136.1}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 08:57, 5 March 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab134.8 ==&lt;br /&gt;
&lt;br /&gt;
Fixes CVE-2018-9568, memory corruption due to incorrect socket cloning&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab134.8}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 08:53, 13 December 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab134.7 ==&lt;br /&gt;
&lt;br /&gt;
Fixes for Ubuntu 16.04 inside containers&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab134.7}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 04:47, 29 November 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab134.3 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to RHEL6 kernel 2.6.32-754.6.3.el6, security and bug fixes.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab134.3}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 14:27, 15 October 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab133.2 ==&lt;br /&gt;
&lt;br /&gt;
fixed regression in 042stab133.1 kernel.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab133.2}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 12:29, 30 August 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab133.1 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to RHEL6 kernel 2.6.32-754.3.5.el6, security and bug fixes.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab133.1}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 14:52, 20 August 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab132.1 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to RHEL6.10 kernel 2.6.32-754.2.1.el6, security fixes.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab132.1}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 01:32, 18 July 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab131.1 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to RHEL6.10 kernel 2.6.32-754.el6, security fixes.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab131.1}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 14:47, 25 June 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab130.1 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to RHEL6 kernel 2.6.32-696.30.1.el6, fixed CVE-2018-3639.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab130.1}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 11:51, 23 May 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Vzctl 4.11.1 ==&lt;br /&gt;
&lt;br /&gt;
Bug fixes&lt;br /&gt;
&lt;br /&gt;
{{Download link|vzctl/4.11.1}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 14:46, 18 May 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab129.1 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to RHEL6 kernel 2.6.32-696.28.1.el6, security and bug fixes.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab129.1}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 09:47, 15 May 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab128.2 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to RHEL6 kernel 2.6.32-696.23.1.el6, security and bug fixes.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab128.2}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 15:23, 26 March 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab127.2 ==&lt;br /&gt;
&lt;br /&gt;
Security and bug fixes.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab127.2}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 11:32, 6 January 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab126.2 ==&lt;br /&gt;
&lt;br /&gt;
Security fixes.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab126.2}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 11:15, 18 December 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab126.1 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to RHEL6 kernel 2.6.32-696.16.1.el6, security and bugfixes.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab126.1}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 06:50, 21 November 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab125.5 ==&lt;br /&gt;
&lt;br /&gt;
Security and bug fixes.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab125.5}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 06:58, 24 October 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL5 028stab122.4 ==&lt;br /&gt;
&lt;br /&gt;
Fixed CVE-2017-1000253.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel5/028stab122.4}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 15:09, 29 September 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab125.3 ==&lt;br /&gt;
&lt;br /&gt;
Fixed CVE-2017-1000253.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab125.3}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 15:08, 29 September 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab125.1 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to RHEL6 kernel 2.6.32-696.10.2.el6, security fixes.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab125.1}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 14:02, 26 September 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab124.2 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to RHEL6 kernel 2.6.32-696.10.1.el6, security and bugfixes.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab124.2}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 09:51, 6 September 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== vzstats 0.5.5 ==&lt;br /&gt;
&lt;br /&gt;
fixed upload to vzstats.openvz.org&lt;br /&gt;
&lt;br /&gt;
{{Download link|vzstats/0.5.5}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 14:18, 14 July 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab123.9 ==&lt;br /&gt;
&lt;br /&gt;
Updated fix for Stackguard security issue&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab123.9}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 11:24, 4 July 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL5 028stab122.3 ==&lt;br /&gt;
&lt;br /&gt;
Stackguard security bugfix backported from mainline&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel5/028stab122.3}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 11:06, 4 July 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL5 028stab122.2 ==&lt;br /&gt;
&lt;br /&gt;
Delayfs should not be mounted manually&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel5/028stab122.2}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 13:18, 27 June 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab123.8 ==&lt;br /&gt;
&lt;br /&gt;
Stackguard security bugfix backported from mainline&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab123.8}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 13:16, 27 June 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab123.6 ==&lt;br /&gt;
&lt;br /&gt;
Stability bugfix for nodes with VLAN in bridge &lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab123.6}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 13:15, 27 June 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab123.4 ==&lt;br /&gt;
&lt;br /&gt;
Several security and bug fixes &lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab123.4}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 13:13, 27 June 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab123.3 ==&lt;br /&gt;
&lt;br /&gt;
NFS-related security and bug fixes &lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab123.3}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 14:57, 18 May 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab123.2 ==&lt;br /&gt;
&lt;br /&gt;
Security fix &lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab123.2}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 05:55, 4 May 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab123.1 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to RHEL6.9 kernel, security and bugfixes &lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab123.1}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 07:50, 7 April 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab120.20 ==&lt;br /&gt;
&lt;br /&gt;
Security fix &lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab120.20}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 11:23, 27 March 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL5 028stab122.1 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to 2.6.18-419.el5, fix for DCCP security&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel5/028stab122.1}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 10:40, 21 March 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab120.19 ==&lt;br /&gt;
&lt;br /&gt;
Security and bugfixes &lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab120.19}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 08:47, 7 March 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL5 028stab121.1 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to 2.6.18-417.el5, fix for CVE-2016-7117&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel5/028stab121.1}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 07:47, 6 February 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab120.18 ==&lt;br /&gt;
&lt;br /&gt;
Security (CVE-2015-8539) and bugfixes (ploop, cpt) &lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab120.18}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 06:47, 6 February 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab120.16 ==&lt;br /&gt;
&lt;br /&gt;
Bugfixes (net, cpt) &lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab120.16}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 12:57, 22 December 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Legacy templates update Nov 2016 ==&lt;br /&gt;
&lt;br /&gt;
Added Ubuntu 16.10 (to beta). Moved Fedora 20, 21, 22, Ubuntu 15.04, 15.10 to unsupported (EOL). All existing templates are updated.&lt;br /&gt;
&lt;br /&gt;
{{Download link|template/precreated|Downloads}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Kir|Kir]] ([[User talk:Kir|talk]]) 23:33, 30 November 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab120.11 ==&lt;br /&gt;
&lt;br /&gt;
Security and bugfixes (net, cpt, filesystems) &lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab120.11}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 09:06, 23 November 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 testing 042stab120.7 ==&lt;br /&gt;
&lt;br /&gt;
Fixed crash on restore of unix socket and crash in ixgbe driver&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6-testing/042stab120.7}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 17:56, 2 November 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab120.6 ==&lt;br /&gt;
&lt;br /&gt;
fixed hang after nfs mount with &amp;quot;lock&amp;quot; option, ploop-over-nfs cleanup&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab120.6}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 17:08, 28 October 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL5 028stab120.3 ==&lt;br /&gt;
&lt;br /&gt;
Fixed CVE-2016-5195 mm: privilege escalation via MAP_PRIVATE COW breakage&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel5/028stab120.3}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 15:33, 26 October 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab120.5 ==&lt;br /&gt;
&lt;br /&gt;
updated fix for CVE-2016-5195, fixed host hang on CT resume, fixed crash on load of sb_edac module&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab120.5}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 10:26, 26 October 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 testing 042stab120.4 ==&lt;br /&gt;
&lt;br /&gt;
Fixed crash on boot during loading of sb_edac module (OVZ-6809)&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6-testing/042stab120.4}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 13:12, 24 October 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab120.3 ==&lt;br /&gt;
&lt;br /&gt;
Fixed CVE-2016-5195 mm: privilege escalation via MAP_PRIVATE COW breakage&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab120.3}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 14:12, 22 October 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab120.2 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to RHEL6u8 kernel 2.6.32-642.6.1.el6. Security, bugfixes, enhancements &lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab120.2}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 14:07, 22 October 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab117.16 ==&lt;br /&gt;
&lt;br /&gt;
Mount of nfs with lock option inside several containers can cause node hang.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab117.16}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 11:22, 4 October 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL5 028stab120.2 ==&lt;br /&gt;
&lt;br /&gt;
Fixed a kernel panic triggerable via the move_pages() syscall.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel5/028stab120.2}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vasily Averin|Vvs]] 12:00, 14 September 2016 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab117.14 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to RHEL6u8 kernel 2.6.32-642.el6 (security, bug fixes, enhancements, see RHSA-2016-0855). Fixes and enhancements in KVM, UBC, ext4, networking, cpt.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab117.14}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vasily Averin|Vvs]] 15:00, 13 September 2016 (EDT)&lt;br /&gt;
&lt;br /&gt;
== OpenVZ 7.0 GA ==&lt;br /&gt;
&lt;br /&gt;
OpenVZ 7.0 has been released. The new release focuses on merging OpenVZ and Virtuozzo source codebase, replacing our own hypervisor with KVM.&lt;br /&gt;
&lt;br /&gt;
Key changes in comparison to the last stable OpenVZ release:&lt;br /&gt;
&lt;br /&gt;
* OpenVZ 7.0 becomes a complete Linux distribution based on our own VzLinux.&lt;br /&gt;
* The main difference between the Virtuozzo (commercial) and OpenVZ (free) versions are the EULA, packages with paid features, and Anaconda installer.&lt;br /&gt;
* The user documentation is publicly available.&lt;br /&gt;
* EZ templates can be used instead of tarballs with template caches.&lt;br /&gt;
* Additional features (see announce)&lt;br /&gt;
&lt;br /&gt;
[https://lists.openvz.org/pipermail/announce/2016-July/000664.html Read more...]&lt;br /&gt;
&lt;br /&gt;
--[[User:Sergey Bronnikov|SergeyB]] ([[User talk:Sergey Bronnikov|talk]]) 16:58, 25 July 2016 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 testing 042stab117.5 ==&lt;br /&gt;
&lt;br /&gt;
Fix in cpt.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6-testing/042stab117.5}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Sergey Bronnikov|SergeyB]] ([[User talk:Sergey Bronnikov|talk]]) 05:45, 20 June 2016 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 testing 042stab117.4 ==&lt;br /&gt;
&lt;br /&gt;
Fixes in swap and cpt.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6-testing/042stab117.4}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Sergey Bronnikov|SergeyB]] ([[User talk:Sergey Bronnikov|talk]]) 05:54, 14 June 2016 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 testing 042stab117.3 ==&lt;br /&gt;
&lt;br /&gt;
Ploop, CPT fixes and fixed crash on mount of non-EXT4 filesystems.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6-testing/042stab117.3}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Sergey Bronnikov|SergeyB]] ([[User talk:Sergey Bronnikov|talk]]) 08:32, 3 June 2016 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 testing 042stab117.2 ==&lt;br /&gt;
&lt;br /&gt;
Fixes in CPT, CPU hotplug and numabalanced improvements.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6-testing/042stab117.2}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Sergey Bronnikov|SergeyB]] ([[User talk:Sergey Bronnikov|talk]]) 01:39, 31 May 2016 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 testing 042stab117.1 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to RHEL6u8 kernel 2.6.32-642.el6. Improved ext4 defragmentation. Fixes in CPT.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6-testing/042stab117.1}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Kir|Kir]] ([[User talk:Kir|talk]]) 20:10, 25 May 2016 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab116.1 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to RHEL6 kernel 2.6.32-573.26.1.el6. Security, bug and stability fixes.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab116.1}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Kir|Kir]] ([[User talk:Kir|talk]]) 20:09, 25 May 2016 (EDT)&lt;br /&gt;
&lt;br /&gt;
== ploop 1.15 ==&lt;br /&gt;
&lt;br /&gt;
Support for e4defrag2 on compact. Docker-related fixes. Fixes for Alpine Linux and newest GCC. Many other fixes and improvements.&lt;br /&gt;
&lt;br /&gt;
{{Download link|ploop/1.15}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Kir|Kir]] ([[User talk:Kir|talk]]) 22:28, 29 April 2016 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 testing 042stab115.2 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to RHEL6u8 beta kernel 2.6.32-621.el6.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6-testing/042stab115.2}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Sergey Bronnikov|SergeyB]] ([[User talk:Sergey Bronnikov|talk]]) 08:33, 6 April 2016 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 testing 042stab114.5 ==&lt;br /&gt;
&lt;br /&gt;
Proper fix for CVE-2016-3156. Fix for kernel BUG in cfq-iosched (OVZ-6651). Fix for kernel crash inside pick_next_task_fair() (PSBM-44475). Write to CIFS share hangs (OVZ-6642). ub memcg: fake use_hierarhy file is required for KVM's libvirtd (OVZ-6660). Other fixes.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6-testing/042stab114.5}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Sergey Bronnikov|SergeyB]] ([[User talk:Sergey Bronnikov|talk]]) 08:10, 30 March 2016 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Virtuozzo 7 Beta ==&lt;br /&gt;
&lt;br /&gt;
This Virtuozzo 7.0 Beta offers the following major improvements:&lt;br /&gt;
&lt;br /&gt;
Unified management of containers and KVM virtual machines with the prlctl tool and SDK. You get a single universal toolset for all CT/VM management needs.&lt;br /&gt;
&lt;br /&gt;
Autoballooning and kernel same-page merging that allows overcommitting memory resources in the smartest way possible with an insignificant impact on customer workloads.&lt;br /&gt;
&lt;br /&gt;
Memory hotplugging for containers and VMs that allows both increasing and reducing CT/VM memory size on the fly, without the need to reboot. Your customers can now scale their workloads without any downtime. This feature also enables you to make PAYG offerings, allowing customers to change VM resources depending on workload and potentially pay less.&lt;br /&gt;
&lt;br /&gt;
Memory guarantees for both containers and virtual machines.&lt;br /&gt;
&lt;br /&gt;
Ability to manage containers and VMs with libvirt and virt-manager. If you used to manage VMs with libvirt, you can do it in Virtuozzo in absolutely the same way.&lt;br /&gt;
&lt;br /&gt;
Guest tools for Windows and Linux VMs.&lt;br /&gt;
&lt;br /&gt;
[https://download.openvz.org/virtuozzo/releases/7.0-beta3/x86_64/iso/ Download]&lt;br /&gt;
&lt;br /&gt;
--[[User:Sergey Bronnikov|SergeyB]] ([[User talk:Sergey Bronnikov|talk]]) 05:53, 29 March 2016 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab113.21 ==&lt;br /&gt;
&lt;br /&gt;
IPv6 link-local address was being assigned to slave interfaces in bonding which resulted in DAD and network routing issues. (PSBM-42433). kswap activity needed to be restricted in case of high-order requests (PSBM-44291). Force charge swapin readahead pages if in ub0. (PSBM-44857). Missing bounds check in ipt_entry structure in netfilter. (PSBM-45193, CVE-2016-3134). IPv6 connect could cause DoS via NULL pointer dereference (PSBM-45219, CVE-2015-8543). Pipe buffer state corruption after unsuccessful atomic read from pipe (PSBM-45328, CVE-2016-0774). hostapd was broken in early RHEL6.7 kernels (OVZ-6649).&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab113.21}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Sergey Bronnikov|SergeyB]] ([[User talk:Sergey Bronnikov|talk]]) 05:48, 29 March 2016 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 testing 042stab113.21 ==&lt;br /&gt;
&lt;br /&gt;
Missing bounds check in ipt_entry structure in netfilter. (PSBM-45193, CVE-2016-3134). IPv6 connect could cause DoS via NULL pointer dereference (PSBM-45219, CVE-2015-8543). Pipe buffer state corruption after unsuccessful atomic read from pipe (PSBM-45328, CVE-2016-0774). hostapd was broken in early RHEL6.7 kernels. (OVZ-6649)&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6-testing/042stab113.21}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Sergey Bronnikov|SergeyB]] ([[User talk:Sergey Bronnikov|talk]]) 05:47, 29 March 2016 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 testing 042stab113.18 ==&lt;br /&gt;
&lt;br /&gt;
bonding: Prevent IPv6 link local address on enslaved devices (PSBM-42433). kswap activity restriction in case high-order requests (PSBM-44291). force charge swapin readahead pages if in ub0 (PSBM-44857)&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6-testing/042stab113.18}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Sergey Bronnikov|SergeyB]] ([[User talk:Sergey Bronnikov|talk]]) 10:22, 14 March 2016 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 stable 042stab113.17 ==&lt;br /&gt;
&lt;br /&gt;
Crash in restore_one_vfsmount() on restoring shared non-master mounts (PSBM-42471). Introduced FADV_DEACTIVATE flag in fadvise() to be able to move file pages from the active to the inactive list (PSBM-42664). Race between keyctl_read() and keyctl_revoke() could crash the host (PSBM-43799, CVE-2015-7550). Under certain circumstances, backup/restore via CBT interface could hang the host (PSBM-43936). Second-level quota in simfs containers was broken in 042stab113.x kernels (OVZ-6655).&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab113.17}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Sergey Bronnikov|SergeyB]] ([[User talk:Sergey Bronnikov|talk]]) 06:37, 14 March 2016 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 testing 042stab113.17 ==&lt;br /&gt;
&lt;br /&gt;
Crash in restore_one_vfsmount() on restoring shared non-master mounts (PSBM-42471). Introduced FADV_DEACTIVATE flag in fadvise() to be able to move file pages from the active to the inactive list (PSBM-42664). Race between keyctl_read() and keyctl_revoke() could crash the host (PSBM-43799, CVE-2015-7550). Under certain circumstances, backup/restore via CBT interface could hang the host (PSBM-43936). Second-level quota in simfs containers was broken in 042stab113.x kernels (OVZ-6655).&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6-testing/042stab113.17}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Sergey Bronnikov|SergeyB]] ([[User talk:Sergey Bronnikov|talk]]) 06:37, 14 March 2016 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL5 stable 028stab120.1 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to RHEL5 kernel 2.6.32-408.el5. Fixes for CVE-2015-5364, CVE-2015-5366.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel5/028stab120.1}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Sergey Bronnikov|SergeyB]] ([[User talk:Sergey Bronnikov|talk]]) 07:30, 2 February 2016 (EST)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL5 testing 028stab120.1 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to RHEL5 kernel 2.6.32-408.el5. Fixes for CVE-2015-5364, CVE-2015-5366.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel5-testing/028stab120.1}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Sergey Bronnikov|SergeyB]] ([[User talk:Sergey Bronnikov|talk]]) 04:30, 25 January 2016 (EST)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL5 stable 028stab119.6 ==&lt;br /&gt;
&lt;br /&gt;
Improved accounting for network-related memory objects (PCLIN-32553). Introduced a per-container limit for the number of mounts (PCLIN-32554). Introduced a per-container limit for IPv4 network interface aliases (PCLIN-32555).&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel5/028stab119.6}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Sergey Bronnikov|SergeyB]] ([[User talk:Sergey Bronnikov|talk]]) 09:25, 3 January 2016 (EST)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;endFeed /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Older updates ==&lt;br /&gt;
* [[/2015/]] (59)&lt;br /&gt;
* [[/2014/]] (74)&lt;br /&gt;
* [[/2013/]] (98)&lt;br /&gt;
* [[/2012/]] (93)&lt;br /&gt;
* [[/2011/]] (102)&lt;br /&gt;
* [[/2010/]] (64)&lt;br /&gt;
* [[/2009/]] (22)&lt;br /&gt;
* [[/2008/]] (24)&lt;br /&gt;
* 2005-2007 (119): available from the [http://old.openvz.org/news/updates old site]&lt;/div&gt;</summary>
		<author><name>Vvs</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.openvz.org/index.php?title=Hosting_providers&amp;diff=23319</id>
		<title>Hosting providers</title>
		<link rel="alternate" type="text/html" href="https://wiki.openvz.org/index.php?title=Hosting_providers&amp;diff=23319"/>
		<updated>2020-06-05T05:20:06Z</updated>

		<summary type="html">&lt;p&gt;Vvs: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''OpenVZ is free and open implementation of Virtuozzo containers for Linux.&lt;br /&gt;
Don't forget to keep [[testimonials|testimonial]] and [[donate]] to OpenVZ.'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
OpenVZ makes for a great hosting platform for VPS hosting. The providers below offer VPS services using OpenVZ.&lt;br /&gt;
&lt;br /&gt;
[[File:UsageLocation.svg]]&lt;br /&gt;
&lt;br /&gt;
= OpenVZ hosting providers =&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- @@@@@@@@@@@@@@@@@@@@@@@&lt;br /&gt;
&lt;br /&gt;
IF YOU EDIT THIS PAGE,  PLEASE OBEY TO THE FOLLOWING RULES:&lt;br /&gt;
&lt;br /&gt;
1. Keep your record on ONE line&lt;br /&gt;
2. Keep the list of providers alphabetically sorted, DO NOT insert your record on top.&lt;br /&gt;
3. Keep the list of countries alphabetically sorted as well.&lt;br /&gt;
&lt;br /&gt;
     @@@@@@@@@@@@@@@@@@@@@@@@ --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Andorra ==&lt;br /&gt;
* [https://www.actiu.net/pro/ Actiu informatica] amb servidors dins i fora del principat.&lt;br /&gt;
&lt;br /&gt;
== Argentina ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.fulltech.com.ar/ Full Tech Solutions] Specializes in the virtualization of OpenVZ &amp;amp; Virtuozzo containers, installed in the Full Tech Solutions Data Center located in Villa Elisa, Entre Rios Argentina.  It also offers services hosted in the United States, Netherlands and Germany&lt;br /&gt;
* [http://www.g2khosting.com/ G2K Hosting] offer OpenVZ containers with high level hardware technology from 25 US with Control Panel, various Linux Dists and full support.&lt;br /&gt;
* [https://hostingplus.com.ar/ HostingPlus Argentina] provide OpenVZ containers at our own datacenter in South America with triple internet provider. Starting from  us20/month&lt;br /&gt;
* [https://ibumu.com/ Ibumu] Best containers for wordpress starting from $5.5.&lt;br /&gt;
* [http://www.ihserver.net/ IHServer] Specialized virtualization on OpenVZ containers at Gigared datacenter. We have in Argentina one of the better fiber connection to the US, but also provides services from LSTN in Texas.&lt;br /&gt;
* [https://www.infranetworking.com.ar/ Infranetworking] All our Cloud VPS container solutions for Argentine customers are powered by the all mighty OpenVZ virtualization software.&lt;br /&gt;
* [https://www.neolo.com/ Neolo] provide OpenVZ containers at our own datacenter in South America with double internet provider. Choose your Linux OS and apps. Full support.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [http://www.wiredhosting.com.ar/ WiredHosting] offer XEN and OpenVZ containers with SSD drives, cloudflare security and weekly backups to protect your information. Phone and Helpdesk support. &lt;br /&gt;
&lt;br /&gt;
== Australia == &lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.auhost4u.com/ AUHost4u] - VPS Solutions provided from our D.C. in Sydney.&lt;br /&gt;
* [https://www.conetix.com.au/ Conetix Hosting] Specialising in business grade, fully managed Virtuozzo containers with Virtuzzo Cloud Storage. 100% Australian owned and operated. Brisbane based DC with Enterprise Dell servers.&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides self-managed OpenVZ based SSD VPS located at Equinix SY3 in Sydney, one of the best and well-connected datacenters in the region.&lt;br /&gt;
* [http://www.vpsfast.us/australia-cloud-server VPSFast] - VPS Provider with good prices in Australia.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Austria ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
* [https://kapper.net/ kapper.net] kapper.net offers OpenVZ and Virtuozzo (and other HyperVisors) based server-solutions with kind support and 24x7 maintenance.&lt;br /&gt;
* [https://mdhost.eu/vserver.php MDHost.eu] New Hosting Provider with nice Prices and many Server locations. Austria, Germany, France and more.&lt;br /&gt;
* [https://www.snb.at/ SNB] offers OpenVZ containers and support's also existing vm's in customers environment&lt;br /&gt;
* [https://www.waveride.at/ Waveride] Waveride, an EDIS company, offers budget full gigabit OpenVZ + solusVM VPS in Austria, USA and the Netherlands&lt;br /&gt;
* [http://www.vpsfast.us/austria-cloud-server VPSFast] - VPS Provider with good prices in Austria.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Brazil ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.datacorporate.com.br/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [http://www.globalmedia.com.br/ GlobalMedia] We offers OpenVZ containers hosted on a very fast network with fast setup. Ubuntu, Debian, CentOS.&lt;br /&gt;
* [http://www.host1plus.com.br/ Host1Plus] Servers hosted in São Paulo. We offering reliable and secure OpenVZ VPS Servers with 99.99% up-time, starting from $5.00 per month.&lt;br /&gt;
* [http://www.ipdeck.net/ IPDECK] VPS Linux server from R$15,00/month! Fully customizable according to your needs.&lt;br /&gt;
* [https://www.quantivehost.com.br/ QuantiveHost] VPS Linux with 99.99% uptime. Prices starting from R$ 29,35.&lt;br /&gt;
* [https://www.elevahost.com.br/ Eleva host] Server hosted in Brazil. The best support.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [https://www.ferenz.com.br/ Ferenz Networks] VPS Linux with best support. Prices starting from R$ 29,90.&lt;br /&gt;
&lt;br /&gt;
== Bulgaria ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.cloudhostinghub.com Offshore VPS Hsoting] CloudHostingHub.com is an [https://www.cloudhostinghub.com Cloud Offshore VPS Hosting] located in Buglaria. They provide both OpenVZ and KVM virtualization. CloudHostingHub.com is known for the high privacy protection , performance and stability.&lt;br /&gt;
* [https://www.cyberhour.com CyberHour.com] CyberHour.com is an [https://www.cyberhour.com offshore VPS hosting] provider located in Europe. The provide blazing fast servers and premium Bandwidth of 200Mbps. With high privacy protection.&lt;br /&gt;
* [https://www.linuxssdvps.com Bulgaria VPS] Linux SSD VPS is an [https://www.linuxssdvps.com offshore VPS hosting] provider located in Sofia, Bulgaria. Privacy is very respected and anonymous registrations are allowed, as well as payments via Bitcoin / PayPal.&lt;br /&gt;
* [http://www.webuzo.net Bulgaria VPS] Webuzo Network is an offshore SSD VPS hosting provider located in Bulgaria. Privacy is very respected and anonymous registrations are allowed, as well as payments via Bitcoin / PayPal.&lt;br /&gt;
* [https://vpsbg.eu/en Bulgaria VPS] VPSBG.eu is an offshore SSD VPS hosting provider located in Sofia, Bulgaria. Privacy is very respected and anonymous registrations are allowed, as well as payments via Bitcoin.&lt;br /&gt;
* [http://www.bul.net/ Bul.net] Provides OpenVZ based VPS, perfect user/VPS management via [http://ispsystem.com VDSManager]. Instant creation after online payment. Debian/Ubuntu/CentOS with ISPManager Control panel. Optimal price policy.&lt;br /&gt;
* [http://www.cointech.eu/vps-hosting/ CoInTech] provides OpenVZ based VPS containers, free webmin managment. Containers can be CentOS, Slackware, Ubuntu, custom or our special [http://www.mandriva.com Mandriva Linux] container with own [http://mandriva.cointech.net repository].&lt;br /&gt;
* [http://www.rax.bg/ RAX.bg] Offers OpenVZ based VPS, hosted on a clustered infrastructure and redundant network. Easy to use user management, Instant setup, CentOS (OS).&lt;br /&gt;
* [http://www.jump.bg/ Jump.bg] Provides OpenVZ VPS servers hosted on a redundant network which provides a very easy to manage platform for all clients which gain instant access to their OS ( Ubuntu, CentOS , Debian etc ... )&lt;br /&gt;
* [https://www.fitvps.com/ FitVPS.com] Offers affordable and reliable OpenVZ based VPS in Varna, Bulgaria. Own data center, own multihomed network, with SLA. Instant automatic setup, SolusVM control panel.&lt;br /&gt;
* [http://www.qhoster.com/ QHoster.com] Instant activation OpenVZ VPS in UK, USA, Germany, France and Switzerland. Both 32/64 bit OpenVZ OS VPS templates : CentOS 5/6, Debian 6/7, Ubuntu 12/13.&lt;br /&gt;
* [https://www.verdina.net Verdina.NET] Verdina.net offers dedicated hosting services, provided by powerful dell hardware. Servers are located in Telepoint Datacenter, a Tier 3 DC located in Sofia, Bulgaria.&lt;br /&gt;
* [https://www.vps.ag/ VPS.AG] Affordable and reliable OpenVZ VPS based in Sofia, Bulgaria. Instant setup and 24/7 support.&lt;br /&gt;
* [http://www.vpsfast.us/bulgaria-vps VPSFast] - VPS Provider with good prices in Bulgaria.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Canada ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://4goodhosting.com/linux-vps-hosting 4GooodHosting] - Canadian OpenVZ VPS Servers, Starting from  $18.99/month SSD,. Canada VPS hosting in three different Canadian Data Centers with nightly backups.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [https://whc.ca/canadian-cloud-servers Web Hosting Canada Cloud Servers] - Powerful Cloud servers powered by OpenVZ and located in Canadian datacenters, with fast RAID-10 storage, fully managed with cPanel.&lt;br /&gt;
* [http://compevo.com compevo Clustered VPS Server Hosting Provider] - We offer clustered VPS Servers to avoid downtime and dataloss. Our network and service is second to none and is used by businesses around the world.&lt;br /&gt;
* [http://www.datacorporate.ca/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [https://www.delimiter.com/storage-vps/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [https://www.miditech.com/ MidiTech Hosting Canada] VPS hosting offered by MidiTech Canada are powered by VMware, . Fully Managed VPS with control panels&lt;br /&gt;
* [http://www.gotekky.com Gotekky Cloud VPS Hosting] High quality Cloud VPS packages powered by our own infrastructure and network in Toronto. Scalable from our $5/mo plan all the way to your own dedicated cloud server. Based on OpenVZ and our own proprietary panel.&lt;br /&gt;
* [https://gigebox.com GIGEBOX.COM] GIGEBOX are expert providers of secure business hosting services, we operate high-performance professional servers, specially designed for businesses, powered by the Intel(R) Xeon(R) Hexa-Core CPU Processors and 128 GB DDR3 minimum RAM. Enjoy high availability, performance and security for multiple uses.&lt;br /&gt;
* [http://www.letstalkdigital.com/index.php?option=com_content&amp;amp;view=article&amp;amp;id=73&amp;amp;Itemid=65 LetsTalkDigital VPS Hosting] LetsTalkDigital.com offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from $14.99. Virtual Private Server (VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://secure.media-hosts.com/link.php?id=7 Media-Hosts.com] Provides Quality and Scalable OpenVZ based Virtual Private Servers. 100% network uptime guaranteed. Located in Montreal Quebec with 5 Tier1 upstream providers.&lt;br /&gt;
* [http://www.openvz.ca OpenVZ.ca] Canadian Budget VPS Servers on OpenVZ Platform. &lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [http://protoserver.com ProtoServer] Advanced VPS Hosting from $4.95/month. Many pre-installed VPS Templates available (CMS, E-commerce, Web development, Online community, Media streaming, etc.) No bundles or service plans - mix VPS resources as needed and change VPS configuration anytime. Also offering DNS Hosting, E-mail hosting, Domains Registration.&lt;br /&gt;
* [http://www.vistapages.com/vps Vistapages VPS] - IBM &amp;amp; Dell Hardware. MCI/Verizon Backbone. Distros: Centos, Fedora, Debian &amp;amp; more. Full management available. Located in Toronto.&lt;br /&gt;
* [http://vpsville.ca/ VPSVille] - Good network. Good CPU. Good choice of distros: Centos, Fedora, Debian, Ubuntu, Slackware, Gentoo, OpenSUSE, CERN. My favorite OpenVZ provider. [mailto:jak@isp2dial.com John Kelly]&lt;br /&gt;
* [http://solib.ca/services-offerts/hebergement-haute-vitesse/serveurs-vps/ SOLIB Logiciel Libre Québec] Our company offers DDoS protected server solutions including OpenVZ containers. Very high availability and reliability, all our VPS are located in Quebec, Canada.&lt;br /&gt;
* [https://www.host-stage.net/linux-vps/ HostStage - Linux VPS] - Simple, Reliable OpenVZ VPS packed with 1 GBPS port speed, RAID 10 SSD, Intel Xeon CPU, DDoS Protection from $4.95/month&lt;br /&gt;
* [https://undergroundprivate.com/russiaoffshorevps.html  UndergroundPrivate.com] - OpenVZ with highly privacy, offshore , DMCA ignored , high confidence, SolusVM and cPanel, managed and non managed service.&lt;br /&gt;
* [http://www.vpsfast.us/canada-vps VPSFast] - VPS Provider with good prices in Canada.&lt;br /&gt;
* [https://websavers.ca/canadian-vps-hosting Websavers Inc in Halifax] - VZ containers priced by the resource. Resource changes entirely client-level.&lt;br /&gt;
* [https://www.yoorshop.fr/hosting-ssd-vps-usa-canada.php YOORshop SAS] - High performance NVMe SSD Linux VPS in Canada, daily backup included. Starting from €7,49 /month&lt;br /&gt;
&lt;br /&gt;
== Colombia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.datacorporate.co/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [http://www.soficol.com/ Soficol] Offers Enterprise OpenVZ based VPS, hosted on a clustered infrastructure and redundant network. Easy to use user management and instant setup.&lt;br /&gt;
* [https://www.hostingplus.com.co/ Hosting Plus Colombia] provide OpenVZ containers at our own datacenter in South America with triple internet provider. Starting from  us20/month&lt;br /&gt;
* [https://ibumu.com/ Ibumu] Best containers for wordpress starting from $5.5.&lt;br /&gt;
&lt;br /&gt;
== Czech Republic ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://4smart.cz 4Smart.cz] - prepaid, you are charged only by the system resources you use, therefore you can run a VPS for as little as  1 EUR a month if your vps is not resource hungry. Even if you pay  0,50 EUR  month, you still have 3 GB of RAM and 8 cores available to you VPS.&lt;br /&gt;
* [http://www.freecloud.cz FREECLOUD.CZ] - Free OpenVZ VPS Server - own IP, 800Mhz CPU, 512MB RAM, 50Mbits LAN, 10GB HDD, 100GB Traffic - Debian, Ubuntu, Gentoo, Slackware, Fedora, Centos&lt;br /&gt;
* [http://www.hukot.cz Hukot.cz] - OpenVZ VPS Servers starting from 2.92 €, XEON, 1 Gbps uplink, unlimited traffic. Debian, Ubuntu, CentOS, Scientific, SuSe, Fedora, Elastix.&lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [http://www.ultimatehosting.eu UltimateHosting.eu] - OpenVZ VPS Servers starting from $8 with custom configuration - up to 100 GB HDD, 2048 MB RAM, 2 GHz CPU, and unlimited traffic.&lt;br /&gt;
* [http://www.mujhost.net MUJHOST.NET] - OpenVZ VPS Servers starting from 160 Kč, 100Mbps / 1 Gbps uplink, unlimited traffic. Debian, Ubuntu, CentOS ...&lt;br /&gt;
&lt;br /&gt;
== Chile ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.1h.cl/ 1h.cl Vps - Chile] - VPS High Performance with OpenVZ in Chile&lt;br /&gt;
* [http://www.1hosting.cl/ 1hosting Virtual servers - Chile] - VPS Professional with OpenVZ&lt;br /&gt;
* [http://www.dch.cl/ DCH] - DCH.cl Hosting Chile - High Performance VPS Servers with OpenVZ &lt;br /&gt;
* [https://www.dominioweb.net/ Dominioweb] - Premium Hosting and domain registration&lt;br /&gt;
* [http://ecohosting.cl/ EcoHosting.cl Santiago - Chile] - VPS with OpenVZ in Chile&lt;br /&gt;
* [http://www.host.cl/ Host.cl] - Cloud Computing&lt;br /&gt;
* [https://www.hostingplus.cl/ HostingPlus Internet Limitada] - High Performance Vps provider in Chile&lt;br /&gt;
* [https://www.hostname.cl/ Hostname Ltda] - VPS Hosting with Datacenter in Chile&lt;br /&gt;
* [https://www.inc.cl/ INC Internet Limitada] - VPS Hosting provider in Chile&lt;br /&gt;
&lt;br /&gt;
== Denmark ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.vpsfast.us/denmark-cloud-server VPSFast] - VPS Provider with good prices in Denmark.&lt;br /&gt;
&lt;br /&gt;
== Ecuador ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.dedi.space/ DediSpace Telecom] - VPS Servers in Ecuador - USA, France, Germany, Ecuador Datacenter.&lt;br /&gt;
&lt;br /&gt;
== France ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.BargainVPS.co.uk/ BargainVPS] - UK / US / EU Instant setup VPS - We have some great Linux &amp;amp; Windows Bargain VPS packages on offer for you here all available Fully Managed.&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in France from 1.88EUR/month.&lt;br /&gt;
* [http://www.fixweb.com Fixweb] Great managed hosting provider with strong anti ddos solution - openvz only - leader in managed openvz solution with horizontal scaling and high availability&lt;br /&gt;
* [http://www.Freaksol.com/ FreaKs VPS Hosting] Self reliant hosted on independent networks &amp;amp; DC low ping,No restrictions on file types,Unlimited resources,high ram servers &lt;br /&gt;
* [https://galaxyhostplus.com/ovz GalaxyHostPlus] Cheap VPS Hosting based in Roubaix with new 2016 line starts from $2/Month &lt;br /&gt;
* [http://www.harmony-hosting.com Harmony-Hosting] A high performance VPS hosting - The leader in France&lt;br /&gt;
* [https://www.delimiter.com/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [http://www.lws.fr/serveur_dedie_linux.php LWS - Linux VPS ] - Linux VPS Hosting - Only 9.99€/month, Affordable and Secure OpenVZ VPS Servers with 99.99% up-time, web hosting control panel Included. French datacenter&lt;br /&gt;
* [http://www.ovh.co.uk/vps/ OVH VPS] linux from 3€/month, [http://www.ovh.co.uk/vps/vps-cloud.xml windows] from 12€/month.&lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [https://VPSZ.FR VPSZ] VPS Hosting in France. Starting from 2,99€, Unlimited traffic.&lt;br /&gt;
* [http://www.1euro-hosting.eu BEST EU VPS - 1€ Hosting] - Providing reliable and secure OpenVZ VPS Servers with 99.99% up-time, starting from 8€&lt;br /&gt;
* [https://www.shape.host/linux-vps/ Shape Host - Linux VPS] - OpenVZ virtual servers, Instant Linux VPS&lt;br /&gt;
* [https://undergroundprivate.com/russiaoffshorevps.html  UndergroundPrivate.com] - OpenVZ with highly privacy, offshore , DMCA ignored , high confidence, SolusVM and cPanel, managed and non managed service.&lt;br /&gt;
* [https://www.host-stage.net/linux-vps/ HostStage - Linux VPS] - Simple, Reliable OpenVZ VPS packed with 1 GBPS port speed, RAID 10 SSD, Intel Xeon CPU from $4.95/month&lt;br /&gt;
* [https://www.yoorshop.hosting/hosting-vps-ssd-europe.php YOORshop SAS] - High performance NVMe SSD OpenVZ 7 VPS within 13 countries in Europe, Canada and Singapore. Daily backup included. From €7,49 /month&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Germany ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://afterburst.com Afterburst (Previously FanaticalVPS)]: affordable unmetered, unmanaged VPS servers in Germany.&lt;br /&gt;
* [http://www.b2b-hosting.de/vps/ B2B Hosting]: Professional virtual servers for business applications. Performance and reliability at a fair price. Made with OpenVZ.&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in Germany from 1.88EUR/month.&lt;br /&gt;
* [https://www.delimiter.com/dedicated-servers/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [https://galaxyhostplus.com/ovz GalaxyHostPlus] Cheap VPS Hosting based in Frankfurt with new 2016 line starts from  $2/Month&lt;br /&gt;
* [http://hostmist.com/openvz-vps-germany.html Host Mist]: features budget OpenVZ VPS hosting in Germany.&lt;br /&gt;
* [http://www.host1plus.com/ Host1Plus] Servers based in Frankfurt am Main. Offering reliable OpenVZ based VPS servers in Germany starting from $2.50 per month.&lt;br /&gt;
* [http://www.hostingjuice.com/ HostingJuice] The Superioum VPS and Web Hosting provider, low prices - Premium packages.&lt;br /&gt;
* [http://www.ingate.de/managed-server.html Ingate] offers managed servers with openVZ virtualization. located in germany, great support.&lt;br /&gt;
* [http://linevast.de/angebote/linux-openvz-vserver-mieten.html Linevast] Reliable OpenVZ based VPS with fast support, located in germany&lt;br /&gt;
* [https://cp.myvirtualserver.com/?affid=42 MyVirtualServer]: Cheap VPS (OpenVZ/KVM, 5TB Traffic, 10Gigabit), servers located in Frankfurt (best ping, starting 1.99€) good support (en/de) //New Design!&lt;br /&gt;
* [https://www.nogics.com Nogics Technologies]: Affordable VPS based in Germany. Starts from $5.96/mo.&lt;br /&gt;
* [http://www.plambee.de/vserver.php Plambee.de Webhosting]: Powerfull OpenVZ based VPS servers at low cost with hosting in Germany&lt;br /&gt;
* [https://rackset.com/ Rackset Hosting] Managed Dedicated / VPS and Website Hosting services since 2004.&lt;br /&gt;
* [http://www.serverbiz.de/vserver Serverbiz] Powerful VPS at very low prices.&lt;br /&gt;
* [http://www.synapseglobal.com/voip_vps.html SynapseGlobal.com] Elastix, Trixbox, PBX in a Flash and Asterisk VPS - OpenVZ based Asterisk VOIP servers located in Munich Germany.&lt;br /&gt;
* [http://www.vStarVPS.com vStarVPS]: Reliable VPS Hosting at lowest prices, with 99.9% uptime, Premium Unmetered Bandwidth and Custom HDD/RAM of your choice. Instant and FREE Setup. RapidLeech Allowed.&lt;br /&gt;
* [http://whynotavps.com WhyNOTaVPS]: Instant activated VPS SERVERS!!&lt;br /&gt;
* [http://squote.de/index.php?ref=1421485383 SQuote]: SQuote VPS Hosting and more. VPS 1 Core, 1.024MB RAM, 512MB RAM SWAP, 50 GB HDD, 1x IPv4. 3,89EUR/month. For the best VPS SQuote.de&lt;br /&gt;
* [http://www.vpsfast.us/germany-vps VPSFast] - VPS Provider with good prices in Germany.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Guatemala ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.globalnetcafe.com/gnc/menu/hospedaje.htm Global Net Cafe]: Servicios de hospedaje, reseller, vps, colocacion y servidores. Incluyendo OpenVZ.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Hong Kong ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [https://hostus.us HostUS] features unmanaged and managed OpenVZ VPS in Hong Kong as well as 3 USA locations. Unparalleled connectivity to the Asia Pacific. Enjoy 15% off with coupon VPS15OFF.&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides self-managed OpenVZ based SSD VPS in Hong Kong, located at the Pacnet datacenter. &lt;br /&gt;
* [http://vps.timway.com/linux_vps.html Timway VPS Hosting] - Quality, non-oversold hosting provider focused on being security conscious and offering a positive client experience.   Centos, Debian, Fedora, OpenSuse and Ubuntu Containers are available.&lt;br /&gt;
* [http://www.vpsfast.us/hong-kong-cloud-server VPSFast] - VPS Provider with good prices in Hong Kong.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Hungary ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://elin.hu/index.php?menu=8&amp;amp;nyelv=hu&amp;amp;cim=Virtualis-szerver Virtual server] OpenVZ server: 2xX5650 Intel Xeon, 32GB RAM, 15.000rpm SAS disks, 100Mbit/s, unlimited bandwith.&lt;br /&gt;
* [https://www.ivirtual.co/vps-hosting/ iVirtual.co ] OpenVZ Master Server: 2x Intel Xeon @ 3.0GHZ, 64 GB ECC Ram, 15k RPM SAS HDD's, 1Gbit/s Network, Unlimited bandwith.&lt;br /&gt;
&lt;br /&gt;
== Iceland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
&lt;br /&gt;
== Ireland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== India ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://cochinwebhost.in/budget-vps-hosting/ Low Cost VPS Hosting] Fast SSD VPS Server for Hosting Solutions at budget prices with 24x7 Technical Support.&lt;br /&gt;
&lt;br /&gt;
* [http://www.datacorporate.in/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
&lt;br /&gt;
*[http://www.fastwebhost.in/vps-hosting.html fastwebhost VPS Hosting] VPS hosting offered by fastwebhost are powered by ''VPS hosting, virtual server hosting and Linux VPS hosting services''. Fully Managed VPS with control panels.&lt;br /&gt;
&lt;br /&gt;
* [http://www.Freaksol.com/ Freaksol VPS Hosting] Self reliant hosted on independent networks &amp;amp; DC low ping to India,No restrictions on file types,Unlimited resources,high ram servers&lt;br /&gt;
&lt;br /&gt;
* [https://www.geniushost.in Genius Host] Fully managed [https://www.geniushost.in SSD Web Hosting] offered by Genius Host are powered by ''OpenVZ'' With LiteSpeed Web Server &amp;amp; Mariadb.&lt;br /&gt;
&lt;br /&gt;
* [http://www.hioxindia.com/virtual-private-server.php VPS Hosting] Reliable and quality VPS Virtual Private Server Hosting&lt;br /&gt;
&lt;br /&gt;
* [https://www.hostnamaste.com HostNamaste] is your high-performance [https://www.hostnamaste.com/openvz-vps.php OpenVZ VPS Hosting] Provider. Get your perfect [https://www.hostnamaste.com/openvz-vps.php VPS Hosting] account today! Available in [https://www.hostnamaste.com/datacenter-losangeles.php Los Angeles], [https://www.hostnamaste.com/datacenter-dallas.php Dallas], [https://www.hostnamaste.com/datacenter-jacksonville.php Jacksonville], USA,  [https://www.hostnamaste.com/datacenter-france.php France], Europe, [https://www.hostnamaste.com/datacenter-mumbai-pune.php Mumbai], India and [https://www.hostnamaste.com/openvz-vps-moscow-russia.php Moscow], Russia.&lt;br /&gt;
&lt;br /&gt;
* [https://www.hostsoch.in/windows-hosting.html HostSoch Windows Hosting] Windows hosting offered by HostSoch are powered by ''Windows 2012, ASP.NET, MVC, IIS, PHP and More''. 99.9% Uptime, 24/7 Dedicated support guaranteed. &lt;br /&gt;
&lt;br /&gt;
* [https://www.miditech.co.in/ MidiTech VPS Hosting] VPS hosting offered by MidiTech are powered by ''VMware, ''. Fully Managed VPS with control panels. &lt;br /&gt;
&lt;br /&gt;
* [http://www.milesweb.com/vps-hosting.php Milesweb VPS Hosting] VPS hosting offered by Milesweb are powered by ''VMware, OpenVZ''. Fully Managed VPS with control panels. &lt;br /&gt;
&lt;br /&gt;
* [https://www.nogics.com/web/vps-hosting/ Nogics Technologies] Instant provisioning of VPS, VPS starts from $5.96/mo. 30+ OS templates.&lt;br /&gt;
&lt;br /&gt;
* [http://overlineindia.net/vpshosting-p-62.html Overline India VPS Hosting] Fully managed cPanel Installed VPS Hosting with 24x7x365 Live Chat Tech support, powered by OpenVZ&lt;br /&gt;
&lt;br /&gt;
* [http://www.prohosterz.com/linux-vps.php ProHosterZ VPS Hosting] Reliable and quality Virtual Dedicated Servers | Virtual Private Servers | XEN VPS | OpenVZ VPS | Virtual Hosting&lt;br /&gt;
&lt;br /&gt;
* [http://pve.proxmox.com/wiki/User:Apmuthu Ap.Muthu] sponsored by [http://www.gnuacademy.org GNUAcademy], [http://www.planettel.com.sg PlaNetTel] and [http://www.sacollege.net S A College] creates OpenVZ Templates for the Open Source Community and provides hosting in datacenters of clients choice or on site.&lt;br /&gt;
&lt;br /&gt;
* [http://www.servers.co.in/vps/vps_hosting.php Server Web Hosting] Offers Fully Managed OpenVZ VPS Web hosting in India/US/UK at affordable and cheap rates with best hardware quality and customer service 24/7/365 days&lt;br /&gt;
&lt;br /&gt;
* [http://vpsbeach.com VpsBeach Managed Hosting] Fully managed cPanel Installed VPS Hosting with 24x7x365 Live Chat Tech support, powered by OpenVZ&lt;br /&gt;
&lt;br /&gt;
* [http://www.vpsfast.us/india-vps VPSFast] - VPS Provider with good prices in India.&lt;br /&gt;
&lt;br /&gt;
* [http://www.vpshostingindia.net/ VPS Hosting India, Fully Managed Server] A Committed Fully Managed VPS Server for Hosting solution in India, Complete Technical Support assistance with commitment of fast, clustered and most supportive DataCenters.&lt;br /&gt;
* [http://touchstone.hosting/ Touchstone Solutions Private Limited] High-performance Enterprise VPS Hosting in India. One of the highest performing VPS Servers available with cPanel Installed.&lt;br /&gt;
* [http://www.hostitsmart.com/ Host IT Smart] - One of the best VPS Hosting Provider in India with 24X7X365 Customer support.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Indonesia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.herza.id/vps-murah/ Herza.ID] Low Cost OpenVZ Virtual Server, starting from IDR 50.000 / Month with RAID 10 SSD, Unlimited Bandwidth with 1 Gbps IIX &amp;amp; OIXP Connection, and 24/7 Technical Support.&lt;br /&gt;
&lt;br /&gt;
== Iran==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.ehost.ir EHost.ir] - OpenVZ Servers , DUAL XEON Cpus , 12 Gb Ram , 100Mbit Dedicated Connection , SAS HardDisk&lt;br /&gt;
* [http://www.vpsfa.com VPSFa.com] - OpenVZ Servers , DUAL XEON Cpus -  , 24Gb Ram , 1000Mbit Dedicated Connection , SAS HardDisk&lt;br /&gt;
* [https://webramz.com Webramz Host] - With more than 15 years experience in Managed Hosting, Webramz was first vps provider in Iran which used to setup OpenVZ servers. Nowadays we provide wide range of services including CloudLinux based OpenVZ and Managed Vps Servers.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Italy ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
* [http://www.hosting-italia.net hosting italia] - OpenVZ Servers and panel enduser Virtualizor Intel® Core™ i7-920 Quad-Core 48 GB DDR3 RAM - Guaranteed Bandwidth 200 Mbit/s&lt;br /&gt;
* [http://www.vpsfast.us/italy-vps VPSFast] - VPS Provider with good prices in Italy.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Liechtenstein ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
&lt;br /&gt;
== Lithuania ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.cloudlix.com/ CloudLix.com] - Managed and unmanaged OpenVZ virtual servers based on 2.6.32 kernel. Up to 20GHz (Intel SandyBridge) CPU and 10GB RAM. Located in Vilnius and Siauliai.&lt;br /&gt;
* [http://www.databank.lt/ databank.lt] - high-quality professional OpenVZ hosting with cloud computing solutions.&lt;br /&gt;
* [https://www.hostens.com/vps-hosting/ Hostens] - Unmanaged VPS hosting for the great price: clear deals, no hidden conditions, quality service from the heart of Europe. &lt;br /&gt;
* [https://www.lavavps.lt/ lavavps.lt] - Professional high-quality OpenVZ containers (VPS servers) affordable for everyone. Powerful control panel for VPS management.&lt;br /&gt;
* [https://monovm.com/ monovm.com] - High Quality VPS Hosting Provider&lt;br /&gt;
* [http://www.serveriai.lt/ Serveriai.lt] - Affordable OpenVZ containers on quality HP hardware. Wide choice of virtual dedicated servers up to 8 CPU cores and 8 GB RAM. Full management available. Located in Vilnius.&lt;br /&gt;
* [https://www.time4vps.com/?affid=1359 Time4VPS] - Powerful cloud technology based infrastructure will let you build custom virtual machine and pay only for what you really need. Located in Vilnius city.(0.99€/month(2Yr) 512mbRAM, 1TB Traffic// 4.5€/month(2Yr) StorageVps, 1TB, 10TB Traffic)&lt;br /&gt;
* [https://www.vpsnet.lt/en/ VPSnet.lt] - Powerful and high quality servers for a competitive price in Lithuania (Eastern Europe).&lt;br /&gt;
* [http://www.vpsfast.us/lithuania-vps VPSFast] - VPS Provider with good prices in Lithuania.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Latvia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.altnet.lv/ Altnet] - Hosting and colocation services. Any flawor, you name it. &lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
&lt;br /&gt;
* [http://www.vpsfast.us/latvia-vps VPSFast] - VPS Provider with good prices in Latvia.&lt;br /&gt;
&lt;br /&gt;
== Luxembourg ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.vpsfast.us/luxembourg-vps VPSFast] - VPS Provider with good prices in Luxembourg.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Malaysia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.cubiex.com/ Cubiex] - Malaysia Affordable Web Hosting and Domain Name. Affordable Linux VPS Hosting in Malaysia. OpenVZ based, Quad Core Xeon node. cPanel/WHM and DirectAdmin also available.&lt;br /&gt;
* [https://controlvm.com ControlVM] ControlVM Sdn. Bhd. offering OpenVZ VPS in Singapore, Malaysia, USA and Germany.&lt;br /&gt;
* [https://www.yoorshop.fr/hosting-ssd-vps-singapore-asia.php YOORshop SAS] - High performance SSD Linux VPS In Singapore with daily backup included. Starting from €7,49 /month&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Malta ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.a6it.com/ A6iT] - Stable, quality managed OpenVZ VPSs based in Malta.  Redundant network.&lt;br /&gt;
&lt;br /&gt;
== Morocco ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.belsemtech.com/ BelsemTech.CoM] BelsemTech SARL offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from 300 DH. Virtual Private Server (VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://www.hostoweb.com/ HosToWeb] is the only company providing VPS hosting in Morocco Data Center.&lt;br /&gt;
* [http://www.adk-media.com/ ADK Media] provides affordable managed and unmanaged virtual servers based on OpenVZ, Xen Paravirtualization and Xen HVM platforms. 24/7 Technical Support. Distros: Centos, Fedora, Debian, Ubuntu and more.&lt;br /&gt;
* [http://www.naja7host.com/ Naja7Host.CoM] The Naja7host SARL provides affordable VPS hosting using the OpenVZ platform. Running on Full Quality Nodes of up to 8 CPU and 16 GB RAM. . All VPS's come with Real 24/7/365  Technical Support and cPanel free (if option selected  ). Multiple choice of OS 32/64Bits (Centos, fedora, ubuntu, debian .ect ...)&lt;br /&gt;
* [http://www.lehoster.com/ Le Hoster] offers affordable Virtual Private Servers using the OpenVZ and KVM platform. Backed with our amazing customer support.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Netherlands ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.avanpad.com/ Avanpad] offers OpenVZ VPS hosting with 24\7 online support. Customer can request different control panels or templates for installation on his VPS.&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in Netherlands from 1.88EUR/month.&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
* [http://www.Freaksol.com/ FreaKs VPS Hosting] Self reliant hosted on independent networks &amp;amp; DC low ping around the world,No restrictions on file types,Unlimited resources,high ram servers&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [http://www.HostSailor.com/ HostSailor] Number 1 Netherlands Provider HostSailor provides affordable &amp;amp; high quality services such as VPS (XEN, OpenVZ and KVM) Linux or Windows, Dedicated servers, SSL certificates and domain name services.&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides self-managed OpenVZ SSD VPS in Telecity AMS 5, one of the best datacenters located in the Amsterdam area.&lt;br /&gt;
* [https://iniz.com/ INIZ VPS Hosting] INIZ provides affordable VPS Hosting in Amsterdam, Netherlands with high resources at low prices.&lt;br /&gt;
* [https://www.liteserver.nl/ LiteServer] Looking for a quality and affordable VPS in the center of The Netherlands? We provide SSD, Storage and High Bandwidth VPSes, starting at only €16 per year. We operate AS60404.&lt;br /&gt;
* [https://www.mangelot-hosting.nl/ Mangelot Hosting] Mangelot Hosting, A webhosting company located in the Netherlands, offers budget OpenVZ hosting solutions for maximum scalability en performance.&lt;br /&gt;
* [http://www.osbox.nl OsBoX Dutch Network Engineering] Cheap VPS host as low as $1 per month. Very great uptime and a overall good support. Check the website for the server plans.&lt;br /&gt;
* [http://www.signet.nl/ Signet VPS Hosting] - Signet delivers VPS hosting plans based on CentOS or Debian templates, including control-panel Virtualmin.&lt;br /&gt;
* [http://simple-webhosting.eu/ Simple-webhosting.eu] - OpenVZ based web hosting starting from €0.98 per month.&lt;br /&gt;
* [https://www.seedvps.com SeedVPS] Provides Powerful &amp;amp; Reliable OVZ/KVM VPS Hosting in The Netherlands&lt;br /&gt;
* [http://www.touchvps.com/ TouchVPS] is a company who offer Support and Managed Services for OpenVZ Servers ,also offer templates for openvz ready to go with cPanel , DirectAdmin , Plesk , Games, IRC Services, Desktop and many more.&lt;br /&gt;
* [http://www.voipcomplete.com/product-overview/dedicated-vps.html VOIPcomplete] offers dedicated VPS plans based on CentOS including a VPS management interface.&lt;br /&gt;
* [https://www.waveride.at/ Waveride] Waveride, an EDIS company, offers budget full gigabit OpenVZ + solusVM VPS in Austria, USA and the Netherlands&lt;br /&gt;
* [https://undergroundprivate.com/russiaoffshorevps.html  UndergroundPrivate.com] - OpenVZ with highly privacy, offshore , DMCA ignored , high confidence, SolusVM and cPanel, managed and non managed service.&lt;br /&gt;
* [https://www.totallyhosted.nl/ TotallyHosted] OpenVZ based Premium VPS services located in the Netherlands @ Serverius DC.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [http://www.vpsfast.us/netherlands-vps VPSFast] - VPS Provider with good prices in Netherlands.&lt;br /&gt;
&lt;br /&gt;
== Norway ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.vpsfast.us/norway-vps VPSFast] - VPS Provider with good prices in Norway.&lt;br /&gt;
&lt;br /&gt;
== Pakistan ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://vimzaa.com/ Vimzaa] The best hosting in Pakistan.&lt;br /&gt;
&lt;br /&gt;
== Philippines ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.web.com.ph/vps.php Web.com.ph] - provides OpenVZ virtual servers in the Philippines.&lt;br /&gt;
&lt;br /&gt;
== Perú ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.hn.pe/ Hostname] Hostname offers business OpenVZ containers in Perú&lt;br /&gt;
* [http://www.hostingandino.pe/ Hostingandino Lima - Peru] - VPS with OpenVZ in Peru&lt;br /&gt;
* [http://www.hostingplus.pe/ HostingPlus Internet Limitada] - High Performance Vps provider in Peru&lt;br /&gt;
* [https://www.hostingroup.com/ Hostingroup] Web hosting for small businness in Perú.&lt;br /&gt;
* [https://hostingweb.pe/ Hosting Web] The best hosting in PERU.&lt;br /&gt;
* [https://www.inchosting.pe/ HostingINC SAC] OpenVZ virtualization solutions for business in Perú.&lt;br /&gt;
* [https://www.mejorhosting.pe/ Mejor Hosting Perú] Hosting comparison for peruvian hosting providers.&lt;br /&gt;
* [https://webuniversal.pe/ Web Universal] The best hosting in PERU in the World.&lt;br /&gt;
&lt;br /&gt;
== Poland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://hosteam.pl/ HosTeam] offers OpenVZ VPS hosting from their DataCenter in Poland. Customer has choice of all major Linux distros (WARNING!!! restoring your backup is VERY expensive and they charge even if it wasn't restored correctly!), NATIVE IPV6 AVAILABLE!&lt;br /&gt;
&lt;br /&gt;
* [http://ultimahost.pl/ UltimaHost] high grade OpenVZ VPS and FreeBSD jail (DC in Łódź, Poland), brand of statnet.pl, SSD available for more expensive packets, NO IPV6 AVAILABLE (but they can load you tun module)&lt;br /&gt;
&lt;br /&gt;
* [http://budgetvps.pl/ BudgetVPS] very cheap, low end grade OpenVZ VPSes (DC in Gdańsk, Poland), brand of HitMe.pl&lt;br /&gt;
&lt;br /&gt;
* [https://hitme.pl/ HitMe.pl] high grade OpenVZ/Xen PV/Xen HVM VPSes, Virtuozzo (DC in Gdańsk, Poland), NATIVE IPV6 AVAILABLE (/64 on demand for free)!&lt;br /&gt;
&lt;br /&gt;
* [http://www.kr-cpd.pl/oferta/serwery-vps/ KR-CPD] Cracow's Center of Data Processing (DC of course in Cracow, Poland)&lt;br /&gt;
&lt;br /&gt;
* [http://livenet.pl Livenet] cheap, middle/low end OpenVZ VPSes (DC in Łódź, Poland)&lt;br /&gt;
&lt;br /&gt;
* [http://slaskdatacenter.pl/ Śląsk Data Center] high/middle grade OpenVZ VPSes (DC in Silesia province, Poland), SSD available for more expensive packets&lt;br /&gt;
&lt;br /&gt;
* [https://www.ionic.pl/ IONIC.pl] VPS OpenVZ with SolusVM control panel, own DC in Cracow&lt;br /&gt;
&lt;br /&gt;
* [https://microvps.pl/ MicroVPS.pl] Middle And low end OpenVZv7 VPS plans. SSD for regular VPS and HHD for storage plans (up to 1TB)&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Portugal ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.ptservidor.pt/ PTServidor] - OpenVZ virtual servers with free management based in Portugal.&lt;br /&gt;
* [http://www.efeito.net/ Weblevel.pt] - OpenVZ virtual servers based in Portugal.&lt;br /&gt;
* [https://www.webtuga.pt/ WebTuga] - Managed/Unmanaged Virtual Private Servers hosted in a Portuguese Datacenter with lots of extras&lt;br /&gt;
* [https://www.cloudfire.pt/ CloudFire] - OpenVZ VPS at very low prices hosted in Portugal&lt;br /&gt;
* [https://www.linxisp.com/ LINXISP] - High Availability &amp;amp; Performance OpenVZ Containers&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] - Build an OpenVZ VPS in 14 locations WordWide From £2.49&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Romania ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.intovps.com IntoVPS] - offers unmanaged OpenVZ virtual servers based in Romania, Netherlands and USA. A lot of resources for decent prices.&lt;br /&gt;
* [http://www.ename.ro/dedicated.html eName] - managed OpenVZ virtual servers in Bucharest, Romania&lt;br /&gt;
* [http://www.ch-center.com/virtual-servers Ch-center] - unmanaged OpenVZ virtual servers, based in Romania in it's own Data Center&lt;br /&gt;
* [http://www.clouds.ro/servere-virtuale/ Clouds] - OpenVZ virtual servers hosted on premium hardware, in Romania&lt;br /&gt;
* [http://www.HostSailor.com/ HostSailor] HostSailor provides affordable &amp;amp; high quality OpenVZ and KVM servers in Romania&lt;br /&gt;
* [https://www.shape.host/linux-vps/ Linux VPS] - OpenVZ virtual servers, Instant Linux VPS&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Russia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.internoc24.host Internoc24.HOST] is an international [https://www.www.internoc24.host Offshore VPS ] provider with reliable SSD VPS in Moscow, Russia. Focus ist on high privacy protection so they accept several Cryptocurrencies like Bitcoin, Ethereum and others for anonymous payments.&lt;br /&gt;
* [http://www.ihc.ru/vps.html IHC.RU] - VPS hosting in Moscow, Russia starting at $10/month with good set of precreated templates&lt;br /&gt;
* [http://mchost.ru/services/linux-vps/ McHost.ru] - Linux VDS Hosting from McHost.&lt;br /&gt;
* [http://hosting.agava.ru/vps/ AGAVA] - Linux VPS hosting based on OpenVZ.&lt;br /&gt;
* [http://vdsplanet.ru/ VDSPlanet.ru] - unmanaged VDS/VPS hosting starting at 3.99$ a month. Large variety of OS templates and free ISPmanager Lite control panel. Total automation is our goal.&lt;br /&gt;
* [http://www.demos.ru/service/datacenter/vps.html Demos-Internet] - we offer OpenVZ Virtual Private Server based on Linux.  All VPS come with ISPmanager control panel.&lt;br /&gt;
* [http://www.net.ru/service/net9/ www.net.ru] - OpenVZ virtual private servers.&lt;br /&gt;
* [http://www.eurobyte.ru/ Eurobyte.ru] - Linux VDS Hosting from Eurobyte.&lt;br /&gt;
* [https://undergroundprivate.com/russiaoffshorevps.html  UndergroundPrivate.com] - OpenVZ with highly privacy, offshore , DMCA ignored , high confidence, SolusVM and cPanel, managed and non managed service.&lt;br /&gt;
* [http://www.telekom.ru/service/vps.html Elvis Telekom] - OpenVZ hosting with base and cpanel templates from Elvis Telekom.&lt;br /&gt;
* [http://fastvps.ru/vds/ FastVPS] - OpenVZ hosting, ISPmanager, Hetzner, MayFlower.&lt;br /&gt;
* [https://lepus.su/vps.html Lepus] - OpenVZ hosting, SSD, ISPmanager free, Hetzner.&lt;br /&gt;
* [http://www.hts.ru/vds/ HTS] - OpenVZ hosting, ISPmanager, Linux VPS hosting based on OpenVZ in Moscow.&lt;br /&gt;
* [https://selectel.ru/services/vds/ Selectel] - OpenVZ hosting.&lt;br /&gt;
* [https://galaxydata.ru/root-server/ GalaxyData] - Virtuozzo Containers in Cloud Storage.&lt;br /&gt;
* [http://hosterbox.ru/servers/ Hosterbox.ru] - Managed VPS hosting. Based on OpenVZ + SolusVM + ISPmanager.&lt;br /&gt;
* [https://firstvds.ru FirstVDS.ru] - One of the leading hosting companies providing virtual private servers.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Singapore ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://conceptlane.com/?t=hostingservices#ratesvps ConceptLane Pte Ltd] - OpenVZ VPS on dual octa-core AMD Opterons running Debian Wheezy 7, custom control panel with bandwidth graphs, reboot/reinit and web-based VNC access.&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [http://www.qoxy.com/vps QOXY.com] Affordable and Reliable OpenVZ VPS Hosting in a Singapore Data Center.&lt;br /&gt;
* [http://www.secureax.com/ SecureAX Pte Ltd] - Singapore Premium Internet Solution Provider&lt;br /&gt;
* [http://www.planettel.com.sg PlaNetTel] - Affordable and customised OpenVZ containers across 3 data centers - contact Thomas Festus at +65-66936881. [http://pve.proxmox.com/wiki/User:Apmuthu#Squeeze_based_Templates Sponsors OpenVZ Container Template]s for the Open Source community.&lt;br /&gt;
* [http://www.vpsfast.us/singapore-vps VPSFast] - VPS Provider with good prices in Singapore.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Serbia ==&lt;br /&gt;
* [https://www.skyhosting.rs/en/vps-servers SkyHosting] - Fast Linux OpenVZ VPS SSD Hosting with SolusVM control panel.&lt;br /&gt;
* [https://www.ninet.rs/en/vps-servers NiNet Company] - Linux OpenVZ VPS servers. Well known VPS hosting company from Serbia with their own data center&lt;br /&gt;
* [http://www.suonline.net SuOnline.Net ISP] - Linux OpenVZ VPS servers, Docker enabled !!!&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== South Africa ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.host1plus.com/ Host1Plus] - Local South African servers hosted in Johannesburg. OpenVZ VPS servers starting from $3.00 per month.&lt;br /&gt;
* [http://www.vps.co.za/ VPS.CO.ZA] - South Africa's oldest VPS provider. Local South African servers with SolusVM control panel. OpenVZ, Xen and OnApp Cloud.&lt;br /&gt;
* [http://247hosting.co.za/vpshosting.php 247Hosting] - OpenVZ virtual servers locally in South Africa with SolusVM control panel. cPanel option available!&lt;br /&gt;
* [http://www.SoftDux.co.za/ SoftDux] - OpenVZ virtual servers based America &amp;amp; South Africa. All VPS's come with cPanel or Plesk control panels. XEN VPS's also available.&lt;br /&gt;
* [http://www.clickworks.co.za/ Clickworks] - OpenVZ / Xen VPS servers hosted in RSA. Backed by Solusvm control panel.&lt;br /&gt;
* [http://www.elitehost.co.za/ Elite Host] - OpenVZ virtual servers based in America &amp;amp; South Africa. All VPS's come with cPanel and unlimited bandwidth.&lt;br /&gt;
* [http://www.telasera.com/ Telasera] - OpenVZ VPS servers hosted in South Africa. Supermicro Servers powered by Intel Xeon with 24/7 Support.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Spain ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.actiu.net/pro/ Actiu informatica]&lt;br /&gt;
* [http://www.corpresa.com/servidores-virtuales.html Corpresa Hosting] - Tiene algún proyecto entre manos y un plan de hosting no le hes sufuciente y un servidor dedicado no está dentro de su presupuesto?, una solución de VPS a medida será la que cubrirá todas sus necesidades.&amp;quot;&lt;br /&gt;
* [https://www.datomedia.es Datomedia] - Cloud alta disponibilidad powered by Virtuozzo 6 y Servidores VPS bajo openvz y kvm.&lt;br /&gt;
* [https://www.evidaliahost.com/vps/ EvidaliaHosting] - Servidores VPS totalmente configurados con panel de gestión Plesk 12.5, garantía de devolución de 30 días y posibilidad de discos SSD.&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
* [https://ginernet.com/vps-ssd.php GINERNET] - Servidores VPS alojados en España desde 1.99€/mes.&lt;br /&gt;
* [https://www.hostingplus.com.es Hosting Plus España] provide OpenVZ containers at our own datacenter. Starting from us20/month RAID 10 SSD.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Sweden ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.admax.se/vps/ Admax] - Admax offers enterprise grade virtual servers with great pricing. Custom control panel, API, remote access &amp;amp; more.&lt;br /&gt;
* [https://www.acon.se/vps Acon VPS Server] - VPS Server and Dedicated server provider in Sweden.&lt;br /&gt;
* [https://www.glesys.com/vps.php GleSYS] - VPS Provider with a great control panel and good prices&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides the highest quality SSD VPS in Stockholm, Sweden. Based on completely pure SSD in RAID-10 and delivering extremely high network &amp;amp; hardware performance along with reliability.&lt;br /&gt;
* [https://www.nametyper.com NameTyper] - VPS and Shared hosting provider. Customize your own OpenVZ Container with 1-12 cores running on SSD and ECC RAM. &lt;br /&gt;
* [https://virtualcenter.se VirtualCenter] - The first Cloud provider with SSD VPS in Sweden. Offer enterprise class hardware and network infrastructure&lt;br /&gt;
* [http://www.vpsfast.us/sweden-vps VPSFast] - VPS Provider with good prices in Sweden.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Switzerland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
* [http://www.vpsfast.us/switzerland-vps VPSFast] - VPS Provider with good prices in Switzerland.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Tanzania==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.aptus.co.tz/ Aptus Solutions] - OpenVZ / SolusVM VPS Servers located in Dar es Salaam - 100meg to TIX. CentOS &amp;amp; Ubuntu.&lt;br /&gt;
&lt;br /&gt;
== UK ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.34sp.com/ 34SP.com] - We're a UK based web hosting company, bridging the gap between sophisticated hosting solutions &amp;amp; affordable prices&lt;br /&gt;
* [http://www.AceShells.com/ AceShells] - Fast, stable, high quality UK based virtual private servers from just £5 a month, operating since 2001&lt;br /&gt;
* [http://www.AtlanticServers.com/ Atlantic Servers] - Affordable VPS, stable, high quality VPS, UK based Data Centre&lt;br /&gt;
* [https://awebhosting.uk/ AWebHosting.uk] VPS hosting offered by [https://awebsolutions.uk/ AWEBSOLUTIONS LIMITED] reliable UK hosting provider located in London, UK and Hosted in UK DataCentre.* [http://www.BargainVPS.co.uk/ BargainVPS] - UK / US / EU Instant setup VPS - We have some great Linux &amp;amp; Windows Bargain VPS packages on offer for you here all available Fully Managed.&lt;br /&gt;
* [http://www.cheapvps.co.uk/ CheapVPS] - CheapVPS provide cheap, UK based OpenVZ VPS servers. Hosted on high end hardware, in a top UK datacenter backed up with 24/7/365 support. Choice from a wide range of Linux distros. OpenVZ VPS managed with SolusVM.&lt;br /&gt;
* [http://www.chilliserver.com/ Chilliserver] - Affordable plans starting from just £3.99, not oversold. RHEL6 Kernel with VSwap, TUN/TAP/FUSE and ACL support enabled. SolusVM control panel with custom snapshot system and rescue system. Based in a European data Centre with UK based support.&lt;br /&gt;
* [http://www.chvps.com/ CHVPS] - Switzerland Based VPS, Cheap Pricing with solusVM control panel.&lt;br /&gt;
* [http://www.cislondon.co.uk/virtual-private-servers/ Commercial Internet Solutions] - CIS provides premium hosting at competitive rates, focused on Small Businesses within the M25 orbital. Hosting is on Dual Quad core Intel Xeon supermicro servers in Tier 4 datacenters around London.&lt;br /&gt;
* [http://www.datacorporate.co.uk/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [http://domvps.com/ domVPS] - OpenVZ Virtual Servers in the USA, Germany, France &amp;amp; the Netherlands at a low cost.&lt;br /&gt;
* [http://www.DubHosting.co.uk/ DubHosting] - DubHosting started in 2004 has been providing cost effective hosting to clients world wide. Fully managed OpenVZ servers based in Europe &amp;amp; US are one of their many strong points. They can provide you with a dedicated server and install openvz allowing you to sell your own vps servers. Their servers are located at UKGrid in Manchester with 24/7/365 support&lt;br /&gt;
* [http://www.europhase.net/virtual-private-servers/ Europhase UK Limited, UK VPS] - OpenVZ VPS Hosting, Virtual Dedicated Servers, UK VPS hosted at multiple UK datacentres from £4.99&lt;br /&gt;
* [https://farbyte.uk/vps Farbyte VPS] - UK based OpenVZ VPS and shared web hosting services&lt;br /&gt;
* [http://www.fdqwholesale.co.uk FDQ Wholesale] - UK based hosting services&lt;br /&gt;
* [http://www.gemvps.net/ GemVPS.NET] - UK (Manchester) Based Company, OpenVZ Virtual Servers in the UK &amp;amp; France on Fast nodes.&lt;br /&gt;
* [http://www.hadrill.org.uk Hadrill Online] - Fully managed hosting with unlimited bandwidth. Quotes available through contact form.&lt;br /&gt;
* [http://www.infrenion.com./uk_vps_hosting.html Infrenion Networks UK] Cheap, economical and reliable web hosting solutions, VPS based on the openVZ platform. You can host any YouTube Clone scripts with free FFMPEG setup on our vps servers. Also offers with a choice of selecting DataCenter.&lt;br /&gt;
* [https://www.laws-hosting.co.uk/vps-hosting.php Laws Web Hosting] - Laws Web Hosting offers OpenVZ VPS Hosting with packages starting from £5.50/m that will cater for anyone. We have OpenVZ VPS hosting solutions, and come with moderate DDoS protection.&lt;br /&gt;
* [http://www.letstalkdigital.com/index.php?option=com_content&amp;amp;view=article&amp;amp;id=73&amp;amp;Itemid=65 LetsTalkDigital VPS Hosting] - LetsTalkDigital.com offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from $14.99. Virtual Private Server(VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://www.meteorvps.com/ MeteorVPS] - Professional, Non-Oversold amazing VPS plans pretty cheap using SolusVM management, range from 512MB -&amp;gt; 16GB&lt;br /&gt;
* [http://www.minivps.co.uk miniVPS] miniVPS offers VPS hosting solutions with nodes located in UK, utilising openvz/solusvm with future locations of USA and UK. &lt;br /&gt;
* [https://www.first2host.co.uk First2Host Cheap VPS] - Intel Xeon E5-2630v3 OpenVZ VPS Servers. Don't be defined by a pre-made VPS plan. Create your own VPS Plan by assigning the resources that you require. SATA, SSD or NVMe storage 100 MBPS, 250 MBPS, 500 MBPS, 1GBPS speeds and free cPanel licenses.&lt;br /&gt;
* [http://www.phurix.co.uk/ Phurix] - A UK based web solutions company that provides you with reliable hosting at extremely affordable prices, VPS server virtualization using OpenVZ.&lt;br /&gt;
* [http://www.qualityservers.co.uk Quality Servers] - Affordable OpenVZ virtual servers based in the UK and USA. Choice of control panels and management options.&lt;br /&gt;
* [http://www.rackburst.net/ Rackburst] - UK SSD VPS Hosting with fast UK-based Live Support available from £1.49 per month.&lt;br /&gt;
* [http://www.rshosting.co.uk/vps.html RSHosting UK] - Offering the most secure, reliable, stable and fast UK VPS Web Hosting based on OpenVZ architecture. Our Virtual Dedicated Servers are physically hosted on powerfull Quad Core servers located in multiple UK datacentres.&lt;br /&gt;
* [http://www.sharkserve.rs SharkServers] - Low Cost OpenVZ virtual servers in the UK. Choice of control panels and management options. Own Datacentre.&lt;br /&gt;
* [https://www.ukhost4u.com/ UKHost4u] - A leading provider of VPS solutions for over 19 years!&lt;br /&gt;
* [http://www.vpsfast.us/united-kingdom-vps VPSFast] - VPS Provider with good prices in UK.&lt;br /&gt;
* [http://www.vpsmachine.co.uk/ vpsMachine] Quality openvz hosting platform with a large choice of customer OS templates.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [https://www.webhostuk.co.uk/vps-hosting.html WebHostUK LTD] - Offers Cheap yet Best UK VPS Web Hosting working on OpenVZ Platform.We offers fully Managed UK VPS with true 24/7/365 days support.All our Servers are located in UK London DC.&lt;br /&gt;
* [http://www.webhostinguk.com/vps/vps-hosting.html Web Hosting UK] - Fully managed OpenVZ VPS Hosting offered on fast and reliable and affordable servers in UK &amp;amp; European datacenter with 24x7x365 days lightning fast support.&lt;br /&gt;
* [http://www.weycrest.co.uk/vps-hosting.php Weycrest VPS] - Low Cost, Stable OpenVZ and Parallels' Virtuozzo Virtual Private Server solutions. London UK Hosted at Coreix with a choice of operating systems, and root and control panel options.&lt;br /&gt;
* [http://www.xilo.net/virtual_private_servers-vps/ XILO] - UK-based hosting with UK-based support. VPS services offered with a choice of cPanel, Webmin and other useful applications, VoIP, SIP, VPN to name a few.&lt;br /&gt;
* [http://www.zxvps.co.uk/ ZxVPS VPS Hosting] - Quality, non-oversold VPS based on the openVZ platform, using SolusVM management panel, VPS from 128mb - 2gb, cpanel, direct admin, kloxo, etc.&lt;br /&gt;
&lt;br /&gt;
== Ukraine ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://ekvia.com/ Ekvia] - VDS/VPS based on OpenVZ. Free trial 14 days. Domain registration for VDS/VPS.&lt;br /&gt;
* [http://www.gelihost.com/ Geliar Hosting Solutions] - Fast virtual dedicated servers based on OpenVZ. Geliar Hosting Solutions offering many control panels and other useful services.&lt;br /&gt;
* [http://www.hostpro.ua/ Hostpro.ua] - Full managed OpenVZ servers.&lt;br /&gt;
* [http://www.vpsfast.us/ukraine-vps VPSFast] - VPS Provider with good prices in Ukraine.&lt;br /&gt;
&lt;br /&gt;
== USA ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.a2hosting.com A2 Hosting] is your high-performance [http://a2hosting.com/openvz-vps-hosting OpenVZ VPS Hosting] provider. Design your perfect [http://a2hosting.com/vps-hosting VPS Hosting] account today! Featuring SwiftServers and SSDs with page load speeds up to 300% faster compared to standard drives.&lt;br /&gt;
* [http://www.afterburst.com Afterburst] (Previously FanaticalVPS): affordable unmetered, unmanaged VPS servers in NY.&lt;br /&gt;
* [https://www.asurahosting.com/ AsuraHosting] offers powerful, reliable, and simple OpenVZ VPS to clients. AsuraHosting has a dedicated support team, and quality hosting; Pricing starts at just $5/month!&lt;br /&gt;
* [http://beyondhosting.net BeyondHosting.net] High Performance OpenVZ Virtual Private Servers (VPS)  Tier 1 US Datacenter.&lt;br /&gt;
* [http://buyvm.net BuyVM.net] DDoS Protection, three datacenter locations, Stallion control panel. Affordable quality VPS hosting since 2010!&lt;br /&gt;
* [https://www.binarycpu.com Binary Computer Solutions] has provided OpenVZ based Virtual Private Server hosting for over 5 years.  Network outages are a thing of the past, and oversold services are never heard of here.  Built on solid technology, with infrastructure to match - Binary Computer Solutions will give you hosting you need, without the cost others ask for.  Starting at $30.00/mo.&lt;br /&gt;
* [http://www.bodhost.com/ Bodhost.com] Fast, Reliable and secure web hosting service with 24*7 free customer service.&lt;br /&gt;
* [http://www.buildyourvps.com/ BuildYourVPS.com] mix ‘n’ match your VPS; choose only the bandwidth, RAM, disk capacity, type of IP connection, level server redundancy, and the support/monitoring you want. [http://www.buildyourvps.com/ BuildYourVPS] is the 1st to offer you a highly-customized VPS solution, without making you pay for unused extra features.&lt;br /&gt;
* [https://www.budgetvm.com/openvz-linux-vps.php BudgetVM.com] Each server includes our industry-leading SLA, DDoS protection, 200Gbps networks and 7 * 24-hour customer support.&lt;br /&gt;
* [http://www.byethost.com Byethost.com] offers OpenVZ based VPS Hosting as its main VPS solution, with the hypervm panel. Centos, Debian, Fedora, OpenSuse and Ubuntu Containers are available.&lt;br /&gt;
* [http://cheaperasp.net CheaperASP.Net] provides Quality web hosting on the OpenVZ platform. You also help you get best options at [http://cheaperasp.net/godaddy-1-hosting-free-domain-promo/ affordable] cost.&lt;br /&gt;
* [http://www.chhost.net/vps.htm CH Hosting VPS Hosting] CH Hosting or chhost.net offers OpenVZ based VPS Hosting. 24/7 Support. Upgrade/Downgrade your plan as needed on-the-fly without the risk of downtime. Since 2006. Non-Oversell&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in USA from 1.88EUR/month.&lt;br /&gt;
* [http://www.cloudshards.com Cloud Shards] High Performance, reliable, stable and affordable OpenVZ Virtual Private Servers (VPS) in data centers across the USA.&lt;br /&gt;
* [https://cloudgearhosting.com CloudGear Hosting] - offers OpenVZ hosting in 4 locations across the USA. Including free DDoS Protection and free SSL with cPanel.&lt;br /&gt;
* [http://www.datacorporate.com/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [https://www.delimiter.com/storage-vps/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [https://www.cheapdomainnamesdot.com Domain Host SSL] provides Reliable web hosting with OpenVZ platform Since 2003, Located New York city, Atlanta, Los Angeles. &lt;br /&gt;
* [http://www.DubHosting.com/ DubHosting] - DubHosting started in 2004 has been providing cost effective hosting to clients world wide. Fully managed OpenVZ servers based in Europe &amp;amp; US are one of their many strong points. They can provide you with a dedicated server and install openvz allowing you to sell your own vps servers.&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
* [http://www.ethernetservers.com/ Ethernet Servers] A leading provider of OpenVZ Virtual Servers in Los Angeles, Miami and Buffalo with SolusVM.&lt;br /&gt;
* [http://www.evolucix.com/ Evolucix.com] Evolucix offers state of the art, professional, and reliable OpenVZ VPS solutions on top-notch hardware while providing quality support.&lt;br /&gt;
* [http://www.evolvedservers.com Evolvedservers.com] Openvz based vps servers. Hosted in Michigan, USA. 24/7 Support. Hosted in tier-3 and tier-4 datacenter's with multiple redundancies.&lt;br /&gt;
* [http://fastwebhost.com/vps-hosting.html Fastwebhost]: affordable cloud VPS servers using OpenVZ. &lt;br /&gt;
* [http://www.fliphost.net Fliphost.net]: Powerful, affordable instant setup VPS systems. Servers based in Phoenix Az with another location coming soon.&lt;br /&gt;
* [http://www.frontrangehosting.com Front Range Hosting]: SSD Cached KVM &amp;amp; OpenVZ VPS Hosting Prices Start at 2.00/mo, located in Colorado Springs, Colorado.&lt;br /&gt;
* [http://glesys.se GleSYS] is a hosting company specialized in serverhosting. Also offering VPS hosting mainly based on OpenVZ. GleSYS has provided access to server and Cisco hardware for developers from OpenVZ to find problem with VLAN implementation.&lt;br /&gt;
* [http://goodealhosting.com/ GOODEALHOSTING.com] Quality Hosting Solutions! Provides affordable unmanaged/managed VPS based on OpenVZ! start from $10.00, real 24/7 support.&lt;br /&gt;
* [http://gothost.net GotHost.net] Providing OpenVZ based VPS Hosting with SolusVM. All nodes are Quad Core Xeon with RAID-10 for speed and redundancy. Budget plans starting at $7.99.&lt;br /&gt;
* [http://www.greengeeks.com/ GreenGeeks Hosting] VPS Hosting. Dual Intel Xeon 64-Bit CPU's, DDR3 RAM, RAID-10 SSD Storage Arrays. 24/7 Support. cPanel/WHM + more!&lt;br /&gt;
* [http://hostarmor.com HostArmor™] - is best known for low-cost and reliable shared hosting and dedicated servers. Recently the company expanded to offer OpenVZ virtual server plans at 8 worldwide locations, five in the U.S., one in Germany, one in France, and one in the Netherlands. VPS plans start at $13.99/month.&lt;br /&gt;
* [http://www.host4geeks.com Host4Geeks] - Host4Geeks is a premium Fully Managed VPS provider with datacenters across 2 locations in US and in UK. All servers offer a free cPanel license.&lt;br /&gt;
* [http://www.host1plus.com Host1Plus] - OpenVZ based virtual servers in Chicago and Los Angeles. VPS plans start at $2.00 per month.&lt;br /&gt;
* [http://www.hostavps.com HostAVPS] - Providing Fully Managed VPS's on both the West &amp;amp; East Coast.&lt;br /&gt;
* [https://www.hostcapitol.com Host Capitol] offers fast and reliable web hosting services, including OpenVZ VPS Hosting, to clients ranging from small businesses to corporations. Located in Piscataway, New Jersey.&lt;br /&gt;
* [http://www.hostcolor.com Host Color] - OpenVZ based virtual servers hosted in a Tier 4 class data center based out of South Bend, Indiana. Juniper managed, fully-redundant network with uplinks to Level 3, Cogent and Internap.&lt;br /&gt;
* [https://www.hostgalaxy.com HostGalaxy] - OpenVZ based virtual servers. The fastest hosting in the Galaxy!&lt;br /&gt;
* [http://www.hostigation.com Hostigation] - High resource unmanage VPS hosting solutions.&lt;br /&gt;
* [http://www.hostingrails.com Hosting Rails] offers Rails-targeted OpenVZ VPS Hosting and updated Rails-ready OS images.&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [http://www.hostmist.com Host Mist] features budget OpenVZ VPS hosting from four major cities across the US.&lt;br /&gt;
* [http://www.hostrush.com HostRush] Self managed, ssd vps for business and non business. &lt;br /&gt;
* [http://www.dailyhosting.net hostoople] We offer OpenVZ VPS hosting from Dallas Texas, Starting at $29.95/month &lt;br /&gt;
* [https://hostus.us HostUS] provides unmanaged and managed OpenVZ VPS in Atlanta, Dallas and Los Angeles with custom control panel. A large variety of Linux distros are available. Enjoy 15% off with coupon VPS15OFF.&lt;br /&gt;
* [https://www.hostwinds.com Hostwinds] Affordable managed/unmanaged VPS Solutions.&lt;br /&gt;
* [http://hostsia.com Hostsia] With HOSTSIA Web services, you can get an OpenVZ VPS for only $15.00/mo. Each OpenVZ VPS includes multiple free-of-charge bonuses and offers a 99.9% uptime guarantee. You can also use our charge-free Hepsia CP, which is available with each OS – it permits you to host an unmetered number of domains and comprises heaps of handy tools, which will help you better manage your site and your VPS web hosting account.&lt;br /&gt;
* [http://www.infrenion.com./vps_hosting.html Infrenion Networks] Cheap, reliable and secure VPS hosting solutions, based on the openVZ platform. You can host any YouTube Clone scripts with enhanced support quality round the clock.&lt;br /&gt;
* [http://iniz.com/ INIZ VPS Hosting] INIZ provides affordable VPS Hosting in Los Angeles &amp;amp; New York with high resources at low prices.&lt;br /&gt;
* [https://www.interserver.net/ InterServer Web Hosting] Fast &amp;amp; Reliable VPS - 24x7 Support. 99.9% Up-time, Hosting Since 1999!.&lt;br /&gt;
* [http://www.joinvps.com JoinVPS.com] ISPmanager OpenVZ based VPS hosting. 24/7 Technical Support. Free ISPmanager control panel.&lt;br /&gt;
* [http://www.lovevps.com LoveVPS] Budget VPS provider starting at $5.99/month located in the US with Xeon nodes.&lt;br /&gt;
* [http://www.letstalkdigital.com/index.php?option=com_content&amp;amp;view=article&amp;amp;id=73&amp;amp;Itemid=65 LetsTalkDigital VPS Hosting] LetsTalkDigital.com offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from $14.99 Virtual Private Server(VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://lylix.net LYLIX] offers affordable VPS hosting with a choice of eight different Linux distributions, dedicated VPS hosting, and specializes in Asterisk/VOIP based hosting including Trixbox, AsteriskNow, Elastix, and PBX-in-a-Flash.  Popular choice for unmanaged IP-PBX services; entire infrastructure built on a High-availability (HA) network across three regional NOCs.&lt;br /&gt;
* [http://www.micfo.com Micfo.com] offers VPS hosting services for both Linux VPS hosting and Window VPS hosting on affordable price combined with world-class 24x7x365 support.&lt;br /&gt;
* [http://www.neostreams.info/neoshop/cart.php?gid=9 nEo Stream Services] Offer's Top Quality OpenVZ Servers, Starting at $18.95 per month! SolusVM Control panel , 7 day Money Back Guarantee , 24x7 Professional Support.&lt;br /&gt;
* [http://pogiweb.com/vps/ PogiWeb LLC] Instant and free setup. Includes SolusVM control panel and free level 1 support during first month.&lt;br /&gt;
* [http://www.theserverexperts.com TheServerExperts.com] TheServerExperts VPS line is the ideal solution for clients who require the control of a dedicated server matched with the affordability and simplicity of a traditional shared hosting account.&lt;br /&gt;
* [http://thenynoc.com New York NOC] affordable Linux VPS hosting out of New York and Chicago. Plans as low as $5 a month and are backed by a redundant infrastructure and 24/7 support.&lt;br /&gt;
* [http://railsplayground.com RailsPlayground.com] Ruby on Rails VPS with ready to go Rails images with the LxAdmin control panel&lt;br /&gt;
* [http://www.raidlogic.net RaidLogic.NET] RaidLogic.NET offers OpenVZ based Linux VPS out of multiple facilities across the United States, including Miami, Los Angeles, and Chicago. Starting as low as $3.95/month.&lt;br /&gt;
* [http://www.ramhost.us RAM Host] RAM Host offers OpenVZ based Linux VPS out of multiple facilities across the United States, including Atlanta, Kansas City, and Phoenix.&lt;br /&gt;
* [http://www.reconhosting.com Recon Hosting] Recon Hosting offers affordable OpenVZ VPS solutions where you get Quality Hosting at a Fraction of the price. Instant setup with the latest Operating System templates including cPanel.&lt;br /&gt;
* [http://www.rokabear.com Rokabear] Rokabear offers OpenVZ Linux VPS, Dedicated Server, and Colocation. All Hardware setup in High Availability mode including raided drives and redudnant power and network connections. With multiple upstream providers, Rokabear's connectivity is fast and reliable! Rokabear supports LAMP, Openvpn, and Asterisk configurations. VPSes start at $7.99!&lt;br /&gt;
* [https://www.rosehosting.com RoseHosting] offers OpenVZ Linux virtual servers equipped with Enterprise Grade SSD drives. All hosting plans are fully-managed with FREE 24/7 support, FREE website migration, FREE weekly backups and FREE server monitoring included.&lt;br /&gt;
* [http://www.rshosting.com/vps.html RSHosting.com] RSHosting offers the most secure, reliable and stable VPS - Virtual Private Servers based on OpenVZ architecture, powered by the most professional and qualified 24/7 lightening fast support.&lt;br /&gt;
* [http://www.servercomplete.com Server Complete, LLC] Server Complete offers OpenVZ based Linux VPS out of multiple facilities across the United States, including Atlanta, Dallas, and Chicago.&lt;br /&gt;
* [http://www.servergrove.com ServerGrove] uses OpenVZ as the main virtualization platform for its state of the art VPS hosting services.&lt;br /&gt;
* [http://serverswarm.com ServerSwarm] provides stable, affordable, high performance OpenVZ virtual private servers.&lt;br /&gt;
* [http://Sharktech.net Sharktech] provides custom OpenVZ solutions DDOS-protected up to 100Gbps.&lt;br /&gt;
* [http://www.silverrack.com/ SilverRack VPS Hosting] - SilverRack provides affordable VPS hosting using the OpenVZ platform.&lt;br /&gt;
* [http://www.soficol.com/ Soficol] Offers Enterprise OpenVZ based VPS, hosted on a clustered infrastructure and redundant network. Easy to use user management and instant setup.&lt;br /&gt;
* [http://www.spectrohost.com/ Spectro Host] - Offers performance VPS Servers running openvz. Always the most resources and never over committing OpenVZ nodes.&lt;br /&gt;
* [http://www.budgetvds.com/ BudgetVDS] - Offers VPS Servers running openvz we've been in business for 2 years now using openvz platform.&lt;br /&gt;
* [http://www.syera.net/ Syera Networks] Unmetered VPS From $18.88/M, 24/7 Support, OpenVZ/HyperVM, Instant Setup!, Free 1Gbps Upgrade with Coupon: syera1G&lt;br /&gt;
* [http://www.synapseglobal.com/voip_vps.html SynapseGlobal.com] Elastix, Trixbox, PBX in a Flash and Asterisk VPS - OpenVZ based Asterisk VOIP servers with 14 Tier 1 premium bandwidth providers.&lt;br /&gt;
* [http://www.tektonic.net TekTonic] provides VPS hosting services using both Virtuozzo and OpenVZ technology.&lt;br /&gt;
* [http://www.tigerservers.com/ TigerServers] - Provides affordable managed VPS based on OpenVZ. Servers located in Chicago, Illinois&lt;br /&gt;
* [http://www.tocici.com/ TOCICI VPS Hosting Services] Since 1995 TOCICI has offered web hosting services, with 24/7 support commitments and a strong non-oversell policy. Our purpose-built hosting infrastructure has serviced many organizations for over a decade. Offering OpenVZ VPS, data center colocation, and equipment leasing options, visit our website for prices and more details.&lt;br /&gt;
* [http://www.ultravps.com UltraVPS] UltraVPS offers managed and unmanaged OpenVZ-based VPS hosting utilizing dual CPU hardware nodes with redundant, high-performance RAID-10 storage.  UltraVPS offers VPS servers with many popular control panel options and turn-key applications.&lt;br /&gt;
* [http://www.vpsfx.com VPSFX] VPSFX.com offers OpenVZ VPS, data center colocation, and dedicated servers.&lt;br /&gt;
* [http://www.Webhost.US.Com/linuxvps.html US Web Hosting]  Webhost.US.Com offers powerful GUI based VPS management system with full OpenVZ, Xen Paravirtualization and Xen HVM support.All our Virtual Private servers are fully Managed with 99.9% uptime and 24/7 top notch support.&lt;br /&gt;
* [http://unixservice.com Unixservice/unxsVZ] Low cost OpenVZ ONLY hosting we specialize in Mail, DNS and RADIUS multiple container hosting. At the world famous Market St. San Jose, CA Silicon Valley datacenter. Ping times from your containers to local yahoo and google sites guaranteed single digit ms times. Your containers are backed up at 4 local and 2 remote locations. Contact supportgrp at unixservice dot com.&lt;br /&gt;
* [http://www.vogenic.xyz Vogenic: Cloud Services] If you are searching for an upgrade to the shared hosting service, then you should consider our OpenVZ or KVM VPS hosting services.&lt;br /&gt;
* [http://vpslink.com VPSLink.com] provides virtual private server hosting on the OpenVZ platform.&lt;br /&gt;
* [http://www.vpsspeed.com/ VPSSpeed] - VPSSpeed provides unmanaged OpenVZ based VPS hosting with over 50 OS Templates, real 24/7/365 support and fast US servers. No overselling.&lt;br /&gt;
* [http://vpsnoc.com VPSNOC] offers unmanaged vps hosting based in the USA utilizing OpenVZ hypervisor behind an in-house VPS control panel.&lt;br /&gt;
* [https://www.waveride.at/ Waveride] Waveride, an EDIS company, offers budget full gigabit OpenVZ + solusVM VPS in Austria, USA and the Netherlands&lt;br /&gt;
* [http://www.webappcabaret.com WebAppCabaret] provides VPS solutions for hosting applications. We offer OpenVZ with cPanel or Plesk for web site management; and NGASI Universal App Manager for deploying and managing JAVA and RAILS applications.&lt;br /&gt;
* [http://www.wirenine.com/vps-hosting/ WireNine.com VPS Hosting] Low cost fully managed and unmanaged OpenVZ based VPS Hosting with SAS 15k enterprise drives in high-performance RAID-10 storage.&lt;br /&gt;
* [http://www.zoidial.com/ Zoidial Hosting and VPS] - offers VPS and Virtual Dedicated Server solutions utilizing OpenVZ.  In business since 1998, Zoidial Incorporated is a small hosting provider focused on being security conscious, proactive, and offering a positive client experience.&lt;br /&gt;
* [http://zensix.com ZenSix Hosting] Cheap OpenVZ based VPS accounts with the SolusVM control panel.&lt;br /&gt;
* [http://zigothosting.com Zigot Hosting] Affordable and Reliable OpenVZ based VPS's within the SolusVM control panel.&lt;br /&gt;
* [http://www.vpsfast.us/usa-vps VPSFast] - VPS Provider with good prices in USA (Los Angeles, New Jersey, New York, Seattle, Washington, Dallas, Chicago, Atlanta, Ashburn, Miami, Piscataway).&lt;br /&gt;
* [http://www.xarixlite.com Xarix Lite] - offers OpenVZ hosting in Charlotte, SC. OpenVZ plans starting at $2.50/mo&lt;br /&gt;
* [https://www.yourlasthost.com YourLastHost] is your high-performance [https://www.yourlasthost.com/openvz-vps.php OpenVZ VPS Hosting] Provider. Get your perfect [https://www.yourlasthost.com/openvz-vps.php VPS Hosting] account today! Available in Los Angeles, Dallas, Jacksonville, USA and France, Europe.&lt;br /&gt;
&lt;br /&gt;
== Vietnam ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://appvz.com AppVZ.com] (www.appvz.com) is a leading web solution provider offering domain, hosting, reseller and VPS hosting packages from 2009. Just recently, the company has offered discount packages where customers can avail managed and un-managed VPS for only $9.5 per month.&lt;br /&gt;
&lt;br /&gt;
= Hosting providers comparison =&lt;br /&gt;
&lt;br /&gt;
It is hard to compare all virtual private server offers provided by different hosting providers.&lt;br /&gt;
Sites below can help you with it.&lt;br /&gt;
&lt;br /&gt;
* [https://www.cheapvpsservers.co.uk/ Cheap VPS Servers]&lt;br /&gt;
* [https://www.hostingmyths.com/ Hosting Myths]&lt;br /&gt;
* [https://cheapwebhosting.review/ VPS servers comparison]&lt;br /&gt;
* [https://reviewsquirrel.com/web-hosting-reviews/ Review Squirrel]&lt;br /&gt;
* [http://lowendstock.com/ Lowendstock]&lt;br /&gt;
* [https://www.websitehostingrating.com/ Best Web Hosting Services]&lt;br /&gt;
* [http://serverbear.com/compare?Sort=RAM&amp;amp;Order=asc&amp;amp;Server+Type=VPS&amp;amp;Monthly+Cost=-&amp;amp;HDD=-&amp;amp;RAM=-&amp;amp;Virtualization=OpenVZ Serverbear]&lt;br /&gt;
* [https://www.comparethehosts.com/vps-web-hosting.htm VPS Web Hosting Reviews]&lt;br /&gt;
* [https://thishosting.rocks/best-cheap-managed-vps/ ThisHosting.Rocks - Managed VPS Providers Comparison]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
http://vpscomp.com&lt;br /&gt;
http://reviewsignal.com/webhosting/compare/&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= See also =&lt;br /&gt;
&lt;br /&gt;
* [[Partners]]&lt;br /&gt;
* [[Download mirrors]]&lt;br /&gt;
* [[VPS vs Dedicated]]&lt;/div&gt;</summary>
		<author><name>Vvs</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.openvz.org/index.php?title=Hosting_providers&amp;diff=23318</id>
		<title>Hosting providers</title>
		<link rel="alternate" type="text/html" href="https://wiki.openvz.org/index.php?title=Hosting_providers&amp;diff=23318"/>
		<updated>2020-06-05T05:13:07Z</updated>

		<summary type="html">&lt;p&gt;Vvs: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''OpenVZ is free and open implementation of Virtuozzo containers for Linux.&lt;br /&gt;
Don't forget to keep [[testimonials|testimonial]] and [[donate]] to OpenVZ.'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
OpenVZ makes for a great hosting platform for VPS hosting. The providers below offer VPS services using OpenVZ.&lt;br /&gt;
&lt;br /&gt;
[[File:UsageLocation.svg]]&lt;br /&gt;
&lt;br /&gt;
= OpenVZ hosting providers =&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- @@@@@@@@@@@@@@@@@@@@@@@&lt;br /&gt;
&lt;br /&gt;
IF YOU EDIT THIS PAGE,  PLEASE OBEY TO THE FOLLOWING RULES:&lt;br /&gt;
&lt;br /&gt;
1. Keep your record on ONE line&lt;br /&gt;
2. Keep the list of providers alphabetically sorted, DO NOT insert your record on top.&lt;br /&gt;
3. Keep the list of countries alphabetically sorted as well.&lt;br /&gt;
&lt;br /&gt;
     @@@@@@@@@@@@@@@@@@@@@@@@ --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Andorra ==&lt;br /&gt;
* [https://www.actiu.net/pro/ Actiu informatica] amb servidors dins i fora del principat.&lt;br /&gt;
&lt;br /&gt;
== Argentina ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.fulltech.com.ar/ Full Tech Solutions] Specializes in the virtualization of OpenVZ &amp;amp; Virtuozzo containers, installed in the Full Tech Solutions Data Center located in Villa Elisa, Entre Rios Argentina.  It also offers services hosted in the United States, Netherlands and Germany&lt;br /&gt;
* [http://www.g2khosting.com/ G2K Hosting] offer OpenVZ containers with high level hardware technology from 25 US with Control Panel, various Linux Dists and full support.&lt;br /&gt;
* [https://hostingplus.com.ar/ HostingPlus Argentina] provide OpenVZ containers at our own datacenter in South America with triple internet provider. Starting from  us20/month&lt;br /&gt;
* [https://ibumu.com/ Ibumu] Best containers for wordpress starting from $5.5.&lt;br /&gt;
* [http://www.ihserver.net/ IHServer] Specialized virtualization on OpenVZ containers at Gigared datacenter. We have in Argentina one of the better fiber connection to the US, but also provides services from LSTN in Texas.&lt;br /&gt;
* [https://www.infranetworking.com.ar/ Infranetworking] All our Cloud VPS container solutions for Argentine customers are powered by the all mighty OpenVZ virtualization software.&lt;br /&gt;
* [https://www.neolo.com/ Neolo] provide OpenVZ containers at our own datacenter in South America with double internet provider. Choose your Linux OS and apps. Full support.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [http://www.wiredhosting.com.ar/ WiredHosting] offer XEN and OpenVZ containers with SSD drives, cloudflare security and weekly backups to protect your information. Phone and Helpdesk support. &lt;br /&gt;
&lt;br /&gt;
== Australia == &lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.auhost4u.com/ AUHost4u] - VPS Solutions provided from our D.C. in Sydney.&lt;br /&gt;
* [https://www.conetix.com.au/ Conetix Hosting] Specialising in business grade, fully managed Virtuozzo containers with Virtuzzo Cloud Storage. 100% Australian owned and operated. Brisbane based DC with Enterprise Dell servers.&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides self-managed OpenVZ based SSD VPS located at Equinix SY3 in Sydney, one of the best and well-connected datacenters in the region.&lt;br /&gt;
* [http://www.vpsfast.us/australia-cloud-server VPSFast] - VPS Provider with good prices in Australia.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Austria ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
* [https://kapper.net/ kapper.net] kapper.net offers OpenVZ and Virtuozzo (and other HyperVisors) based server-solutions with kind support and 24x7 maintenance.&lt;br /&gt;
* [https://mdhost.eu/vserver.php MDHost.eu] New Hosting Provider with nice Prices and many Server locations. Austria, Germany, France and more.&lt;br /&gt;
* [https://www.snb.at/ SNB] offers OpenVZ containers and support's also existing vm's in customers environment&lt;br /&gt;
* [https://www.waveride.at/ Waveride] Waveride, an EDIS company, offers budget full gigabit OpenVZ + solusVM VPS in Austria, USA and the Netherlands&lt;br /&gt;
* [http://www.vpsfast.us/austria-cloud-server VPSFast] - VPS Provider with good prices in Austria.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Brazil ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.datacorporate.com.br/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [http://www.globalmedia.com.br/ GlobalMedia] We offers OpenVZ containers hosted on a very fast network with fast setup. Ubuntu, Debian, CentOS.&lt;br /&gt;
* [http://www.host1plus.com.br/ Host1Plus] Servers hosted in São Paulo. We offering reliable and secure OpenVZ VPS Servers with 99.99% up-time, starting from $5.00 per month.&lt;br /&gt;
* [http://www.ipdeck.net/ IPDECK] VPS Linux server from R$15,00/month! Fully customizable according to your needs.&lt;br /&gt;
* [https://www.quantivehost.com.br/ QuantiveHost] VPS Linux with 99.99% uptime. Prices starting from R$ 29,35.&lt;br /&gt;
* [https://www.elevahost.com.br/ Eleva host] Server hosted in Brazil. The best support.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [https://www.ferenz.com.br/ Ferenz Networks] VPS Linux with best support. Prices starting from R$ 29,90.&lt;br /&gt;
&lt;br /&gt;
== Bulgaria ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.cloudhostinghub.com Offshore VPS Hsoting] CloudHostingHub.com is an [https://www.cloudhostinghub.com Cloud Offshore VPS Hosting] located in Buglaria. They provide both OpenVZ and KVM virtualization. CloudHostingHub.com is known for the high privacy protection , performance and stability.&lt;br /&gt;
* [https://www.cyberhour.com CyberHour.com] CyberHour.com is an [https://www.cyberhour.com offshore VPS hosting] provider located in Europe. The provide blazing fast servers and premium Bandwidth of 200Mbps. With high privacy protection.&lt;br /&gt;
* [https://www.linuxssdvps.com Bulgaria VPS] Linux SSD VPS is an [https://www.linuxssdvps.com offshore VPS hosting] provider located in Sofia, Bulgaria. Privacy is very respected and anonymous registrations are allowed, as well as payments via Bitcoin / PayPal.&lt;br /&gt;
* [http://www.webuzo.net Bulgaria VPS] Webuzo Network is an offshore SSD VPS hosting provider located in Bulgaria. Privacy is very respected and anonymous registrations are allowed, as well as payments via Bitcoin / PayPal.&lt;br /&gt;
* [https://vpsbg.eu/en Bulgaria VPS] VPSBG.eu is an offshore SSD VPS hosting provider located in Sofia, Bulgaria. Privacy is very respected and anonymous registrations are allowed, as well as payments via Bitcoin.&lt;br /&gt;
* [http://www.bul.net/ Bul.net] Provides OpenVZ based VPS, perfect user/VPS management via [http://ispsystem.com VDSManager]. Instant creation after online payment. Debian/Ubuntu/CentOS with ISPManager Control panel. Optimal price policy.&lt;br /&gt;
* [http://www.cointech.eu/vps-hosting/ CoInTech] provides OpenVZ based VPS containers, free webmin managment. Containers can be CentOS, Slackware, Ubuntu, custom or our special [http://www.mandriva.com Mandriva Linux] container with own [http://mandriva.cointech.net repository].&lt;br /&gt;
* [http://www.rax.bg/ RAX.bg] Offers OpenVZ based VPS, hosted on a clustered infrastructure and redundant network. Easy to use user management, Instant setup, CentOS (OS).&lt;br /&gt;
* [http://www.jump.bg/ Jump.bg] Provides OpenVZ VPS servers hosted on a redundant network which provides a very easy to manage platform for all clients which gain instant access to their OS ( Ubuntu, CentOS , Debian etc ... )&lt;br /&gt;
* [https://www.fitvps.com/ FitVPS.com] Offers affordable and reliable OpenVZ based VPS in Varna, Bulgaria. Own data center, own multihomed network, with SLA. Instant automatic setup, SolusVM control panel.&lt;br /&gt;
* [http://www.qhoster.com/ QHoster.com] Instant activation OpenVZ VPS in UK, USA, Germany, France and Switzerland. Both 32/64 bit OpenVZ OS VPS templates : CentOS 5/6, Debian 6/7, Ubuntu 12/13.&lt;br /&gt;
* [https://www.verdina.net Verdina.NET] Verdina.net offers dedicated hosting services, provided by powerful dell hardware. Servers are located in Telepoint Datacenter, a Tier 3 DC located in Sofia, Bulgaria.&lt;br /&gt;
* [https://www.vps.ag/ VPS.AG] Affordable and reliable OpenVZ VPS based in Sofia, Bulgaria. Instant setup and 24/7 support.&lt;br /&gt;
* [http://www.vpsfast.us/bulgaria-vps VPSFast] - VPS Provider with good prices in Bulgaria.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Canada ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://4goodhosting.com/linux-vps-hosting 4GooodHosting] - Canadian OpenVZ VPS Servers, Starting from  $18.99/month SSD,. Canada VPS hosting in three different Canadian Data Centers with nightly backups.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [https://whc.ca/canadian-cloud-servers Web Hosting Canada Cloud Servers] - Powerful Cloud servers powered by OpenVZ and located in Canadian datacenters, with fast RAID-10 storage, fully managed with cPanel.&lt;br /&gt;
* [http://compevo.com compevo Clustered VPS Server Hosting Provider] - We offer clustered VPS Servers to avoid downtime and dataloss. Our network and service is second to none and is used by businesses around the world.&lt;br /&gt;
* [http://www.datacorporate.ca/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [https://www.delimiter.com/storage-vps/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [https://www.miditech.com/ MidiTech Hosting Canada] VPS hosting offered by MidiTech Canada are powered by VMware, . Fully Managed VPS with control panels&lt;br /&gt;
* [http://www.gotekky.com Gotekky Cloud VPS Hosting] High quality Cloud VPS packages powered by our own infrastructure and network in Toronto. Scalable from our $5/mo plan all the way to your own dedicated cloud server. Based on OpenVZ and our own proprietary panel.&lt;br /&gt;
* [https://gigebox.com GIGEBOX.COM] GIGEBOX are expert providers of secure business hosting services, we operate high-performance professional servers, specially designed for businesses, powered by the Intel(R) Xeon(R) Hexa-Core CPU Processors and 128 GB DDR3 minimum RAM. Enjoy high availability, performance and security for multiple uses.&lt;br /&gt;
* [http://www.letstalkdigital.com/index.php?option=com_content&amp;amp;view=article&amp;amp;id=73&amp;amp;Itemid=65 LetsTalkDigital VPS Hosting] LetsTalkDigital.com offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from $14.99. Virtual Private Server (VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://secure.media-hosts.com/link.php?id=7 Media-Hosts.com] Provides Quality and Scalable OpenVZ based Virtual Private Servers. 100% network uptime guaranteed. Located in Montreal Quebec with 5 Tier1 upstream providers.&lt;br /&gt;
* [http://www.openvz.ca OpenVZ.ca] Canadian Budget VPS Servers on OpenVZ Platform. &lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [http://protoserver.com ProtoServer] Advanced VPS Hosting from $4.95/month. Many pre-installed VPS Templates available (CMS, E-commerce, Web development, Online community, Media streaming, etc.) No bundles or service plans - mix VPS resources as needed and change VPS configuration anytime. Also offering DNS Hosting, E-mail hosting, Domains Registration.&lt;br /&gt;
* [http://www.vistapages.com/vps Vistapages VPS] - IBM &amp;amp; Dell Hardware. MCI/Verizon Backbone. Distros: Centos, Fedora, Debian &amp;amp; more. Full management available. Located in Toronto.&lt;br /&gt;
* [http://vpsville.ca/ VPSVille] - Good network. Good CPU. Good choice of distros: Centos, Fedora, Debian, Ubuntu, Slackware, Gentoo, OpenSUSE, CERN. My favorite OpenVZ provider. [mailto:jak@isp2dial.com John Kelly]&lt;br /&gt;
* [http://solib.ca/services-offerts/hebergement-haute-vitesse/serveurs-vps/ SOLIB Logiciel Libre Québec] Our company offers DDoS protected server solutions including OpenVZ containers. Very high availability and reliability, all our VPS are located in Quebec, Canada.&lt;br /&gt;
* [https://www.host-stage.net/linux-vps/ HostStage - Linux VPS] - Simple, Reliable OpenVZ VPS packed with 1 GBPS port speed, RAID 10 SSD, Intel Xeon CPU, DDoS Protection from $4.95/month&lt;br /&gt;
* [https://undergroundprivate.com/russiaoffshorevps.html  UndergroundPrivate.com] - OpenVZ with highly privacy, offshore , DMCA ignored , high confidence, SolusVM and cPanel, managed and non managed service.&lt;br /&gt;
* [http://www.vpsfast.us/canada-vps VPSFast] - VPS Provider with good prices in Canada.&lt;br /&gt;
* [https://websavers.ca/canadian-vps-hosting Websavers Inc in Halifax] - VZ containers priced by the resource. Resource changes entirely client-level.&lt;br /&gt;
* [https://www.yoorshop.fr/hosting-ssd-vps-usa-canada.php YOORshop SAS] - High performance NVMe SSD Linux VPS in Canada, daily backup included. Starting from €7,49 /month&lt;br /&gt;
&lt;br /&gt;
== Colombia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.datacorporate.co/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [http://www.soficol.com/ Soficol] Offers Enterprise OpenVZ based VPS, hosted on a clustered infrastructure and redundant network. Easy to use user management and instant setup.&lt;br /&gt;
* [https://www.hostingplus.com.co/ Hosting Plus Colombia] provide OpenVZ containers at our own datacenter in South America with triple internet provider. Starting from  us20/month&lt;br /&gt;
* [https://ibumu.com/ Ibumu] Best containers for wordpress starting from $5.5.&lt;br /&gt;
&lt;br /&gt;
== Czech Republic ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://4smart.cz 4Smart.cz] - prepaid, you are charged only by the system resources you use, therefore you can run a VPS for as little as  1 EUR a month if your vps is not resource hungry. Even if you pay  0,50 EUR  month, you still have 3 GB of RAM and 8 cores available to you VPS.&lt;br /&gt;
* [http://www.freecloud.cz FREECLOUD.CZ] - Free OpenVZ VPS Server - own IP, 800Mhz CPU, 512MB RAM, 50Mbits LAN, 10GB HDD, 100GB Traffic - Debian, Ubuntu, Gentoo, Slackware, Fedora, Centos&lt;br /&gt;
* [http://www.hukot.cz Hukot.cz] - OpenVZ VPS Servers starting from 2.92 €, XEON, 1 Gbps uplink, unlimited traffic. Debian, Ubuntu, CentOS, Scientific, SuSe, Fedora, Elastix.&lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [http://www.ultimatehosting.eu UltimateHosting.eu] - OpenVZ VPS Servers starting from $8 with custom configuration - up to 100 GB HDD, 2048 MB RAM, 2 GHz CPU, and unlimited traffic.&lt;br /&gt;
* [http://www.mujhost.net MUJHOST.NET] - OpenVZ VPS Servers starting from 160 Kč, 100Mbps / 1 Gbps uplink, unlimited traffic. Debian, Ubuntu, CentOS ...&lt;br /&gt;
&lt;br /&gt;
== Chile ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.1h.cl/ 1h.cl Vps - Chile] - VPS High Performance with OpenVZ in Chile&lt;br /&gt;
* [http://www.1hosting.cl/ 1hosting Virtual servers - Chile] - VPS Professional with OpenVZ&lt;br /&gt;
* [http://www.dch.cl/ DCH] - DCH.cl Hosting Chile - High Performance VPS Servers with OpenVZ &lt;br /&gt;
* [https://www.dominioweb.net/ Dominioweb] - Premium Hosting and domain registration&lt;br /&gt;
* [http://ecohosting.cl/ EcoHosting.cl Santiago - Chile] - VPS with OpenVZ in Chile&lt;br /&gt;
* [http://www.host.cl/ Host.cl] - Cloud Computing&lt;br /&gt;
* [https://www.hostingplus.cl/ HostingPlus Internet Limitada] - High Performance Vps provider in Chile&lt;br /&gt;
* [https://www.hostname.cl/ Hostname Ltda] - VPS Hosting with Datacenter in Chile&lt;br /&gt;
* [https://www.inc.cl/ INC Internet Limitada] - VPS Hosting provider in Chile&lt;br /&gt;
&lt;br /&gt;
== Denmark ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.vpsfast.us/denmark-cloud-server VPSFast] - VPS Provider with good prices in Denmark.&lt;br /&gt;
&lt;br /&gt;
== Ecuador ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.dedi.space/ DediSpace Telecom] - VPS Servers in Ecuador - USA, France, Germany, Ecuador Datacenter.&lt;br /&gt;
&lt;br /&gt;
== France ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.BargainVPS.co.uk/ BargainVPS] - UK / US / EU Instant setup VPS - We have some great Linux &amp;amp; Windows Bargain VPS packages on offer for you here all available Fully Managed.&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in France from 1.88EUR/month.&lt;br /&gt;
* [http://www.fixweb.com Fixweb] Great managed hosting provider with strong anti ddos solution - openvz only - leader in managed openvz solution with horizontal scaling and high availability&lt;br /&gt;
* [http://www.Freaksol.com/ FreaKs VPS Hosting] Self reliant hosted on independent networks &amp;amp; DC low ping,No restrictions on file types,Unlimited resources,high ram servers &lt;br /&gt;
* [https://galaxyhostplus.com/ovz GalaxyHostPlus] Cheap VPS Hosting based in Roubaix with new 2016 line starts from $2/Month &lt;br /&gt;
* [http://www.harmony-hosting.com Harmony-Hosting] A high performance VPS hosting - The leader in France&lt;br /&gt;
* [https://www.delimiter.com/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [http://www.lws.fr/serveur_dedie_linux.php LWS - Linux VPS ] - Linux VPS Hosting - Only 9.99€/month, Affordable and Secure OpenVZ VPS Servers with 99.99% up-time, web hosting control panel Included. French datacenter&lt;br /&gt;
* [http://www.ovh.co.uk/vps/ OVH VPS] linux from 3€/month, [http://www.ovh.co.uk/vps/vps-cloud.xml windows] from 12€/month.&lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [https://VPSZ.FR VPSZ] VPS Hosting in France. Starting from 2,99€, Unlimited traffic.&lt;br /&gt;
* [http://www.1euro-hosting.eu BEST EU VPS - 1€ Hosting] - Providing reliable and secure OpenVZ VPS Servers with 99.99% up-time, starting from 8€&lt;br /&gt;
* [https://www.shape.host/linux-vps/ Shape Host - Linux VPS] - OpenVZ virtual servers, Instant Linux VPS&lt;br /&gt;
* [https://undergroundprivate.com/russiaoffshorevps.html  UndergroundPrivate.com] - OpenVZ with highly privacy, offshore , DMCA ignored , high confidence, SolusVM and cPanel, managed and non managed service.&lt;br /&gt;
* [https://www.host-stage.net/linux-vps/ HostStage - Linux VPS] - Simple, Reliable OpenVZ VPS packed with 1 GBPS port speed, RAID 10 SSD, Intel Xeon CPU from $4.95/month&lt;br /&gt;
* [https://www.yoorshop.hosting/hosting-vps-ssd-europe.php YOORshop SAS] - High performance NVMe SSD OpenVZ 7 VPS within 13 countries in Europe, Canada and Singapore. Daily backup included. From €7,49 /month&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Germany ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://afterburst.com Afterburst (Previously FanaticalVPS)]: affordable unmetered, unmanaged VPS servers in Germany.&lt;br /&gt;
* [http://www.b2b-hosting.de/vps/ B2B Hosting]: Professional virtual servers for business applications. Performance and reliability at a fair price. Made with OpenVZ.&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in Germany from 1.88EUR/month.&lt;br /&gt;
* [https://www.delimiter.com/dedicated-servers/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [https://galaxyhostplus.com/ovz GalaxyHostPlus] Cheap VPS Hosting based in Frankfurt with new 2016 line starts from  $2/Month&lt;br /&gt;
* [http://hostmist.com/openvz-vps-germany.html Host Mist]: features budget OpenVZ VPS hosting in Germany.&lt;br /&gt;
* [http://www.host1plus.com/ Host1Plus] Servers based in Frankfurt am Main. Offering reliable OpenVZ based VPS servers in Germany starting from $2.50 per month.&lt;br /&gt;
* [http://www.hostingjuice.com/ HostingJuice] The Superioum VPS and Web Hosting provider, low prices - Premium packages.&lt;br /&gt;
* [http://www.ingate.de/managed-server.html Ingate] offers managed servers with openVZ virtualization. located in germany, great support.&lt;br /&gt;
* [http://linevast.de/angebote/linux-openvz-vserver-mieten.html Linevast] Reliable OpenVZ based VPS with fast support, located in germany&lt;br /&gt;
* [https://cp.myvirtualserver.com/?affid=42 MyVirtualServer]: Cheap VPS (OpenVZ/KVM, 5TB Traffic, 10Gigabit), servers located in Frankfurt (best ping, starting 1.99€) good support (en/de) //New Design!&lt;br /&gt;
* [https://www.nogics.com Nogics Technologies]: Affordable VPS based in Germany. Starts from $5.96/mo.&lt;br /&gt;
* [http://www.plambee.de/vserver.php Plambee.de Webhosting]: Powerfull OpenVZ based VPS servers at low cost with hosting in Germany&lt;br /&gt;
* [https://rackset.com/ Rackset Hosting] Managed Dedicated / VPS and Website Hosting services since 2004.&lt;br /&gt;
* [http://www.serverbiz.de/vserver Serverbiz] Powerful VPS at very low prices.&lt;br /&gt;
* [http://www.synapseglobal.com/voip_vps.html SynapseGlobal.com] Elastix, Trixbox, PBX in a Flash and Asterisk VPS - OpenVZ based Asterisk VOIP servers located in Munich Germany.&lt;br /&gt;
* [http://www.vStarVPS.com vStarVPS]: Reliable VPS Hosting at lowest prices, with 99.9% uptime, Premium Unmetered Bandwidth and Custom HDD/RAM of your choice. Instant and FREE Setup. RapidLeech Allowed.&lt;br /&gt;
* [http://whynotavps.com WhyNOTaVPS]: Instant activated VPS SERVERS!!&lt;br /&gt;
* [http://squote.de/index.php?ref=1421485383 SQuote]: SQuote VPS Hosting and more. VPS 1 Core, 1.024MB RAM, 512MB RAM SWAP, 50 GB HDD, 1x IPv4. 3,89EUR/month. For the best VPS SQuote.de&lt;br /&gt;
* [http://www.vpsfast.us/germany-vps VPSFast] - VPS Provider with good prices in Germany.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Guatemala ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.globalnetcafe.com/gnc/menu/hospedaje.htm Global Net Cafe]: Servicios de hospedaje, reseller, vps, colocacion y servidores. Incluyendo OpenVZ.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Hong Kong ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [https://hostus.us HostUS] features unmanaged and managed OpenVZ VPS in Hong Kong as well as 3 USA locations. Unparalleled connectivity to the Asia Pacific. Enjoy 15% off with coupon VPS15OFF.&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides self-managed OpenVZ based SSD VPS in Hong Kong, located at the Pacnet datacenter. &lt;br /&gt;
* [http://vps.timway.com/linux_vps.html Timway VPS Hosting] - Quality, non-oversold hosting provider focused on being security conscious and offering a positive client experience.   Centos, Debian, Fedora, OpenSuse and Ubuntu Containers are available.&lt;br /&gt;
* [http://www.vpsfast.us/hong-kong-cloud-server VPSFast] - VPS Provider with good prices in Hong Kong.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Hungary ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://elin.hu/index.php?menu=8&amp;amp;nyelv=hu&amp;amp;cim=Virtualis-szerver Virtual server] OpenVZ server: 2xX5650 Intel Xeon, 32GB RAM, 15.000rpm SAS disks, 100Mbit/s, unlimited bandwith.&lt;br /&gt;
* [https://www.ivirtual.co/vps-hosting/ iVirtual.co ] OpenVZ Master Server: 2x Intel Xeon @ 3.0GHZ, 64 GB ECC Ram, 15k RPM SAS HDD's, 1Gbit/s Network, Unlimited bandwith.&lt;br /&gt;
&lt;br /&gt;
== Iceland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
&lt;br /&gt;
== Ireland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== India ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://cochinwebhost.in/budget-vps-hosting/ Low Cost VPS Hosting] Fast SSD VPS Server for Hosting Solutions at budget prices with 24x7 Technical Support.&lt;br /&gt;
&lt;br /&gt;
* [http://www.datacorporate.in/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
&lt;br /&gt;
*[http://www.fastwebhost.in/vps-hosting.html fastwebhost VPS Hosting] VPS hosting offered by fastwebhost are powered by ''VPS hosting, virtual server hosting and Linux VPS hosting services''. Fully Managed VPS with control panels.&lt;br /&gt;
&lt;br /&gt;
* [http://www.Freaksol.com/ Freaksol VPS Hosting] Self reliant hosted on independent networks &amp;amp; DC low ping to India,No restrictions on file types,Unlimited resources,high ram servers&lt;br /&gt;
&lt;br /&gt;
* [https://www.geniushost.in Genius Host] Fully managed [https://www.geniushost.in SSD Web Hosting] offered by Genius Host are powered by ''OpenVZ'' With LiteSpeed Web Server &amp;amp; Mariadb.&lt;br /&gt;
&lt;br /&gt;
* [http://www.hioxindia.com/virtual-private-server.php VPS Hosting] Reliable and quality VPS Virtual Private Server Hosting&lt;br /&gt;
&lt;br /&gt;
* [https://www.hostnamaste.com HostNamaste] is your high-performance [https://www.hostnamaste.com/openvz-vps.php OpenVZ VPS Hosting] Provider. Get your perfect [https://www.hostnamaste.com/openvz-vps.php VPS Hosting] account today! Available in [https://www.hostnamaste.com/datacenter-losangeles.php Los Angeles], [https://www.hostnamaste.com/datacenter-dallas.php Dallas], [https://www.hostnamaste.com/datacenter-jacksonville.php Jacksonville], USA,  [https://www.hostnamaste.com/datacenter-france.php France], Europe, [https://www.hostnamaste.com/datacenter-mumbai-pune.php Mumbai], India and [https://www.hostnamaste.com/openvz-vps-moscow-russia.php Moscow], Russia.&lt;br /&gt;
&lt;br /&gt;
* [https://www.hostsoch.in/windows-hosting.html HostSoch Windows Hosting] Windows hosting offered by HostSoch are powered by ''Windows 2012, ASP.NET, MVC, IIS, PHP and More''. 99.9% Uptime, 24/7 Dedicated support guaranteed. &lt;br /&gt;
&lt;br /&gt;
* [https://www.miditech.co.in/ MidiTech VPS Hosting] VPS hosting offered by MidiTech are powered by ''VMware, ''. Fully Managed VPS with control panels. &lt;br /&gt;
&lt;br /&gt;
* [http://www.milesweb.com/vps-hosting.php Milesweb VPS Hosting] VPS hosting offered by Milesweb are powered by ''VMware, OpenVZ''. Fully Managed VPS with control panels. &lt;br /&gt;
&lt;br /&gt;
* [https://www.nogics.com/web/vps-hosting/ Nogics Technologies] Instant provisioning of VPS, VPS starts from $5.96/mo. 30+ OS templates.&lt;br /&gt;
&lt;br /&gt;
* [http://overlineindia.net/vpshosting-p-62.html Overline India VPS Hosting] Fully managed cPanel Installed VPS Hosting with 24x7x365 Live Chat Tech support, powered by OpenVZ&lt;br /&gt;
&lt;br /&gt;
* [http://www.prohosterz.com/linux-vps.php ProHosterZ VPS Hosting] Reliable and quality Virtual Dedicated Servers | Virtual Private Servers | XEN VPS | OpenVZ VPS | Virtual Hosting&lt;br /&gt;
&lt;br /&gt;
* [http://pve.proxmox.com/wiki/User:Apmuthu Ap.Muthu] sponsored by [http://www.gnuacademy.org GNUAcademy], [http://www.planettel.com.sg PlaNetTel] and [http://www.sacollege.net S A College] creates OpenVZ Templates for the Open Source Community and provides hosting in datacenters of clients choice or on site.&lt;br /&gt;
&lt;br /&gt;
* [http://www.servers.co.in/vps/vps_hosting.php Server Web Hosting] Offers Fully Managed OpenVZ VPS Web hosting in India/US/UK at affordable and cheap rates with best hardware quality and customer service 24/7/365 days&lt;br /&gt;
&lt;br /&gt;
* [http://vpsbeach.com VpsBeach Managed Hosting] Fully managed cPanel Installed VPS Hosting with 24x7x365 Live Chat Tech support, powered by OpenVZ&lt;br /&gt;
&lt;br /&gt;
* [http://www.vpsfast.us/india-vps VPSFast] - VPS Provider with good prices in India.&lt;br /&gt;
&lt;br /&gt;
* [http://www.vpshostingindia.net/ VPS Hosting India, Fully Managed Server] A Committed Fully Managed VPS Server for Hosting solution in India, Complete Technical Support assistance with commitment of fast, clustered and most supportive DataCenters.&lt;br /&gt;
* [http://touchstone.hosting/ Touchstone Solutions Private Limited] High-performance Enterprise VPS Hosting in India. One of the highest performing VPS Servers available with cPanel Installed.&lt;br /&gt;
* [http://www.hostitsmart.com/ Host IT Smart] - One of the best VPS Hosting Provider in India with 24X7X365 Customer support.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Indonesia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.herza.id/vps-murah/ Herza.ID] Low Cost OpenVZ Virtual Server, starting from IDR 50.000 / Month with RAID 10 SSD, Unlimited Bandwidth with 1 Gbps IIX &amp;amp; OIXP Connection, and 24/7 Technical Support.&lt;br /&gt;
&lt;br /&gt;
== Iran==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.ehost.ir EHost.ir] - OpenVZ Servers , DUAL XEON Cpus , 12 Gb Ram , 100Mbit Dedicated Connection , SAS HardDisk&lt;br /&gt;
* [http://www.vpsfa.com VPSFa.com] - OpenVZ Servers , DUAL XEON Cpus -  , 24Gb Ram , 1000Mbit Dedicated Connection , SAS HardDisk&lt;br /&gt;
* [https://webramz.com Webramz Host] - With more than 15 years experience in Managed Hosting, Webramz was first vps provider in Iran which used to setup OpenVZ servers. Nowadays we provide wide range of services including CloudLinux based OpenVZ and Managed Vps Servers.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Italy ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
* [http://www.hosting-italia.net hosting italia] - OpenVZ Servers and panel enduser Virtualizor Intel® Core™ i7-920 Quad-Core 48 GB DDR3 RAM - Guaranteed Bandwidth 200 Mbit/s&lt;br /&gt;
* [http://www.vpsfast.us/italy-vps VPSFast] - VPS Provider with good prices in Italy.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Liechtenstein ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
&lt;br /&gt;
== Lithuania ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.cloudlix.com/ CloudLix.com] - Managed and unmanaged OpenVZ virtual servers based on 2.6.32 kernel. Up to 20GHz (Intel SandyBridge) CPU and 10GB RAM. Located in Vilnius and Siauliai.&lt;br /&gt;
* [http://www.databank.lt/ databank.lt] - high-quality professional OpenVZ hosting with cloud computing solutions.&lt;br /&gt;
* [https://www.hostens.com Hostens] - Fast and reliable OpenVZ servers in Lithuania.&lt;br /&gt;
* [https://www.lavavps.lt/ lavavps.lt] - Professional high-quality OpenVZ containers (VPS servers) affordable for everyone. Powerful control panel for VPS management.&lt;br /&gt;
* [https://monovm.com/ monovm.com] - High Quality VPS Hosting Provider&lt;br /&gt;
* [http://www.serveriai.lt/ Serveriai.lt] - Affordable OpenVZ containers on quality HP hardware. Wide choice of virtual dedicated servers up to 8 CPU cores and 8 GB RAM. Full management available. Located in Vilnius.&lt;br /&gt;
* [https://www.time4vps.com/?affid=1359 Time4VPS] - Powerful cloud technology based infrastructure will let you build custom virtual machine and pay only for what you really need. Located in Vilnius city.(0.99€/month(2Yr) 512mbRAM, 1TB Traffic// 4.5€/month(2Yr) StorageVps, 1TB, 10TB Traffic)&lt;br /&gt;
* [https://www.vpsnet.lt/en/ VPSnet.lt] - Powerful and high quality servers for a competitive price in Lithuania (Eastern Europe).&lt;br /&gt;
* [http://www.vpsfast.us/lithuania-vps VPSFast] - VPS Provider with good prices in Lithuania.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Latvia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.altnet.lv/ Altnet] - Hosting and colocation services. Any flawor, you name it. &lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
&lt;br /&gt;
* [http://www.vpsfast.us/latvia-vps VPSFast] - VPS Provider with good prices in Latvia.&lt;br /&gt;
&lt;br /&gt;
== Luxembourg ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.vpsfast.us/luxembourg-vps VPSFast] - VPS Provider with good prices in Luxembourg.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Malaysia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.cubiex.com/ Cubiex] - Malaysia Affordable Web Hosting and Domain Name. Affordable Linux VPS Hosting in Malaysia. OpenVZ based, Quad Core Xeon node. cPanel/WHM and DirectAdmin also available.&lt;br /&gt;
* [https://controlvm.com ControlVM] ControlVM Sdn. Bhd. offering OpenVZ VPS in Singapore, Malaysia, USA and Germany.&lt;br /&gt;
* [https://www.yoorshop.fr/hosting-ssd-vps-singapore-asia.php YOORshop SAS] - High performance SSD Linux VPS In Singapore with daily backup included. Starting from €7,49 /month&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Malta ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.a6it.com/ A6iT] - Stable, quality managed OpenVZ VPSs based in Malta.  Redundant network.&lt;br /&gt;
&lt;br /&gt;
== Morocco ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.belsemtech.com/ BelsemTech.CoM] BelsemTech SARL offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from 300 DH. Virtual Private Server (VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://www.hostoweb.com/ HosToWeb] is the only company providing VPS hosting in Morocco Data Center.&lt;br /&gt;
* [http://www.adk-media.com/ ADK Media] provides affordable managed and unmanaged virtual servers based on OpenVZ, Xen Paravirtualization and Xen HVM platforms. 24/7 Technical Support. Distros: Centos, Fedora, Debian, Ubuntu and more.&lt;br /&gt;
* [http://www.naja7host.com/ Naja7Host.CoM] The Naja7host SARL provides affordable VPS hosting using the OpenVZ platform. Running on Full Quality Nodes of up to 8 CPU and 16 GB RAM. . All VPS's come with Real 24/7/365  Technical Support and cPanel free (if option selected  ). Multiple choice of OS 32/64Bits (Centos, fedora, ubuntu, debian .ect ...)&lt;br /&gt;
* [http://www.lehoster.com/ Le Hoster] offers affordable Virtual Private Servers using the OpenVZ and KVM platform. Backed with our amazing customer support.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Netherlands ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.avanpad.com/ Avanpad] offers OpenVZ VPS hosting with 24\7 online support. Customer can request different control panels or templates for installation on his VPS.&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in Netherlands from 1.88EUR/month.&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
* [http://www.Freaksol.com/ FreaKs VPS Hosting] Self reliant hosted on independent networks &amp;amp; DC low ping around the world,No restrictions on file types,Unlimited resources,high ram servers&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [http://www.HostSailor.com/ HostSailor] Number 1 Netherlands Provider HostSailor provides affordable &amp;amp; high quality services such as VPS (XEN, OpenVZ and KVM) Linux or Windows, Dedicated servers, SSL certificates and domain name services.&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides self-managed OpenVZ SSD VPS in Telecity AMS 5, one of the best datacenters located in the Amsterdam area.&lt;br /&gt;
* [https://iniz.com/ INIZ VPS Hosting] INIZ provides affordable VPS Hosting in Amsterdam, Netherlands with high resources at low prices.&lt;br /&gt;
* [https://www.liteserver.nl/ LiteServer] Looking for a quality and affordable VPS in the center of The Netherlands? We provide SSD, Storage and High Bandwidth VPSes, starting at only €16 per year. We operate AS60404.&lt;br /&gt;
* [https://www.mangelot-hosting.nl/ Mangelot Hosting] Mangelot Hosting, A webhosting company located in the Netherlands, offers budget OpenVZ hosting solutions for maximum scalability en performance.&lt;br /&gt;
* [http://www.osbox.nl OsBoX Dutch Network Engineering] Cheap VPS host as low as $1 per month. Very great uptime and a overall good support. Check the website for the server plans.&lt;br /&gt;
* [http://www.signet.nl/ Signet VPS Hosting] - Signet delivers VPS hosting plans based on CentOS or Debian templates, including control-panel Virtualmin.&lt;br /&gt;
* [http://simple-webhosting.eu/ Simple-webhosting.eu] - OpenVZ based web hosting starting from €0.98 per month.&lt;br /&gt;
* [https://www.seedvps.com SeedVPS] Provides Powerful &amp;amp; Reliable OVZ/KVM VPS Hosting in The Netherlands&lt;br /&gt;
* [http://www.touchvps.com/ TouchVPS] is a company who offer Support and Managed Services for OpenVZ Servers ,also offer templates for openvz ready to go with cPanel , DirectAdmin , Plesk , Games, IRC Services, Desktop and many more.&lt;br /&gt;
* [http://www.voipcomplete.com/product-overview/dedicated-vps.html VOIPcomplete] offers dedicated VPS plans based on CentOS including a VPS management interface.&lt;br /&gt;
* [https://www.waveride.at/ Waveride] Waveride, an EDIS company, offers budget full gigabit OpenVZ + solusVM VPS in Austria, USA and the Netherlands&lt;br /&gt;
* [https://undergroundprivate.com/russiaoffshorevps.html  UndergroundPrivate.com] - OpenVZ with highly privacy, offshore , DMCA ignored , high confidence, SolusVM and cPanel, managed and non managed service.&lt;br /&gt;
* [https://www.totallyhosted.nl/ TotallyHosted] OpenVZ based Premium VPS services located in the Netherlands @ Serverius DC.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [http://www.vpsfast.us/netherlands-vps VPSFast] - VPS Provider with good prices in Netherlands.&lt;br /&gt;
&lt;br /&gt;
== Norway ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.vpsfast.us/norway-vps VPSFast] - VPS Provider with good prices in Norway.&lt;br /&gt;
&lt;br /&gt;
== Pakistan ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://vimzaa.com/ Vimzaa] The best hosting in Pakistan.&lt;br /&gt;
&lt;br /&gt;
== Philippines ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.web.com.ph/vps.php Web.com.ph] - provides OpenVZ virtual servers in the Philippines.&lt;br /&gt;
&lt;br /&gt;
== Perú ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.hn.pe/ Hostname] Hostname offers business OpenVZ containers in Perú&lt;br /&gt;
* [http://www.hostingandino.pe/ Hostingandino Lima - Peru] - VPS with OpenVZ in Peru&lt;br /&gt;
* [http://www.hostingplus.pe/ HostingPlus Internet Limitada] - High Performance Vps provider in Peru&lt;br /&gt;
* [https://www.hostingroup.com/ Hostingroup] Web hosting for small businness in Perú.&lt;br /&gt;
* [https://hostingweb.pe/ Hosting Web] The best hosting in PERU.&lt;br /&gt;
* [https://www.inchosting.pe/ HostingINC SAC] OpenVZ virtualization solutions for business in Perú.&lt;br /&gt;
* [https://www.mejorhosting.pe/ Mejor Hosting Perú] Hosting comparison for peruvian hosting providers.&lt;br /&gt;
* [https://webuniversal.pe/ Web Universal] The best hosting in PERU in the World.&lt;br /&gt;
&lt;br /&gt;
== Poland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://hosteam.pl/ HosTeam] offers OpenVZ VPS hosting from their DataCenter in Poland. Customer has choice of all major Linux distros (WARNING!!! restoring your backup is VERY expensive and they charge even if it wasn't restored correctly!), NATIVE IPV6 AVAILABLE!&lt;br /&gt;
&lt;br /&gt;
* [http://ultimahost.pl/ UltimaHost] high grade OpenVZ VPS and FreeBSD jail (DC in Łódź, Poland), brand of statnet.pl, SSD available for more expensive packets, NO IPV6 AVAILABLE (but they can load you tun module)&lt;br /&gt;
&lt;br /&gt;
* [http://budgetvps.pl/ BudgetVPS] very cheap, low end grade OpenVZ VPSes (DC in Gdańsk, Poland), brand of HitMe.pl&lt;br /&gt;
&lt;br /&gt;
* [https://hitme.pl/ HitMe.pl] high grade OpenVZ/Xen PV/Xen HVM VPSes, Virtuozzo (DC in Gdańsk, Poland), NATIVE IPV6 AVAILABLE (/64 on demand for free)!&lt;br /&gt;
&lt;br /&gt;
* [http://www.kr-cpd.pl/oferta/serwery-vps/ KR-CPD] Cracow's Center of Data Processing (DC of course in Cracow, Poland)&lt;br /&gt;
&lt;br /&gt;
* [http://livenet.pl Livenet] cheap, middle/low end OpenVZ VPSes (DC in Łódź, Poland)&lt;br /&gt;
&lt;br /&gt;
* [http://slaskdatacenter.pl/ Śląsk Data Center] high/middle grade OpenVZ VPSes (DC in Silesia province, Poland), SSD available for more expensive packets&lt;br /&gt;
&lt;br /&gt;
* [https://www.ionic.pl/ IONIC.pl] VPS OpenVZ with SolusVM control panel, own DC in Cracow&lt;br /&gt;
&lt;br /&gt;
* [https://microvps.pl/ MicroVPS.pl] Middle And low end OpenVZv7 VPS plans. SSD for regular VPS and HHD for storage plans (up to 1TB)&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Portugal ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.ptservidor.pt/ PTServidor] - OpenVZ virtual servers with free management based in Portugal.&lt;br /&gt;
* [http://www.efeito.net/ Weblevel.pt] - OpenVZ virtual servers based in Portugal.&lt;br /&gt;
* [https://www.webtuga.pt/ WebTuga] - Managed/Unmanaged Virtual Private Servers hosted in a Portuguese Datacenter with lots of extras&lt;br /&gt;
* [https://www.cloudfire.pt/ CloudFire] - OpenVZ VPS at very low prices hosted in Portugal&lt;br /&gt;
* [https://www.linxisp.com/ LINXISP] - High Availability &amp;amp; Performance OpenVZ Containers&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] - Build an OpenVZ VPS in 14 locations WordWide From £2.49&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Romania ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.intovps.com IntoVPS] - offers unmanaged OpenVZ virtual servers based in Romania, Netherlands and USA. A lot of resources for decent prices.&lt;br /&gt;
* [http://www.ename.ro/dedicated.html eName] - managed OpenVZ virtual servers in Bucharest, Romania&lt;br /&gt;
* [http://www.ch-center.com/virtual-servers Ch-center] - unmanaged OpenVZ virtual servers, based in Romania in it's own Data Center&lt;br /&gt;
* [http://www.clouds.ro/servere-virtuale/ Clouds] - OpenVZ virtual servers hosted on premium hardware, in Romania&lt;br /&gt;
* [http://www.HostSailor.com/ HostSailor] HostSailor provides affordable &amp;amp; high quality OpenVZ and KVM servers in Romania&lt;br /&gt;
* [https://www.shape.host/linux-vps/ Linux VPS] - OpenVZ virtual servers, Instant Linux VPS&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Russia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.internoc24.host Internoc24.HOST] is an international [https://www.www.internoc24.host Offshore VPS ] provider with reliable SSD VPS in Moscow, Russia. Focus ist on high privacy protection so they accept several Cryptocurrencies like Bitcoin, Ethereum and others for anonymous payments.&lt;br /&gt;
* [http://www.ihc.ru/vps.html IHC.RU] - VPS hosting in Moscow, Russia starting at $10/month with good set of precreated templates&lt;br /&gt;
* [http://mchost.ru/services/linux-vps/ McHost.ru] - Linux VDS Hosting from McHost.&lt;br /&gt;
* [http://hosting.agava.ru/vps/ AGAVA] - Linux VPS hosting based on OpenVZ.&lt;br /&gt;
* [http://vdsplanet.ru/ VDSPlanet.ru] - unmanaged VDS/VPS hosting starting at 3.99$ a month. Large variety of OS templates and free ISPmanager Lite control panel. Total automation is our goal.&lt;br /&gt;
* [http://www.demos.ru/service/datacenter/vps.html Demos-Internet] - we offer OpenVZ Virtual Private Server based on Linux.  All VPS come with ISPmanager control panel.&lt;br /&gt;
* [http://www.net.ru/service/net9/ www.net.ru] - OpenVZ virtual private servers.&lt;br /&gt;
* [http://www.eurobyte.ru/ Eurobyte.ru] - Linux VDS Hosting from Eurobyte.&lt;br /&gt;
* [https://undergroundprivate.com/russiaoffshorevps.html  UndergroundPrivate.com] - OpenVZ with highly privacy, offshore , DMCA ignored , high confidence, SolusVM and cPanel, managed and non managed service.&lt;br /&gt;
* [http://www.telekom.ru/service/vps.html Elvis Telekom] - OpenVZ hosting with base and cpanel templates from Elvis Telekom.&lt;br /&gt;
* [http://fastvps.ru/vds/ FastVPS] - OpenVZ hosting, ISPmanager, Hetzner, MayFlower.&lt;br /&gt;
* [https://lepus.su/vps.html Lepus] - OpenVZ hosting, SSD, ISPmanager free, Hetzner.&lt;br /&gt;
* [http://www.hts.ru/vds/ HTS] - OpenVZ hosting, ISPmanager, Linux VPS hosting based on OpenVZ in Moscow.&lt;br /&gt;
* [https://selectel.ru/services/vds/ Selectel] - OpenVZ hosting.&lt;br /&gt;
* [https://galaxydata.ru/root-server/ GalaxyData] - Virtuozzo Containers in Cloud Storage.&lt;br /&gt;
* [http://hosterbox.ru/servers/ Hosterbox.ru] - Managed VPS hosting. Based on OpenVZ + SolusVM + ISPmanager.&lt;br /&gt;
* [https://firstvds.ru FirstVDS.ru] - One of the leading hosting companies providing virtual private servers.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Singapore ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://conceptlane.com/?t=hostingservices#ratesvps ConceptLane Pte Ltd] - OpenVZ VPS on dual octa-core AMD Opterons running Debian Wheezy 7, custom control panel with bandwidth graphs, reboot/reinit and web-based VNC access.&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [http://www.qoxy.com/vps QOXY.com] Affordable and Reliable OpenVZ VPS Hosting in a Singapore Data Center.&lt;br /&gt;
* [http://www.secureax.com/ SecureAX Pte Ltd] - Singapore Premium Internet Solution Provider&lt;br /&gt;
* [http://www.planettel.com.sg PlaNetTel] - Affordable and customised OpenVZ containers across 3 data centers - contact Thomas Festus at +65-66936881. [http://pve.proxmox.com/wiki/User:Apmuthu#Squeeze_based_Templates Sponsors OpenVZ Container Template]s for the Open Source community.&lt;br /&gt;
* [http://www.vpsfast.us/singapore-vps VPSFast] - VPS Provider with good prices in Singapore.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Serbia ==&lt;br /&gt;
* [https://www.skyhosting.rs/en/vps-servers SkyHosting] - Fast Linux OpenVZ VPS SSD Hosting with SolusVM control panel.&lt;br /&gt;
* [https://www.ninet.rs/en/vps-servers NiNet Company] - Linux OpenVZ VPS servers. Well known VPS hosting company from Serbia with their own data center&lt;br /&gt;
* [http://www.suonline.net SuOnline.Net ISP] - Linux OpenVZ VPS servers, Docker enabled !!!&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== South Africa ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.host1plus.com/ Host1Plus] - Local South African servers hosted in Johannesburg. OpenVZ VPS servers starting from $3.00 per month.&lt;br /&gt;
* [http://www.vps.co.za/ VPS.CO.ZA] - South Africa's oldest VPS provider. Local South African servers with SolusVM control panel. OpenVZ, Xen and OnApp Cloud.&lt;br /&gt;
* [http://247hosting.co.za/vpshosting.php 247Hosting] - OpenVZ virtual servers locally in South Africa with SolusVM control panel. cPanel option available!&lt;br /&gt;
* [http://www.SoftDux.co.za/ SoftDux] - OpenVZ virtual servers based America &amp;amp; South Africa. All VPS's come with cPanel or Plesk control panels. XEN VPS's also available.&lt;br /&gt;
* [http://www.clickworks.co.za/ Clickworks] - OpenVZ / Xen VPS servers hosted in RSA. Backed by Solusvm control panel.&lt;br /&gt;
* [http://www.elitehost.co.za/ Elite Host] - OpenVZ virtual servers based in America &amp;amp; South Africa. All VPS's come with cPanel and unlimited bandwidth.&lt;br /&gt;
* [http://www.telasera.com/ Telasera] - OpenVZ VPS servers hosted in South Africa. Supermicro Servers powered by Intel Xeon with 24/7 Support.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Spain ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.actiu.net/pro/ Actiu informatica]&lt;br /&gt;
* [http://www.corpresa.com/servidores-virtuales.html Corpresa Hosting] - Tiene algún proyecto entre manos y un plan de hosting no le hes sufuciente y un servidor dedicado no está dentro de su presupuesto?, una solución de VPS a medida será la que cubrirá todas sus necesidades.&amp;quot;&lt;br /&gt;
* [https://www.datomedia.es Datomedia] - Cloud alta disponibilidad powered by Virtuozzo 6 y Servidores VPS bajo openvz y kvm.&lt;br /&gt;
* [https://www.evidaliahost.com/vps/ EvidaliaHosting] - Servidores VPS totalmente configurados con panel de gestión Plesk 12.5, garantía de devolución de 30 días y posibilidad de discos SSD.&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
* [https://ginernet.com/vps-ssd.php GINERNET] - Servidores VPS alojados en España desde 1.99€/mes.&lt;br /&gt;
* [https://www.hostingplus.com.es Hosting Plus España] provide OpenVZ containers at our own datacenter. Starting from us20/month RAID 10 SSD.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Sweden ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.admax.se/vps/ Admax] - Admax offers enterprise grade virtual servers with great pricing. Custom control panel, API, remote access &amp;amp; more.&lt;br /&gt;
* [https://www.acon.se/vps Acon VPS Server] - VPS Server and Dedicated server provider in Sweden.&lt;br /&gt;
* [https://www.glesys.com/vps.php GleSYS] - VPS Provider with a great control panel and good prices&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides the highest quality SSD VPS in Stockholm, Sweden. Based on completely pure SSD in RAID-10 and delivering extremely high network &amp;amp; hardware performance along with reliability.&lt;br /&gt;
* [https://www.nametyper.com NameTyper] - VPS and Shared hosting provider. Customize your own OpenVZ Container with 1-12 cores running on SSD and ECC RAM. &lt;br /&gt;
* [https://virtualcenter.se VirtualCenter] - The first Cloud provider with SSD VPS in Sweden. Offer enterprise class hardware and network infrastructure&lt;br /&gt;
* [http://www.vpsfast.us/sweden-vps VPSFast] - VPS Provider with good prices in Sweden.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Switzerland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
* [http://www.vpsfast.us/switzerland-vps VPSFast] - VPS Provider with good prices in Switzerland.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Tanzania==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.aptus.co.tz/ Aptus Solutions] - OpenVZ / SolusVM VPS Servers located in Dar es Salaam - 100meg to TIX. CentOS &amp;amp; Ubuntu.&lt;br /&gt;
&lt;br /&gt;
== UK ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.34sp.com/ 34SP.com] - We're a UK based web hosting company, bridging the gap between sophisticated hosting solutions &amp;amp; affordable prices&lt;br /&gt;
* [http://www.AceShells.com/ AceShells] - Fast, stable, high quality UK based virtual private servers from just £5 a month, operating since 2001&lt;br /&gt;
* [http://www.AtlanticServers.com/ Atlantic Servers] - Affordable VPS, stable, high quality VPS, UK based Data Centre&lt;br /&gt;
* [https://awebhosting.uk/ AWebHosting.uk] VPS hosting offered by [https://awebsolutions.uk/ AWEBSOLUTIONS LIMITED] reliable UK hosting provider located in London, UK and Hosted in UK DataCentre.* [http://www.BargainVPS.co.uk/ BargainVPS] - UK / US / EU Instant setup VPS - We have some great Linux &amp;amp; Windows Bargain VPS packages on offer for you here all available Fully Managed.&lt;br /&gt;
* [http://www.cheapvps.co.uk/ CheapVPS] - CheapVPS provide cheap, UK based OpenVZ VPS servers. Hosted on high end hardware, in a top UK datacenter backed up with 24/7/365 support. Choice from a wide range of Linux distros. OpenVZ VPS managed with SolusVM.&lt;br /&gt;
* [http://www.chilliserver.com/ Chilliserver] - Affordable plans starting from just £3.99, not oversold. RHEL6 Kernel with VSwap, TUN/TAP/FUSE and ACL support enabled. SolusVM control panel with custom snapshot system and rescue system. Based in a European data Centre with UK based support.&lt;br /&gt;
* [http://www.chvps.com/ CHVPS] - Switzerland Based VPS, Cheap Pricing with solusVM control panel.&lt;br /&gt;
* [http://www.cislondon.co.uk/virtual-private-servers/ Commercial Internet Solutions] - CIS provides premium hosting at competitive rates, focused on Small Businesses within the M25 orbital. Hosting is on Dual Quad core Intel Xeon supermicro servers in Tier 4 datacenters around London.&lt;br /&gt;
* [http://www.datacorporate.co.uk/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [http://domvps.com/ domVPS] - OpenVZ Virtual Servers in the USA, Germany, France &amp;amp; the Netherlands at a low cost.&lt;br /&gt;
* [http://www.DubHosting.co.uk/ DubHosting] - DubHosting started in 2004 has been providing cost effective hosting to clients world wide. Fully managed OpenVZ servers based in Europe &amp;amp; US are one of their many strong points. They can provide you with a dedicated server and install openvz allowing you to sell your own vps servers. Their servers are located at UKGrid in Manchester with 24/7/365 support&lt;br /&gt;
* [http://www.europhase.net/virtual-private-servers/ Europhase UK Limited, UK VPS] - OpenVZ VPS Hosting, Virtual Dedicated Servers, UK VPS hosted at multiple UK datacentres from £4.99&lt;br /&gt;
* [https://farbyte.uk/vps Farbyte VPS] - UK based OpenVZ VPS and shared web hosting services&lt;br /&gt;
* [http://www.fdqwholesale.co.uk FDQ Wholesale] - UK based hosting services&lt;br /&gt;
* [http://www.gemvps.net/ GemVPS.NET] - UK (Manchester) Based Company, OpenVZ Virtual Servers in the UK &amp;amp; France on Fast nodes.&lt;br /&gt;
* [http://www.hadrill.org.uk Hadrill Online] - Fully managed hosting with unlimited bandwidth. Quotes available through contact form.&lt;br /&gt;
* [http://www.infrenion.com./uk_vps_hosting.html Infrenion Networks UK] Cheap, economical and reliable web hosting solutions, VPS based on the openVZ platform. You can host any YouTube Clone scripts with free FFMPEG setup on our vps servers. Also offers with a choice of selecting DataCenter.&lt;br /&gt;
* [https://www.laws-hosting.co.uk/vps-hosting.php Laws Web Hosting] - Laws Web Hosting offers OpenVZ VPS Hosting with packages starting from £5.50/m that will cater for anyone. We have OpenVZ VPS hosting solutions, and come with moderate DDoS protection.&lt;br /&gt;
* [http://www.letstalkdigital.com/index.php?option=com_content&amp;amp;view=article&amp;amp;id=73&amp;amp;Itemid=65 LetsTalkDigital VPS Hosting] - LetsTalkDigital.com offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from $14.99. Virtual Private Server(VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://www.meteorvps.com/ MeteorVPS] - Professional, Non-Oversold amazing VPS plans pretty cheap using SolusVM management, range from 512MB -&amp;gt; 16GB&lt;br /&gt;
* [http://www.minivps.co.uk miniVPS] miniVPS offers VPS hosting solutions with nodes located in UK, utilising openvz/solusvm with future locations of USA and UK. &lt;br /&gt;
* [https://www.first2host.co.uk First2Host Cheap VPS] - Intel Xeon E5-2630v3 OpenVZ VPS Servers. Don't be defined by a pre-made VPS plan. Create your own VPS Plan by assigning the resources that you require. SATA, SSD or NVMe storage 100 MBPS, 250 MBPS, 500 MBPS, 1GBPS speeds and free cPanel licenses.&lt;br /&gt;
* [http://www.phurix.co.uk/ Phurix] - A UK based web solutions company that provides you with reliable hosting at extremely affordable prices, VPS server virtualization using OpenVZ.&lt;br /&gt;
* [http://www.qualityservers.co.uk Quality Servers] - Affordable OpenVZ virtual servers based in the UK and USA. Choice of control panels and management options.&lt;br /&gt;
* [http://www.rackburst.net/ Rackburst] - UK SSD VPS Hosting with fast UK-based Live Support available from £1.49 per month.&lt;br /&gt;
* [http://www.rshosting.co.uk/vps.html RSHosting UK] - Offering the most secure, reliable, stable and fast UK VPS Web Hosting based on OpenVZ architecture. Our Virtual Dedicated Servers are physically hosted on powerfull Quad Core servers located in multiple UK datacentres.&lt;br /&gt;
* [http://www.sharkserve.rs SharkServers] - Low Cost OpenVZ virtual servers in the UK. Choice of control panels and management options. Own Datacentre.&lt;br /&gt;
* [https://www.ukhost4u.com/ UKHost4u] - A leading provider of VPS solutions for over 19 years!&lt;br /&gt;
* [http://www.vpsfast.us/united-kingdom-vps VPSFast] - VPS Provider with good prices in UK.&lt;br /&gt;
* [http://www.vpsmachine.co.uk/ vpsMachine] Quality openvz hosting platform with a large choice of customer OS templates.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [https://www.webhostuk.co.uk/vps-hosting.html WebHostUK LTD] - Offers Cheap yet Best UK VPS Web Hosting working on OpenVZ Platform.We offers fully Managed UK VPS with true 24/7/365 days support.All our Servers are located in UK London DC.&lt;br /&gt;
* [http://www.webhostinguk.com/vps/vps-hosting.html Web Hosting UK] - Fully managed OpenVZ VPS Hosting offered on fast and reliable and affordable servers in UK &amp;amp; European datacenter with 24x7x365 days lightning fast support.&lt;br /&gt;
* [http://www.weycrest.co.uk/vps-hosting.php Weycrest VPS] - Low Cost, Stable OpenVZ and Parallels' Virtuozzo Virtual Private Server solutions. London UK Hosted at Coreix with a choice of operating systems, and root and control panel options.&lt;br /&gt;
* [http://www.xilo.net/virtual_private_servers-vps/ XILO] - UK-based hosting with UK-based support. VPS services offered with a choice of cPanel, Webmin and other useful applications, VoIP, SIP, VPN to name a few.&lt;br /&gt;
* [http://www.zxvps.co.uk/ ZxVPS VPS Hosting] - Quality, non-oversold VPS based on the openVZ platform, using SolusVM management panel, VPS from 128mb - 2gb, cpanel, direct admin, kloxo, etc.&lt;br /&gt;
&lt;br /&gt;
== Ukraine ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://ekvia.com/ Ekvia] - VDS/VPS based on OpenVZ. Free trial 14 days. Domain registration for VDS/VPS.&lt;br /&gt;
* [http://www.gelihost.com/ Geliar Hosting Solutions] - Fast virtual dedicated servers based on OpenVZ. Geliar Hosting Solutions offering many control panels and other useful services.&lt;br /&gt;
* [http://www.hostpro.ua/ Hostpro.ua] - Full managed OpenVZ servers.&lt;br /&gt;
* [http://www.vpsfast.us/ukraine-vps VPSFast] - VPS Provider with good prices in Ukraine.&lt;br /&gt;
&lt;br /&gt;
== USA ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.a2hosting.com A2 Hosting] is your high-performance [http://a2hosting.com/openvz-vps-hosting OpenVZ VPS Hosting] provider. Design your perfect [http://a2hosting.com/vps-hosting VPS Hosting] account today! Featuring SwiftServers and SSDs with page load speeds up to 300% faster compared to standard drives.&lt;br /&gt;
* [http://www.afterburst.com Afterburst] (Previously FanaticalVPS): affordable unmetered, unmanaged VPS servers in NY.&lt;br /&gt;
* [https://www.asurahosting.com/ AsuraHosting] offers powerful, reliable, and simple OpenVZ VPS to clients. AsuraHosting has a dedicated support team, and quality hosting; Pricing starts at just $5/month!&lt;br /&gt;
* [http://beyondhosting.net BeyondHosting.net] High Performance OpenVZ Virtual Private Servers (VPS)  Tier 1 US Datacenter.&lt;br /&gt;
* [http://buyvm.net BuyVM.net] DDoS Protection, three datacenter locations, Stallion control panel. Affordable quality VPS hosting since 2010!&lt;br /&gt;
* [https://www.binarycpu.com Binary Computer Solutions] has provided OpenVZ based Virtual Private Server hosting for over 5 years.  Network outages are a thing of the past, and oversold services are never heard of here.  Built on solid technology, with infrastructure to match - Binary Computer Solutions will give you hosting you need, without the cost others ask for.  Starting at $30.00/mo.&lt;br /&gt;
* [http://www.bodhost.com/ Bodhost.com] Fast, Reliable and secure web hosting service with 24*7 free customer service.&lt;br /&gt;
* [http://www.buildyourvps.com/ BuildYourVPS.com] mix ‘n’ match your VPS; choose only the bandwidth, RAM, disk capacity, type of IP connection, level server redundancy, and the support/monitoring you want. [http://www.buildyourvps.com/ BuildYourVPS] is the 1st to offer you a highly-customized VPS solution, without making you pay for unused extra features.&lt;br /&gt;
* [https://www.budgetvm.com/openvz-linux-vps.php BudgetVM.com] Each server includes our industry-leading SLA, DDoS protection, 200Gbps networks and 7 * 24-hour customer support.&lt;br /&gt;
* [http://www.byethost.com Byethost.com] offers OpenVZ based VPS Hosting as its main VPS solution, with the hypervm panel. Centos, Debian, Fedora, OpenSuse and Ubuntu Containers are available.&lt;br /&gt;
* [http://cheaperasp.net CheaperASP.Net] provides Quality web hosting on the OpenVZ platform. You also help you get best options at [http://cheaperasp.net/godaddy-1-hosting-free-domain-promo/ affordable] cost.&lt;br /&gt;
* [http://www.chhost.net/vps.htm CH Hosting VPS Hosting] CH Hosting or chhost.net offers OpenVZ based VPS Hosting. 24/7 Support. Upgrade/Downgrade your plan as needed on-the-fly without the risk of downtime. Since 2006. Non-Oversell&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in USA from 1.88EUR/month.&lt;br /&gt;
* [http://www.cloudshards.com Cloud Shards] High Performance, reliable, stable and affordable OpenVZ Virtual Private Servers (VPS) in data centers across the USA.&lt;br /&gt;
* [https://cloudgearhosting.com CloudGear Hosting] - offers OpenVZ hosting in 4 locations across the USA. Including free DDoS Protection and free SSL with cPanel.&lt;br /&gt;
* [http://www.datacorporate.com/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [https://www.delimiter.com/storage-vps/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [https://www.cheapdomainnamesdot.com Domain Host SSL] provides Reliable web hosting with OpenVZ platform Since 2003, Located New York city, Atlanta, Los Angeles. &lt;br /&gt;
* [http://www.DubHosting.com/ DubHosting] - DubHosting started in 2004 has been providing cost effective hosting to clients world wide. Fully managed OpenVZ servers based in Europe &amp;amp; US are one of their many strong points. They can provide you with a dedicated server and install openvz allowing you to sell your own vps servers.&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
* [http://www.ethernetservers.com/ Ethernet Servers] A leading provider of OpenVZ Virtual Servers in Los Angeles, Miami and Buffalo with SolusVM.&lt;br /&gt;
* [http://www.evolucix.com/ Evolucix.com] Evolucix offers state of the art, professional, and reliable OpenVZ VPS solutions on top-notch hardware while providing quality support.&lt;br /&gt;
* [http://www.evolvedservers.com Evolvedservers.com] Openvz based vps servers. Hosted in Michigan, USA. 24/7 Support. Hosted in tier-3 and tier-4 datacenter's with multiple redundancies.&lt;br /&gt;
* [http://fastwebhost.com/vps-hosting.html Fastwebhost]: affordable cloud VPS servers using OpenVZ. &lt;br /&gt;
* [http://www.fliphost.net Fliphost.net]: Powerful, affordable instant setup VPS systems. Servers based in Phoenix Az with another location coming soon.&lt;br /&gt;
* [http://www.frontrangehosting.com Front Range Hosting]: SSD Cached KVM &amp;amp; OpenVZ VPS Hosting Prices Start at 2.00/mo, located in Colorado Springs, Colorado.&lt;br /&gt;
* [http://glesys.se GleSYS] is a hosting company specialized in serverhosting. Also offering VPS hosting mainly based on OpenVZ. GleSYS has provided access to server and Cisco hardware for developers from OpenVZ to find problem with VLAN implementation.&lt;br /&gt;
* [http://goodealhosting.com/ GOODEALHOSTING.com] Quality Hosting Solutions! Provides affordable unmanaged/managed VPS based on OpenVZ! start from $10.00, real 24/7 support.&lt;br /&gt;
* [http://gothost.net GotHost.net] Providing OpenVZ based VPS Hosting with SolusVM. All nodes are Quad Core Xeon with RAID-10 for speed and redundancy. Budget plans starting at $7.99.&lt;br /&gt;
* [http://www.greengeeks.com/ GreenGeeks Hosting] VPS Hosting. Dual Intel Xeon 64-Bit CPU's, DDR3 RAM, RAID-10 SSD Storage Arrays. 24/7 Support. cPanel/WHM + more!&lt;br /&gt;
* [http://hostarmor.com HostArmor™] - is best known for low-cost and reliable shared hosting and dedicated servers. Recently the company expanded to offer OpenVZ virtual server plans at 8 worldwide locations, five in the U.S., one in Germany, one in France, and one in the Netherlands. VPS plans start at $13.99/month.&lt;br /&gt;
* [http://www.host4geeks.com Host4Geeks] - Host4Geeks is a premium Fully Managed VPS provider with datacenters across 2 locations in US and in UK. All servers offer a free cPanel license.&lt;br /&gt;
* [http://www.host1plus.com Host1Plus] - OpenVZ based virtual servers in Chicago and Los Angeles. VPS plans start at $2.00 per month.&lt;br /&gt;
* [http://www.hostavps.com HostAVPS] - Providing Fully Managed VPS's on both the West &amp;amp; East Coast.&lt;br /&gt;
* [https://www.hostcapitol.com Host Capitol] offers fast and reliable web hosting services, including OpenVZ VPS Hosting, to clients ranging from small businesses to corporations. Located in Piscataway, New Jersey.&lt;br /&gt;
* [http://www.hostcolor.com Host Color] - OpenVZ based virtual servers hosted in a Tier 4 class data center based out of South Bend, Indiana. Juniper managed, fully-redundant network with uplinks to Level 3, Cogent and Internap.&lt;br /&gt;
* [https://www.hostgalaxy.com HostGalaxy] - OpenVZ based virtual servers. The fastest hosting in the Galaxy!&lt;br /&gt;
* [http://www.hostigation.com Hostigation] - High resource unmanage VPS hosting solutions.&lt;br /&gt;
* [http://www.hostingrails.com Hosting Rails] offers Rails-targeted OpenVZ VPS Hosting and updated Rails-ready OS images.&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [http://www.hostmist.com Host Mist] features budget OpenVZ VPS hosting from four major cities across the US.&lt;br /&gt;
* [http://www.hostrush.com HostRush] Self managed, ssd vps for business and non business. &lt;br /&gt;
* [http://www.dailyhosting.net hostoople] We offer OpenVZ VPS hosting from Dallas Texas, Starting at $29.95/month &lt;br /&gt;
* [https://hostus.us HostUS] provides unmanaged and managed OpenVZ VPS in Atlanta, Dallas and Los Angeles with custom control panel. A large variety of Linux distros are available. Enjoy 15% off with coupon VPS15OFF.&lt;br /&gt;
* [https://www.hostwinds.com Hostwinds] Affordable managed/unmanaged VPS Solutions.&lt;br /&gt;
* [http://hostsia.com Hostsia] With HOSTSIA Web services, you can get an OpenVZ VPS for only $15.00/mo. Each OpenVZ VPS includes multiple free-of-charge bonuses and offers a 99.9% uptime guarantee. You can also use our charge-free Hepsia CP, which is available with each OS – it permits you to host an unmetered number of domains and comprises heaps of handy tools, which will help you better manage your site and your VPS web hosting account.&lt;br /&gt;
* [http://www.infrenion.com./vps_hosting.html Infrenion Networks] Cheap, reliable and secure VPS hosting solutions, based on the openVZ platform. You can host any YouTube Clone scripts with enhanced support quality round the clock.&lt;br /&gt;
* [http://iniz.com/ INIZ VPS Hosting] INIZ provides affordable VPS Hosting in Los Angeles &amp;amp; New York with high resources at low prices.&lt;br /&gt;
* [https://www.interserver.net/ InterServer Web Hosting] Fast &amp;amp; Reliable VPS - 24x7 Support. 99.9% Up-time, Hosting Since 1999!.&lt;br /&gt;
* [http://www.joinvps.com JoinVPS.com] ISPmanager OpenVZ based VPS hosting. 24/7 Technical Support. Free ISPmanager control panel.&lt;br /&gt;
* [http://www.lovevps.com LoveVPS] Budget VPS provider starting at $5.99/month located in the US with Xeon nodes.&lt;br /&gt;
* [http://www.letstalkdigital.com/index.php?option=com_content&amp;amp;view=article&amp;amp;id=73&amp;amp;Itemid=65 LetsTalkDigital VPS Hosting] LetsTalkDigital.com offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from $14.99 Virtual Private Server(VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://lylix.net LYLIX] offers affordable VPS hosting with a choice of eight different Linux distributions, dedicated VPS hosting, and specializes in Asterisk/VOIP based hosting including Trixbox, AsteriskNow, Elastix, and PBX-in-a-Flash.  Popular choice for unmanaged IP-PBX services; entire infrastructure built on a High-availability (HA) network across three regional NOCs.&lt;br /&gt;
* [http://www.micfo.com Micfo.com] offers VPS hosting services for both Linux VPS hosting and Window VPS hosting on affordable price combined with world-class 24x7x365 support.&lt;br /&gt;
* [http://www.neostreams.info/neoshop/cart.php?gid=9 nEo Stream Services] Offer's Top Quality OpenVZ Servers, Starting at $18.95 per month! SolusVM Control panel , 7 day Money Back Guarantee , 24x7 Professional Support.&lt;br /&gt;
* [http://pogiweb.com/vps/ PogiWeb LLC] Instant and free setup. Includes SolusVM control panel and free level 1 support during first month.&lt;br /&gt;
* [http://www.theserverexperts.com TheServerExperts.com] TheServerExperts VPS line is the ideal solution for clients who require the control of a dedicated server matched with the affordability and simplicity of a traditional shared hosting account.&lt;br /&gt;
* [http://thenynoc.com New York NOC] affordable Linux VPS hosting out of New York and Chicago. Plans as low as $5 a month and are backed by a redundant infrastructure and 24/7 support.&lt;br /&gt;
* [http://railsplayground.com RailsPlayground.com] Ruby on Rails VPS with ready to go Rails images with the LxAdmin control panel&lt;br /&gt;
* [http://www.raidlogic.net RaidLogic.NET] RaidLogic.NET offers OpenVZ based Linux VPS out of multiple facilities across the United States, including Miami, Los Angeles, and Chicago. Starting as low as $3.95/month.&lt;br /&gt;
* [http://www.ramhost.us RAM Host] RAM Host offers OpenVZ based Linux VPS out of multiple facilities across the United States, including Atlanta, Kansas City, and Phoenix.&lt;br /&gt;
* [http://www.reconhosting.com Recon Hosting] Recon Hosting offers affordable OpenVZ VPS solutions where you get Quality Hosting at a Fraction of the price. Instant setup with the latest Operating System templates including cPanel.&lt;br /&gt;
* [http://www.rokabear.com Rokabear] Rokabear offers OpenVZ Linux VPS, Dedicated Server, and Colocation. All Hardware setup in High Availability mode including raided drives and redudnant power and network connections. With multiple upstream providers, Rokabear's connectivity is fast and reliable! Rokabear supports LAMP, Openvpn, and Asterisk configurations. VPSes start at $7.99!&lt;br /&gt;
* [https://www.rosehosting.com RoseHosting] offers OpenVZ Linux virtual servers equipped with Enterprise Grade SSD drives. All hosting plans are fully-managed with FREE 24/7 support, FREE website migration, FREE weekly backups and FREE server monitoring included.&lt;br /&gt;
* [http://www.rshosting.com/vps.html RSHosting.com] RSHosting offers the most secure, reliable and stable VPS - Virtual Private Servers based on OpenVZ architecture, powered by the most professional and qualified 24/7 lightening fast support.&lt;br /&gt;
* [http://www.servercomplete.com Server Complete, LLC] Server Complete offers OpenVZ based Linux VPS out of multiple facilities across the United States, including Atlanta, Dallas, and Chicago.&lt;br /&gt;
* [http://www.servergrove.com ServerGrove] uses OpenVZ as the main virtualization platform for its state of the art VPS hosting services.&lt;br /&gt;
* [http://serverswarm.com ServerSwarm] provides stable, affordable, high performance OpenVZ virtual private servers.&lt;br /&gt;
* [http://Sharktech.net Sharktech] provides custom OpenVZ solutions DDOS-protected up to 100Gbps.&lt;br /&gt;
* [http://www.silverrack.com/ SilverRack VPS Hosting] - SilverRack provides affordable VPS hosting using the OpenVZ platform.&lt;br /&gt;
* [http://www.soficol.com/ Soficol] Offers Enterprise OpenVZ based VPS, hosted on a clustered infrastructure and redundant network. Easy to use user management and instant setup.&lt;br /&gt;
* [http://www.spectrohost.com/ Spectro Host] - Offers performance VPS Servers running openvz. Always the most resources and never over committing OpenVZ nodes.&lt;br /&gt;
* [http://www.budgetvds.com/ BudgetVDS] - Offers VPS Servers running openvz we've been in business for 2 years now using openvz platform.&lt;br /&gt;
* [http://www.syera.net/ Syera Networks] Unmetered VPS From $18.88/M, 24/7 Support, OpenVZ/HyperVM, Instant Setup!, Free 1Gbps Upgrade with Coupon: syera1G&lt;br /&gt;
* [http://www.synapseglobal.com/voip_vps.html SynapseGlobal.com] Elastix, Trixbox, PBX in a Flash and Asterisk VPS - OpenVZ based Asterisk VOIP servers with 14 Tier 1 premium bandwidth providers.&lt;br /&gt;
* [http://www.tektonic.net TekTonic] provides VPS hosting services using both Virtuozzo and OpenVZ technology.&lt;br /&gt;
* [http://www.tigerservers.com/ TigerServers] - Provides affordable managed VPS based on OpenVZ. Servers located in Chicago, Illinois&lt;br /&gt;
* [http://www.tocici.com/ TOCICI VPS Hosting Services] Since 1995 TOCICI has offered web hosting services, with 24/7 support commitments and a strong non-oversell policy. Our purpose-built hosting infrastructure has serviced many organizations for over a decade. Offering OpenVZ VPS, data center colocation, and equipment leasing options, visit our website for prices and more details.&lt;br /&gt;
* [http://www.ultravps.com UltraVPS] UltraVPS offers managed and unmanaged OpenVZ-based VPS hosting utilizing dual CPU hardware nodes with redundant, high-performance RAID-10 storage.  UltraVPS offers VPS servers with many popular control panel options and turn-key applications.&lt;br /&gt;
* [http://www.vpsfx.com VPSFX] VPSFX.com offers OpenVZ VPS, data center colocation, and dedicated servers.&lt;br /&gt;
* [http://www.Webhost.US.Com/linuxvps.html US Web Hosting]  Webhost.US.Com offers powerful GUI based VPS management system with full OpenVZ, Xen Paravirtualization and Xen HVM support.All our Virtual Private servers are fully Managed with 99.9% uptime and 24/7 top notch support.&lt;br /&gt;
* [http://unixservice.com Unixservice/unxsVZ] Low cost OpenVZ ONLY hosting we specialize in Mail, DNS and RADIUS multiple container hosting. At the world famous Market St. San Jose, CA Silicon Valley datacenter. Ping times from your containers to local yahoo and google sites guaranteed single digit ms times. Your containers are backed up at 4 local and 2 remote locations. Contact supportgrp at unixservice dot com.&lt;br /&gt;
* [http://www.vogenic.xyz Vogenic: Cloud Services] If you are searching for an upgrade to the shared hosting service, then you should consider our OpenVZ or KVM VPS hosting services.&lt;br /&gt;
* [http://vpslink.com VPSLink.com] provides virtual private server hosting on the OpenVZ platform.&lt;br /&gt;
* [http://www.vpsspeed.com/ VPSSpeed] - VPSSpeed provides unmanaged OpenVZ based VPS hosting with over 50 OS Templates, real 24/7/365 support and fast US servers. No overselling.&lt;br /&gt;
* [http://vpsnoc.com VPSNOC] offers unmanaged vps hosting based in the USA utilizing OpenVZ hypervisor behind an in-house VPS control panel.&lt;br /&gt;
* [https://www.waveride.at/ Waveride] Waveride, an EDIS company, offers budget full gigabit OpenVZ + solusVM VPS in Austria, USA and the Netherlands&lt;br /&gt;
* [http://www.webappcabaret.com WebAppCabaret] provides VPS solutions for hosting applications. We offer OpenVZ with cPanel or Plesk for web site management; and NGASI Universal App Manager for deploying and managing JAVA and RAILS applications.&lt;br /&gt;
* [http://www.wirenine.com/vps-hosting/ WireNine.com VPS Hosting] Low cost fully managed and unmanaged OpenVZ based VPS Hosting with SAS 15k enterprise drives in high-performance RAID-10 storage.&lt;br /&gt;
* [http://www.zoidial.com/ Zoidial Hosting and VPS] - offers VPS and Virtual Dedicated Server solutions utilizing OpenVZ.  In business since 1998, Zoidial Incorporated is a small hosting provider focused on being security conscious, proactive, and offering a positive client experience.&lt;br /&gt;
* [http://zensix.com ZenSix Hosting] Cheap OpenVZ based VPS accounts with the SolusVM control panel.&lt;br /&gt;
* [http://zigothosting.com Zigot Hosting] Affordable and Reliable OpenVZ based VPS's within the SolusVM control panel.&lt;br /&gt;
* [http://www.vpsfast.us/usa-vps VPSFast] - VPS Provider with good prices in USA (Los Angeles, New Jersey, New York, Seattle, Washington, Dallas, Chicago, Atlanta, Ashburn, Miami, Piscataway).&lt;br /&gt;
* [http://www.xarixlite.com Xarix Lite] - offers OpenVZ hosting in Charlotte, SC. OpenVZ plans starting at $2.50/mo&lt;br /&gt;
* [https://www.yourlasthost.com YourLastHost] is your high-performance [https://www.yourlasthost.com/openvz-vps.php OpenVZ VPS Hosting] Provider. Get your perfect [https://www.yourlasthost.com/openvz-vps.php VPS Hosting] account today! Available in Los Angeles, Dallas, Jacksonville, USA and France, Europe.&lt;br /&gt;
&lt;br /&gt;
== Vietnam ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://appvz.com AppVZ.com] (www.appvz.com) is a leading web solution provider offering domain, hosting, reseller and VPS hosting packages from 2009. Just recently, the company has offered discount packages where customers can avail managed and un-managed VPS for only $9.5 per month.&lt;br /&gt;
&lt;br /&gt;
= Hosting providers comparison =&lt;br /&gt;
&lt;br /&gt;
It is hard to compare all virtual private server offers provided by different hosting providers.&lt;br /&gt;
Sites below can help you with it.&lt;br /&gt;
&lt;br /&gt;
* [https://www.cheapvpsservers.co.uk/ Cheap VPS Servers]&lt;br /&gt;
* [https://www.hostingmyths.com/ Hosting Myths]&lt;br /&gt;
* [https://cheapwebhosting.review/ VPS servers comparison]&lt;br /&gt;
* [https://reviewsquirrel.com/web-hosting-reviews/ Review Squirrel]&lt;br /&gt;
* [http://lowendstock.com/ Lowendstock]&lt;br /&gt;
* [https://www.websitehostingrating.com/ Best Web Hosting Services]&lt;br /&gt;
* [http://serverbear.com/compare?Sort=RAM&amp;amp;Order=asc&amp;amp;Server+Type=VPS&amp;amp;Monthly+Cost=-&amp;amp;HDD=-&amp;amp;RAM=-&amp;amp;Virtualization=OpenVZ Serverbear]&lt;br /&gt;
* [https://www.comparethehosts.com/vps-web-hosting.htm VPS Web Hosting Reviews]&lt;br /&gt;
* [https://thishosting.rocks/best-cheap-managed-vps/ ThisHosting.Rocks - Managed VPS Providers Comparison]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
http://vpscomp.com&lt;br /&gt;
http://reviewsignal.com/webhosting/compare/&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= See also =&lt;br /&gt;
&lt;br /&gt;
* [[Partners]]&lt;br /&gt;
* [[Download mirrors]]&lt;br /&gt;
* [[VPS vs Dedicated]]&lt;/div&gt;</summary>
		<author><name>Vvs</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.openvz.org/index.php?title=Hosting_providers&amp;diff=23317</id>
		<title>Hosting providers</title>
		<link rel="alternate" type="text/html" href="https://wiki.openvz.org/index.php?title=Hosting_providers&amp;diff=23317"/>
		<updated>2020-06-05T05:10:16Z</updated>

		<summary type="html">&lt;p&gt;Vvs: Undo revision 23310 by 200.24.13.248 (talk)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''OpenVZ is free and open implementation of Virtuozzo containers for Linux.&lt;br /&gt;
Don't forget to keep [[testimonials|testimonial]] and [[donate]] to OpenVZ.'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
OpenVZ makes for a great hosting platform for VPS hosting. The providers below offer VPS services using OpenVZ.&lt;br /&gt;
&lt;br /&gt;
[[File:UsageLocation.svg]]&lt;br /&gt;
&lt;br /&gt;
= OpenVZ hosting providers =&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- @@@@@@@@@@@@@@@@@@@@@@@&lt;br /&gt;
&lt;br /&gt;
IF YOU EDIT THIS PAGE,  PLEASE OBEY TO THE FOLLOWING RULES:&lt;br /&gt;
&lt;br /&gt;
1. Keep your record on ONE line&lt;br /&gt;
2. Keep the list of providers alphabetically sorted, DO NOT insert your record on top.&lt;br /&gt;
3. Keep the list of countries alphabetically sorted as well.&lt;br /&gt;
&lt;br /&gt;
     @@@@@@@@@@@@@@@@@@@@@@@@ --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Andorra ==&lt;br /&gt;
* [https://www.actiu.net/pro/ Actiu informatica] amb servidors dins i fora del principat.&lt;br /&gt;
&lt;br /&gt;
== Argentina ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.fulltech.com.ar/ Full Tech Solutions] Specializes in the virtualization of OpenVZ &amp;amp; Virtuozzo containers, installed in the Full Tech Solutions Data Center located in Villa Elisa, Entre Rios Argentina.  It also offers services hosted in the United States, Netherlands and Germany&lt;br /&gt;
* [http://www.g2khosting.com/ G2K Hosting] offer OpenVZ containers with high level hardware technology from 25 US with Control Panel, various Linux Dists and full support.&lt;br /&gt;
* [https://hostingplus.com.ar/ HostingPlus Argentina] provide OpenVZ containers at our own datacenter in South America with triple internet provider. Starting from  us20/month&lt;br /&gt;
* [https://ibumu.com/ Ibumu] Best containers for wordpress starting from $5.5.&lt;br /&gt;
* [http://www.ihserver.net/ IHServer] Specialized virtualization on OpenVZ containers at Gigared datacenter. We have in Argentina one of the better fiber connection to the US, but also provides services from LSTN in Texas.&lt;br /&gt;
* [https://www.infranetworking.com.ar/ Infranetworking] All our Cloud VPS container solutions for Argentine customers are powered by the all mighty OpenVZ virtualization software.&lt;br /&gt;
* [https://www.neolo.com/ Neolo] provide OpenVZ containers at our own datacenter in South America with double internet provider. Choose your Linux OS and apps. Full support.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [http://www.wiredhosting.com.ar/ WiredHosting] offer XEN and OpenVZ containers with SSD drives, cloudflare security and weekly backups to protect your information. Phone and Helpdesk support. &lt;br /&gt;
&lt;br /&gt;
== Australia == &lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.auhost4u.com/ AUHost4u] - VPS Solutions provided from our D.C. in Sydney.&lt;br /&gt;
* [https://www.conetix.com.au/ Conetix Hosting] Specialising in business grade, fully managed Virtuozzo containers with Virtuzzo Cloud Storage. 100% Australian owned and operated. Brisbane based DC with Enterprise Dell servers.&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides self-managed OpenVZ based SSD VPS located at Equinix SY3 in Sydney, one of the best and well-connected datacenters in the region.&lt;br /&gt;
* [http://www.vpsfast.us/australia-cloud-server VPSFast] - VPS Provider with good prices in Australia.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Austria ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
* [https://kapper.net/ kapper.net] kapper.net offers OpenVZ and Virtuozzo (and other HyperVisors) based server-solutions with kind support and 24x7 maintenance.&lt;br /&gt;
* [https://mdhost.eu/vserver.php MDHost.eu] New Hosting Provider with nice Prices and many Server locations. Austria, Germany, France and more.&lt;br /&gt;
* [https://www.snb.at/ SNB] offers OpenVZ containers and support's also existing vm's in customers environment&lt;br /&gt;
* [https://www.waveride.at/ Waveride] Waveride, an EDIS company, offers budget full gigabit OpenVZ + solusVM VPS in Austria, USA and the Netherlands&lt;br /&gt;
* [http://www.vpsfast.us/austria-cloud-server VPSFast] - VPS Provider with good prices in Austria.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Brazil ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.datacorporate.com.br/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [http://www.globalmedia.com.br/ GlobalMedia] We offers OpenVZ containers hosted on a very fast network with fast setup. Ubuntu, Debian, CentOS.&lt;br /&gt;
* [http://www.host1plus.com.br/ Host1Plus] Servers hosted in São Paulo. We offering reliable and secure OpenVZ VPS Servers with 99.99% up-time, starting from $5.00 per month.&lt;br /&gt;
* [http://www.ipdeck.net/ IPDECK] VPS Linux server from R$15,00/month! Fully customizable according to your needs.&lt;br /&gt;
* [https://www.quantivehost.com.br/ QuantiveHost] VPS Linux with 99.99% uptime. Prices starting from R$ 29,35.&lt;br /&gt;
* [https://www.elevahost.com.br/ Eleva host] Server hosted in Brazil. The best support.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [https://www.ferenz.com.br/ Ferenz Networks] VPS Linux with best support. Prices starting from R$ 29,90.&lt;br /&gt;
&lt;br /&gt;
== Bulgaria ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.cloudhostinghub.com Offshore VPS Hsoting] CloudHostingHub.com is an [https://www.cloudhostinghub.com Cloud Offshore VPS Hosting] located in Buglaria. They provide both OpenVZ and KVM virtualization. CloudHostingHub.com is known for the high privacy protection , performance and stability.&lt;br /&gt;
* [https://www.cyberhour.com CyberHour.com] CyberHour.com is an [https://www.cyberhour.com offshore VPS hosting] provider located in Europe. The provide blazing fast servers and premium Bandwidth of 200Mbps. With high privacy protection.&lt;br /&gt;
* [https://www.linuxssdvps.com Bulgaria VPS] Linux SSD VPS is an [https://www.linuxssdvps.com offshore VPS hosting] provider located in Sofia, Bulgaria. Privacy is very respected and anonymous registrations are allowed, as well as payments via Bitcoin / PayPal.&lt;br /&gt;
* [http://www.webuzo.net Bulgaria VPS] Webuzo Network is an offshore SSD VPS hosting provider located in Bulgaria. Privacy is very respected and anonymous registrations are allowed, as well as payments via Bitcoin / PayPal.&lt;br /&gt;
* [https://vpsbg.eu/en Bulgaria VPS] VPSBG.eu is an offshore SSD VPS hosting provider located in Sofia, Bulgaria. Privacy is very respected and anonymous registrations are allowed, as well as payments via Bitcoin.&lt;br /&gt;
* [http://www.bul.net/ Bul.net] Provides OpenVZ based VPS, perfect user/VPS management via [http://ispsystem.com VDSManager]. Instant creation after online payment. Debian/Ubuntu/CentOS with ISPManager Control panel. Optimal price policy.&lt;br /&gt;
* [http://www.cointech.eu/vps-hosting/ CoInTech] provides OpenVZ based VPS containers, free webmin managment. Containers can be CentOS, Slackware, Ubuntu, custom or our special [http://www.mandriva.com Mandriva Linux] container with own [http://mandriva.cointech.net repository].&lt;br /&gt;
* [http://www.rax.bg/ RAX.bg] Offers OpenVZ based VPS, hosted on a clustered infrastructure and redundant network. Easy to use user management, Instant setup, CentOS (OS).&lt;br /&gt;
* [http://www.jump.bg/ Jump.bg] Provides OpenVZ VPS servers hosted on a redundant network which provides a very easy to manage platform for all clients which gain instant access to their OS ( Ubuntu, CentOS , Debian etc ... )&lt;br /&gt;
* [https://www.fitvps.com/ FitVPS.com] Offers affordable and reliable OpenVZ based VPS in Varna, Bulgaria. Own data center, own multihomed network, with SLA. Instant automatic setup, SolusVM control panel.&lt;br /&gt;
* [http://www.qhoster.com/ QHoster.com] Instant activation OpenVZ VPS in UK, USA, Germany, France and Switzerland. Both 32/64 bit OpenVZ OS VPS templates : CentOS 5/6, Debian 6/7, Ubuntu 12/13.&lt;br /&gt;
* [https://www.verdina.net Verdina.NET] Verdina.net offers dedicated hosting services, provided by powerful dell hardware. Servers are located in Telepoint Datacenter, a Tier 3 DC located in Sofia, Bulgaria.&lt;br /&gt;
* [https://www.vps.ag/ VPS.AG] Affordable and reliable OpenVZ VPS based in Sofia, Bulgaria. Instant setup and 24/7 support.&lt;br /&gt;
* [http://www.vpsfast.us/bulgaria-vps VPSFast] - VPS Provider with good prices in Bulgaria.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Canada ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://4goodhosting.com/linux-vps-hosting 4GooodHosting] - Canadian OpenVZ VPS Servers, Starting from  $18.99/month SSD,. Canada VPS hosting in three different Canadian Data Centers with nightly backups.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [https://whc.ca/canadian-cloud-servers Web Hosting Canada Cloud Servers] - Powerful Cloud servers powered by OpenVZ and located in Canadian datacenters, with fast RAID-10 storage, fully managed with cPanel.&lt;br /&gt;
* [http://compevo.com compevo Clustered VPS Server Hosting Provider] - We offer clustered VPS Servers to avoid downtime and dataloss. Our network and service is second to none and is used by businesses around the world.&lt;br /&gt;
* [http://www.datacorporate.ca/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [https://www.delimiter.com/storage-vps/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [https://www.miditech.com/ MidiTech Hosting Canada] VPS hosting offered by MidiTech Canada are powered by VMware, . Fully Managed VPS with control panels&lt;br /&gt;
* [http://www.gotekky.com Gotekky Cloud VPS Hosting] High quality Cloud VPS packages powered by our own infrastructure and network in Toronto. Scalable from our $5/mo plan all the way to your own dedicated cloud server. Based on OpenVZ and our own proprietary panel.&lt;br /&gt;
* [https://gigebox.com GIGEBOX.COM] GIGEBOX are expert providers of secure business hosting services, we operate high-performance professional servers, specially designed for businesses, powered by the Intel(R) Xeon(R) Hexa-Core CPU Processors and 128 GB DDR3 minimum RAM. Enjoy high availability, performance and security for multiple uses.&lt;br /&gt;
* [http://www.letstalkdigital.com/index.php?option=com_content&amp;amp;view=article&amp;amp;id=73&amp;amp;Itemid=65 LetsTalkDigital VPS Hosting] LetsTalkDigital.com offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from $14.99. Virtual Private Server (VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://secure.media-hosts.com/link.php?id=7 Media-Hosts.com] Provides Quality and Scalable OpenVZ based Virtual Private Servers. 100% network uptime guaranteed. Located in Montreal Quebec with 5 Tier1 upstream providers.&lt;br /&gt;
* [http://www.openvz.ca OpenVZ.ca] Canadian Budget VPS Servers on OpenVZ Platform. &lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [http://protoserver.com ProtoServer] Advanced VPS Hosting from $4.95/month. Many pre-installed VPS Templates available (CMS, E-commerce, Web development, Online community, Media streaming, etc.) No bundles or service plans - mix VPS resources as needed and change VPS configuration anytime. Also offering DNS Hosting, E-mail hosting, Domains Registration.&lt;br /&gt;
* [http://www.vistapages.com/vps Vistapages VPS] - IBM &amp;amp; Dell Hardware. MCI/Verizon Backbone. Distros: Centos, Fedora, Debian &amp;amp; more. Full management available. Located in Toronto.&lt;br /&gt;
* [http://vpsville.ca/ VPSVille] - Good network. Good CPU. Good choice of distros: Centos, Fedora, Debian, Ubuntu, Slackware, Gentoo, OpenSUSE, CERN. My favorite OpenVZ provider. [mailto:jak@isp2dial.com John Kelly]&lt;br /&gt;
* [http://solib.ca/services-offerts/hebergement-haute-vitesse/serveurs-vps/ SOLIB Logiciel Libre Québec] Our company offers DDoS protected server solutions including OpenVZ containers. Very high availability and reliability, all our VPS are located in Quebec, Canada.&lt;br /&gt;
* [https://www.host-stage.net/linux-vps/ HostStage - Linux VPS] - Simple, Reliable OpenVZ VPS packed with 1 GBPS port speed, RAID 10 SSD, Intel Xeon CPU, DDoS Protection from $4.95/month&lt;br /&gt;
* [https://undergroundprivate.com/russiaoffshorevps.html  UndergroundPrivate.com] - OpenVZ with highly privacy, offshore , DMCA ignored , high confidence, SolusVM and cPanel, managed and non managed service.&lt;br /&gt;
* [http://www.vpsfast.us/canada-vps VPSFast] - VPS Provider with good prices in Canada.&lt;br /&gt;
* [https://websavers.ca/canadian-vps-hosting Websavers Inc in Halifax] - VZ containers priced by the resource. Resource changes entirely client-level.&lt;br /&gt;
* [https://www.yoorshop.fr/hosting-ssd-vps-usa-canada.php YOORshop SAS] - High performance NVMe SSD Linux VPS in Canada, daily backup included. Starting from €7,49 /month&lt;br /&gt;
&lt;br /&gt;
== Colombia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.datacorporate.co/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [http://www.soficol.com/ Soficol] Offers Enterprise OpenVZ based VPS, hosted on a clustered infrastructure and redundant network. Easy to use user management and instant setup.&lt;br /&gt;
* [https://www.hostingplus.com.co/ Hosting Plus Colombia] provide OpenVZ containers at our own datacenter in South America with triple internet provider. Starting from  us20/month&lt;br /&gt;
* [https://ibumu.com/ Ibumu] Best containers for wordpress starting from $5.5.&lt;br /&gt;
&lt;br /&gt;
== Czech Republic ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://4smart.cz 4Smart.cz] - prepaid, you are charged only by the system resources you use, therefore you can run a VPS for as little as  1 EUR a month if your vps is not resource hungry. Even if you pay  0,50 EUR  month, you still have 3 GB of RAM and 8 cores available to you VPS.&lt;br /&gt;
* [http://www.freecloud.cz FREECLOUD.CZ] - Free OpenVZ VPS Server - own IP, 800Mhz CPU, 512MB RAM, 50Mbits LAN, 10GB HDD, 100GB Traffic - Debian, Ubuntu, Gentoo, Slackware, Fedora, Centos&lt;br /&gt;
* [http://www.hukot.cz Hukot.cz] - OpenVZ VPS Servers starting from 2.92 €, XEON, 1 Gbps uplink, unlimited traffic. Debian, Ubuntu, CentOS, Scientific, SuSe, Fedora, Elastix.&lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [http://www.ultimatehosting.eu UltimateHosting.eu] - OpenVZ VPS Servers starting from $8 with custom configuration - up to 100 GB HDD, 2048 MB RAM, 2 GHz CPU, and unlimited traffic.&lt;br /&gt;
* [http://www.mujhost.net MUJHOST.NET] - OpenVZ VPS Servers starting from 160 Kč, 100Mbps / 1 Gbps uplink, unlimited traffic. Debian, Ubuntu, CentOS ...&lt;br /&gt;
&lt;br /&gt;
== Chile ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.1h.cl/ 1h.cl Vps - Chile] - VPS High Performance with OpenVZ in Chile&lt;br /&gt;
* [http://www.1hosting.cl/ 1hosting Virtual servers - Chile] - VPS Professional with OpenVZ&lt;br /&gt;
* [http://www.dch.cl/ DCH] - DCH.cl Hosting Chile - High Performance VPS Servers with OpenVZ &lt;br /&gt;
* [https://www.dominioweb.net/ Dominioweb] - Premium Hosting and domain registration&lt;br /&gt;
* [http://ecohosting.cl/ EcoHosting.cl Santiago - Chile] - VPS with OpenVZ in Chile&lt;br /&gt;
* [http://www.host.cl/ Host.cl] - Cloud Computing&lt;br /&gt;
* [https://www.hostingplus.cl/ HostingPlus Internet Limitada] - High Performance Vps provider in Chile&lt;br /&gt;
* [https://www.hostname.cl/ Hostname Ltda] - VPS Hosting with Datacenter in Chile&lt;br /&gt;
* [https://www.inc.cl/ INC Internet Limitada] - VPS Hosting provider in Chile&lt;br /&gt;
&lt;br /&gt;
== Denmark ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.vpsfast.us/denmark-cloud-server VPSFast] - VPS Provider with good prices in Denmark.&lt;br /&gt;
&lt;br /&gt;
== Ecuador ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.dedi.space/ DediSpace Telecom] - VPS Servers in Ecuador - USA, France, Germany, Ecuador Datacenter.&lt;br /&gt;
&lt;br /&gt;
== France ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.BargainVPS.co.uk/ BargainVPS] - UK / US / EU Instant setup VPS - We have some great Linux &amp;amp; Windows Bargain VPS packages on offer for you here all available Fully Managed.&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in France from 1.88EUR/month.&lt;br /&gt;
* [http://www.fixweb.com Fixweb] Great managed hosting provider with strong anti ddos solution - openvz only - leader in managed openvz solution with horizontal scaling and high availability&lt;br /&gt;
* [http://www.Freaksol.com/ FreaKs VPS Hosting] Self reliant hosted on independent networks &amp;amp; DC low ping,No restrictions on file types,Unlimited resources,high ram servers &lt;br /&gt;
* [https://galaxyhostplus.com/ovz GalaxyHostPlus] Cheap VPS Hosting based in Roubaix with new 2016 line starts from $2/Month &lt;br /&gt;
* [http://www.harmony-hosting.com Harmony-Hosting] A high performance VPS hosting - The leader in France&lt;br /&gt;
* [https://www.delimiter.com/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [http://www.lws.fr/serveur_dedie_linux.php LWS - Linux VPS ] - Linux VPS Hosting - Only 9.99€/month, Affordable and Secure OpenVZ VPS Servers with 99.99% up-time, web hosting control panel Included. French datacenter&lt;br /&gt;
* [http://www.ovh.co.uk/vps/ OVH VPS] linux from 3€/month, [http://www.ovh.co.uk/vps/vps-cloud.xml windows] from 12€/month.&lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [https://VPSZ.FR VPSZ] VPS Hosting in France. Starting from 2,99€, Unlimited traffic.&lt;br /&gt;
* [http://www.1euro-hosting.eu BEST EU VPS - 1€ Hosting] - Providing reliable and secure OpenVZ VPS Servers with 99.99% up-time, starting from 8€&lt;br /&gt;
* [https://www.shape.host/linux-vps/ Shape Host - Linux VPS] - OpenVZ virtual servers, Instant Linux VPS&lt;br /&gt;
* [https://undergroundprivate.com/russiaoffshorevps.html  UndergroundPrivate.com] - OpenVZ with highly privacy, offshore , DMCA ignored , high confidence, SolusVM and cPanel, managed and non managed service.&lt;br /&gt;
* [https://www.host-stage.net/linux-vps/ HostStage - Linux VPS] - Simple, Reliable OpenVZ VPS packed with 1 GBPS port speed, RAID 10 SSD, Intel Xeon CPU from $4.95/month&lt;br /&gt;
* [https://www.yoorshop.hosting/hosting-vps-ssd-europe.php YOORshop SAS] - High performance NVMe SSD OpenVZ 7 VPS within 13 countries in Europe, Canada and Singapore. Daily backup included. From €7,49 /month&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Germany ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://afterburst.com Afterburst (Previously FanaticalVPS)]: affordable unmetered, unmanaged VPS servers in Germany.&lt;br /&gt;
* [http://www.b2b-hosting.de/vps/ B2B Hosting]: Professional virtual servers for business applications. Performance and reliability at a fair price. Made with OpenVZ.&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in Germany from 1.88EUR/month.&lt;br /&gt;
* [https://www.delimiter.com/dedicated-servers/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [https://galaxyhostplus.com/ovz GalaxyHostPlus] Cheap VPS Hosting based in Frankfurt with new 2016 line starts from  $2/Month&lt;br /&gt;
* [http://hostmist.com/openvz-vps-germany.html Host Mist]: features budget OpenVZ VPS hosting in Germany.&lt;br /&gt;
* [http://www.host1plus.com/ Host1Plus] Servers based in Frankfurt am Main. Offering reliable OpenVZ based VPS servers in Germany starting from $2.50 per month.&lt;br /&gt;
* [http://www.hostingjuice.com/ HostingJuice] The Superioum VPS and Web Hosting provider, low prices - Premium packages.&lt;br /&gt;
* [http://www.ingate.de/managed-server.html Ingate] offers managed servers with openVZ virtualization. located in germany, great support.&lt;br /&gt;
* [http://linevast.de/angebote/linux-openvz-vserver-mieten.html Linevast] Reliable OpenVZ based VPS with fast support, located in germany&lt;br /&gt;
* [https://cp.myvirtualserver.com/?affid=42 MyVirtualServer]: Cheap VPS (OpenVZ/KVM, 5TB Traffic, 10Gigabit), servers located in Frankfurt (best ping, starting 1.99€) good support (en/de) //New Design!&lt;br /&gt;
* [https://www.nogics.com Nogics Technologies]: Affordable VPS based in Germany. Starts from $5.96/mo.&lt;br /&gt;
* [http://www.plambee.de/vserver.php Plambee.de Webhosting]: Powerfull OpenVZ based VPS servers at low cost with hosting in Germany&lt;br /&gt;
* [https://rackset.com/ Rackset Hosting] Managed Dedicated / VPS and Website Hosting services since 2004.&lt;br /&gt;
* [http://www.serverbiz.de/vserver Serverbiz] Powerful VPS at very low prices.&lt;br /&gt;
* [http://www.synapseglobal.com/voip_vps.html SynapseGlobal.com] Elastix, Trixbox, PBX in a Flash and Asterisk VPS - OpenVZ based Asterisk VOIP servers located in Munich Germany.&lt;br /&gt;
* [http://www.vStarVPS.com vStarVPS]: Reliable VPS Hosting at lowest prices, with 99.9% uptime, Premium Unmetered Bandwidth and Custom HDD/RAM of your choice. Instant and FREE Setup. RapidLeech Allowed.&lt;br /&gt;
* [http://whynotavps.com WhyNOTaVPS]: Instant activated VPS SERVERS!!&lt;br /&gt;
* [http://squote.de/index.php?ref=1421485383 SQuote]: SQuote VPS Hosting and more. VPS 1 Core, 1.024MB RAM, 512MB RAM SWAP, 50 GB HDD, 1x IPv4. 3,89EUR/month. For the best VPS SQuote.de&lt;br /&gt;
* [http://www.vpsfast.us/germany-vps VPSFast] - VPS Provider with good prices in Germany.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Guatemala ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.globalnetcafe.com/gnc/menu/hospedaje.htm Global Net Cafe]: Servicios de hospedaje, reseller, vps, colocacion y servidores. Incluyendo OpenVZ.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Hong Kong ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [https://hostus.us HostUS] features unmanaged and managed OpenVZ VPS in Hong Kong as well as 3 USA locations. Unparalleled connectivity to the Asia Pacific. Enjoy 15% off with coupon VPS15OFF.&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides self-managed OpenVZ based SSD VPS in Hong Kong, located at the Pacnet datacenter. &lt;br /&gt;
* [http://vps.timway.com/linux_vps.html Timway VPS Hosting] - Quality, non-oversold hosting provider focused on being security conscious and offering a positive client experience.   Centos, Debian, Fedora, OpenSuse and Ubuntu Containers are available.&lt;br /&gt;
* [http://www.vpsfast.us/hong-kong-cloud-server VPSFast] - VPS Provider with good prices in Hong Kong.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Hungary ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://elin.hu/index.php?menu=8&amp;amp;nyelv=hu&amp;amp;cim=Virtualis-szerver Virtual server] OpenVZ server: 2xX5650 Intel Xeon, 32GB RAM, 15.000rpm SAS disks, 100Mbit/s, unlimited bandwith.&lt;br /&gt;
* [https://www.ivirtual.co/vps-hosting/ iVirtual.co ] OpenVZ Master Server: 2x Intel Xeon @ 3.0GHZ, 64 GB ECC Ram, 15k RPM SAS HDD's, 1Gbit/s Network, Unlimited bandwith.&lt;br /&gt;
&lt;br /&gt;
== Iceland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
&lt;br /&gt;
== Ireland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== India ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://cochinwebhost.in/budget-vps-hosting/ Low Cost VPS Hosting] Fast SSD VPS Server for Hosting Solutions at budget prices with 24x7 Technical Support.&lt;br /&gt;
&lt;br /&gt;
* [http://www.datacorporate.in/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
&lt;br /&gt;
*[http://www.fastwebhost.in/vps-hosting.html fastwebhost VPS Hosting] VPS hosting offered by fastwebhost are powered by ''VPS hosting, virtual server hosting and Linux VPS hosting services''. Fully Managed VPS with control panels.&lt;br /&gt;
&lt;br /&gt;
* [http://www.Freaksol.com/ Freaksol VPS Hosting] Self reliant hosted on independent networks &amp;amp; DC low ping to India,No restrictions on file types,Unlimited resources,high ram servers&lt;br /&gt;
&lt;br /&gt;
* [https://www.geniushost.in Genius Host] Fully managed [https://www.geniushost.in SSD Web Hosting] offered by Genius Host are powered by ''OpenVZ'' With LiteSpeed Web Server &amp;amp; Mariadb.&lt;br /&gt;
&lt;br /&gt;
* [http://www.hioxindia.com/virtual-private-server.php VPS Hosting] Reliable and quality VPS Virtual Private Server Hosting&lt;br /&gt;
&lt;br /&gt;
* [https://www.hostnamaste.com HostNamaste] is your high-performance [https://www.hostnamaste.com/openvz-vps.php OpenVZ VPS Hosting] Provider. Get your perfect [https://www.hostnamaste.com/openvz-vps.php VPS Hosting] account today! Available in [https://www.hostnamaste.com/datacenter-losangeles.php Los Angeles], [https://www.hostnamaste.com/datacenter-dallas.php Dallas], [https://www.hostnamaste.com/datacenter-jacksonville.php Jacksonville], USA,  [https://www.hostnamaste.com/datacenter-france.php France], Europe, [https://www.hostnamaste.com/datacenter-mumbai-pune.php Mumbai], India and [https://www.hostnamaste.com/openvz-vps-moscow-russia.php Moscow], Russia.&lt;br /&gt;
&lt;br /&gt;
* [https://www.hostsoch.in/windows-hosting.html HostSoch Windows Hosting] Windows hosting offered by HostSoch are powered by ''Windows 2012, ASP.NET, MVC, IIS, PHP and More''. 99.9% Uptime, 24/7 Dedicated support guaranteed. &lt;br /&gt;
&lt;br /&gt;
* [https://www.miditech.co.in/ MidiTech VPS Hosting] VPS hosting offered by MidiTech are powered by ''VMware, ''. Fully Managed VPS with control panels. &lt;br /&gt;
&lt;br /&gt;
* [http://www.milesweb.com/vps-hosting.php Milesweb VPS Hosting] VPS hosting offered by Milesweb are powered by ''VMware, OpenVZ''. Fully Managed VPS with control panels. &lt;br /&gt;
&lt;br /&gt;
* [https://www.nogics.com/web/vps-hosting/ Nogics Technologies] Instant provisioning of VPS, VPS starts from $5.96/mo. 30+ OS templates.&lt;br /&gt;
&lt;br /&gt;
* [http://overlineindia.net/vpshosting-p-62.html Overline India VPS Hosting] Fully managed cPanel Installed VPS Hosting with 24x7x365 Live Chat Tech support, powered by OpenVZ&lt;br /&gt;
&lt;br /&gt;
* [http://www.prohosterz.com/linux-vps.php ProHosterZ VPS Hosting] Reliable and quality Virtual Dedicated Servers | Virtual Private Servers | XEN VPS | OpenVZ VPS | Virtual Hosting&lt;br /&gt;
&lt;br /&gt;
* [http://pve.proxmox.com/wiki/User:Apmuthu Ap.Muthu] sponsored by [http://www.gnuacademy.org GNUAcademy], [http://www.planettel.com.sg PlaNetTel] and [http://www.sacollege.net S A College] creates OpenVZ Templates for the Open Source Community and provides hosting in datacenters of clients choice or on site.&lt;br /&gt;
&lt;br /&gt;
* [http://www.servers.co.in/vps/vps_hosting.php Server Web Hosting] Offers Fully Managed OpenVZ VPS Web hosting in India/US/UK at affordable and cheap rates with best hardware quality and customer service 24/7/365 days&lt;br /&gt;
&lt;br /&gt;
* [http://vpsbeach.com VpsBeach Managed Hosting] Fully managed cPanel Installed VPS Hosting with 24x7x365 Live Chat Tech support, powered by OpenVZ&lt;br /&gt;
&lt;br /&gt;
* [http://www.vpsfast.us/india-vps VPSFast] - VPS Provider with good prices in India.&lt;br /&gt;
&lt;br /&gt;
* [http://www.vpshostingindia.net/ VPS Hosting India, Fully Managed Server] A Committed Fully Managed VPS Server for Hosting solution in India, Complete Technical Support assistance with commitment of fast, clustered and most supportive DataCenters.&lt;br /&gt;
* [http://touchstone.hosting/ Touchstone Solutions Private Limited] High-performance Enterprise VPS Hosting in India. One of the highest performing VPS Servers available with cPanel Installed.&lt;br /&gt;
* [http://www.hostitsmart.com/ Host IT Smart] - One of the best VPS Hosting Provider in India with 24X7X365 Customer support.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Indonesia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.herza.id/vps-murah/ Herza.ID] Low Cost OpenVZ Virtual Server, starting from IDR 50.000 / Month with RAID 10 SSD, Unlimited Bandwidth with 1 Gbps IIX &amp;amp; OIXP Connection, and 24/7 Technical Support.&lt;br /&gt;
&lt;br /&gt;
== Iran==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.ehost.ir EHost.ir] - OpenVZ Servers , DUAL XEON Cpus , 12 Gb Ram , 100Mbit Dedicated Connection , SAS HardDisk&lt;br /&gt;
* [http://www.vpsfa.com VPSFa.com] - OpenVZ Servers , DUAL XEON Cpus -  , 24Gb Ram , 1000Mbit Dedicated Connection , SAS HardDisk&lt;br /&gt;
* [https://webramz.com Webramz Host] - With more than 15 years experience in Managed Hosting, Webramz was first vps provider in Iran which used to setup OpenVZ servers. Nowadays we provide wide range of services including CloudLinux based OpenVZ and Managed Vps Servers.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Italy ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
* [http://www.hosting-italia.net hosting italia] - OpenVZ Servers and panel enduser Virtualizor Intel® Core™ i7-920 Quad-Core 48 GB DDR3 RAM - Guaranteed Bandwidth 200 Mbit/s&lt;br /&gt;
* [http://www.vpsfast.us/italy-vps VPSFast] - VPS Provider with good prices in Italy.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Liechtenstein ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
&lt;br /&gt;
== Lithuania ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.cloudlix.com/ CloudLix.com] - Managed and unmanaged OpenVZ virtual servers based on 2.6.32 kernel. Up to 20GHz (Intel SandyBridge) CPU and 10GB RAM. Located in Vilnius and Siauliai.&lt;br /&gt;
* [http://www.databank.lt/ databank.lt] - high-quality professional OpenVZ hosting with cloud computing solutions.&lt;br /&gt;
* [https://www.hostens.com Hostens] - Fast and reliable OpenVZ servers in Lithuania.&lt;br /&gt;
* [https://www.lavavps.lt/ lavavps.lt] - Professional high-quality OpenVZ containers (VPS servers) affordable for everyone. Powerful control panel for VPS management.&lt;br /&gt;
* [https://monovm.com/ monovm.com] - High Quality VPS Hosting Provider&lt;br /&gt;
* [http://www.serveriai.lt/ Serveriai.lt] - Affordable OpenVZ containers on quality HP hardware. Wide choice of virtual dedicated servers up to 8 CPU cores and 8 GB RAM. Full management available. Located in Vilnius.&lt;br /&gt;
* [https://billing.time4vps.eu/?affid=1359 Time4VPS.EU] - Powerful cloud technology based infrastructure will let you build custom virtual machine and pay only for what you really need. Located in Vilnius city.(0.99€/month(2Yr) 512mbRAM, 1TB Traffic// 4.5€/month(2Yr) StorageVps, 1TB, 10TB Traffic)&lt;br /&gt;
* [https://www.vpsnet.lt/en/ VPSnet.lt] - Powerful and high quality servers for a competitive price in Lithuania (Eastern Europe).&lt;br /&gt;
* [http://www.vpsfast.us/lithuania-vps VPSFast] - VPS Provider with good prices in Lithuania.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Latvia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.altnet.lv/ Altnet] - Hosting and colocation services. Any flawor, you name it. &lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
&lt;br /&gt;
* [http://www.vpsfast.us/latvia-vps VPSFast] - VPS Provider with good prices in Latvia.&lt;br /&gt;
&lt;br /&gt;
== Luxembourg ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.vpsfast.us/luxembourg-vps VPSFast] - VPS Provider with good prices in Luxembourg.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Malaysia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.cubiex.com/ Cubiex] - Malaysia Affordable Web Hosting and Domain Name. Affordable Linux VPS Hosting in Malaysia. OpenVZ based, Quad Core Xeon node. cPanel/WHM and DirectAdmin also available.&lt;br /&gt;
* [https://controlvm.com ControlVM] ControlVM Sdn. Bhd. offering OpenVZ VPS in Singapore, Malaysia, USA and Germany.&lt;br /&gt;
* [https://www.yoorshop.fr/hosting-ssd-vps-singapore-asia.php YOORshop SAS] - High performance SSD Linux VPS In Singapore with daily backup included. Starting from €7,49 /month&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Malta ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.a6it.com/ A6iT] - Stable, quality managed OpenVZ VPSs based in Malta.  Redundant network.&lt;br /&gt;
&lt;br /&gt;
== Morocco ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.belsemtech.com/ BelsemTech.CoM] BelsemTech SARL offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from 300 DH. Virtual Private Server (VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://www.hostoweb.com/ HosToWeb] is the only company providing VPS hosting in Morocco Data Center.&lt;br /&gt;
* [http://www.adk-media.com/ ADK Media] provides affordable managed and unmanaged virtual servers based on OpenVZ, Xen Paravirtualization and Xen HVM platforms. 24/7 Technical Support. Distros: Centos, Fedora, Debian, Ubuntu and more.&lt;br /&gt;
* [http://www.naja7host.com/ Naja7Host.CoM] The Naja7host SARL provides affordable VPS hosting using the OpenVZ platform. Running on Full Quality Nodes of up to 8 CPU and 16 GB RAM. . All VPS's come with Real 24/7/365  Technical Support and cPanel free (if option selected  ). Multiple choice of OS 32/64Bits (Centos, fedora, ubuntu, debian .ect ...)&lt;br /&gt;
* [http://www.lehoster.com/ Le Hoster] offers affordable Virtual Private Servers using the OpenVZ and KVM platform. Backed with our amazing customer support.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Netherlands ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.avanpad.com/ Avanpad] offers OpenVZ VPS hosting with 24\7 online support. Customer can request different control panels or templates for installation on his VPS.&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in Netherlands from 1.88EUR/month.&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
* [http://www.Freaksol.com/ FreaKs VPS Hosting] Self reliant hosted on independent networks &amp;amp; DC low ping around the world,No restrictions on file types,Unlimited resources,high ram servers&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [http://www.HostSailor.com/ HostSailor] Number 1 Netherlands Provider HostSailor provides affordable &amp;amp; high quality services such as VPS (XEN, OpenVZ and KVM) Linux or Windows, Dedicated servers, SSL certificates and domain name services.&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides self-managed OpenVZ SSD VPS in Telecity AMS 5, one of the best datacenters located in the Amsterdam area.&lt;br /&gt;
* [https://iniz.com/ INIZ VPS Hosting] INIZ provides affordable VPS Hosting in Amsterdam, Netherlands with high resources at low prices.&lt;br /&gt;
* [https://www.liteserver.nl/ LiteServer] Looking for a quality and affordable VPS in the center of The Netherlands? We provide SSD, Storage and High Bandwidth VPSes, starting at only €16 per year. We operate AS60404.&lt;br /&gt;
* [https://www.mangelot-hosting.nl/ Mangelot Hosting] Mangelot Hosting, A webhosting company located in the Netherlands, offers budget OpenVZ hosting solutions for maximum scalability en performance.&lt;br /&gt;
* [http://www.osbox.nl OsBoX Dutch Network Engineering] Cheap VPS host as low as $1 per month. Very great uptime and a overall good support. Check the website for the server plans.&lt;br /&gt;
* [http://www.signet.nl/ Signet VPS Hosting] - Signet delivers VPS hosting plans based on CentOS or Debian templates, including control-panel Virtualmin.&lt;br /&gt;
* [http://simple-webhosting.eu/ Simple-webhosting.eu] - OpenVZ based web hosting starting from €0.98 per month.&lt;br /&gt;
* [https://www.seedvps.com SeedVPS] Provides Powerful &amp;amp; Reliable OVZ/KVM VPS Hosting in The Netherlands&lt;br /&gt;
* [http://www.touchvps.com/ TouchVPS] is a company who offer Support and Managed Services for OpenVZ Servers ,also offer templates for openvz ready to go with cPanel , DirectAdmin , Plesk , Games, IRC Services, Desktop and many more.&lt;br /&gt;
* [http://www.voipcomplete.com/product-overview/dedicated-vps.html VOIPcomplete] offers dedicated VPS plans based on CentOS including a VPS management interface.&lt;br /&gt;
* [https://www.waveride.at/ Waveride] Waveride, an EDIS company, offers budget full gigabit OpenVZ + solusVM VPS in Austria, USA and the Netherlands&lt;br /&gt;
* [https://undergroundprivate.com/russiaoffshorevps.html  UndergroundPrivate.com] - OpenVZ with highly privacy, offshore , DMCA ignored , high confidence, SolusVM and cPanel, managed and non managed service.&lt;br /&gt;
* [https://www.totallyhosted.nl/ TotallyHosted] OpenVZ based Premium VPS services located in the Netherlands @ Serverius DC.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [http://www.vpsfast.us/netherlands-vps VPSFast] - VPS Provider with good prices in Netherlands.&lt;br /&gt;
&lt;br /&gt;
== Norway ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.vpsfast.us/norway-vps VPSFast] - VPS Provider with good prices in Norway.&lt;br /&gt;
&lt;br /&gt;
== Pakistan ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://vimzaa.com/ Vimzaa] The best hosting in Pakistan.&lt;br /&gt;
&lt;br /&gt;
== Philippines ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.web.com.ph/vps.php Web.com.ph] - provides OpenVZ virtual servers in the Philippines.&lt;br /&gt;
&lt;br /&gt;
== Perú ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.hn.pe/ Hostname] Hostname offers business OpenVZ containers in Perú&lt;br /&gt;
* [http://www.hostingandino.pe/ Hostingandino Lima - Peru] - VPS with OpenVZ in Peru&lt;br /&gt;
* [http://www.hostingplus.pe/ HostingPlus Internet Limitada] - High Performance Vps provider in Peru&lt;br /&gt;
* [https://www.hostingroup.com/ Hostingroup] Web hosting for small businness in Perú.&lt;br /&gt;
* [https://hostingweb.pe/ Hosting Web] The best hosting in PERU.&lt;br /&gt;
* [https://www.inchosting.pe/ HostingINC SAC] OpenVZ virtualization solutions for business in Perú.&lt;br /&gt;
* [https://www.mejorhosting.pe/ Mejor Hosting Perú] Hosting comparison for peruvian hosting providers.&lt;br /&gt;
* [https://webuniversal.pe/ Web Universal] The best hosting in PERU in the World.&lt;br /&gt;
&lt;br /&gt;
== Poland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://hosteam.pl/ HosTeam] offers OpenVZ VPS hosting from their DataCenter in Poland. Customer has choice of all major Linux distros (WARNING!!! restoring your backup is VERY expensive and they charge even if it wasn't restored correctly!), NATIVE IPV6 AVAILABLE!&lt;br /&gt;
&lt;br /&gt;
* [http://ultimahost.pl/ UltimaHost] high grade OpenVZ VPS and FreeBSD jail (DC in Łódź, Poland), brand of statnet.pl, SSD available for more expensive packets, NO IPV6 AVAILABLE (but they can load you tun module)&lt;br /&gt;
&lt;br /&gt;
* [http://budgetvps.pl/ BudgetVPS] very cheap, low end grade OpenVZ VPSes (DC in Gdańsk, Poland), brand of HitMe.pl&lt;br /&gt;
&lt;br /&gt;
* [https://hitme.pl/ HitMe.pl] high grade OpenVZ/Xen PV/Xen HVM VPSes, Virtuozzo (DC in Gdańsk, Poland), NATIVE IPV6 AVAILABLE (/64 on demand for free)!&lt;br /&gt;
&lt;br /&gt;
* [http://www.kr-cpd.pl/oferta/serwery-vps/ KR-CPD] Cracow's Center of Data Processing (DC of course in Cracow, Poland)&lt;br /&gt;
&lt;br /&gt;
* [http://livenet.pl Livenet] cheap, middle/low end OpenVZ VPSes (DC in Łódź, Poland)&lt;br /&gt;
&lt;br /&gt;
* [http://slaskdatacenter.pl/ Śląsk Data Center] high/middle grade OpenVZ VPSes (DC in Silesia province, Poland), SSD available for more expensive packets&lt;br /&gt;
&lt;br /&gt;
* [https://www.ionic.pl/ IONIC.pl] VPS OpenVZ with SolusVM control panel, own DC in Cracow&lt;br /&gt;
&lt;br /&gt;
* [https://microvps.pl/ MicroVPS.pl] Middle And low end OpenVZv7 VPS plans. SSD for regular VPS and HHD for storage plans (up to 1TB)&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Portugal ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.ptservidor.pt/ PTServidor] - OpenVZ virtual servers with free management based in Portugal.&lt;br /&gt;
* [http://www.efeito.net/ Weblevel.pt] - OpenVZ virtual servers based in Portugal.&lt;br /&gt;
* [https://www.webtuga.pt/ WebTuga] - Managed/Unmanaged Virtual Private Servers hosted in a Portuguese Datacenter with lots of extras&lt;br /&gt;
* [https://www.cloudfire.pt/ CloudFire] - OpenVZ VPS at very low prices hosted in Portugal&lt;br /&gt;
* [https://www.linxisp.com/ LINXISP] - High Availability &amp;amp; Performance OpenVZ Containers&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] - Build an OpenVZ VPS in 14 locations WordWide From £2.49&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Romania ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.intovps.com IntoVPS] - offers unmanaged OpenVZ virtual servers based in Romania, Netherlands and USA. A lot of resources for decent prices.&lt;br /&gt;
* [http://www.ename.ro/dedicated.html eName] - managed OpenVZ virtual servers in Bucharest, Romania&lt;br /&gt;
* [http://www.ch-center.com/virtual-servers Ch-center] - unmanaged OpenVZ virtual servers, based in Romania in it's own Data Center&lt;br /&gt;
* [http://www.clouds.ro/servere-virtuale/ Clouds] - OpenVZ virtual servers hosted on premium hardware, in Romania&lt;br /&gt;
* [http://www.HostSailor.com/ HostSailor] HostSailor provides affordable &amp;amp; high quality OpenVZ and KVM servers in Romania&lt;br /&gt;
* [https://www.shape.host/linux-vps/ Linux VPS] - OpenVZ virtual servers, Instant Linux VPS&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Russia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.internoc24.host Internoc24.HOST] is an international [https://www.www.internoc24.host Offshore VPS ] provider with reliable SSD VPS in Moscow, Russia. Focus ist on high privacy protection so they accept several Cryptocurrencies like Bitcoin, Ethereum and others for anonymous payments.&lt;br /&gt;
* [http://www.ihc.ru/vps.html IHC.RU] - VPS hosting in Moscow, Russia starting at $10/month with good set of precreated templates&lt;br /&gt;
* [http://mchost.ru/services/linux-vps/ McHost.ru] - Linux VDS Hosting from McHost.&lt;br /&gt;
* [http://hosting.agava.ru/vps/ AGAVA] - Linux VPS hosting based on OpenVZ.&lt;br /&gt;
* [http://vdsplanet.ru/ VDSPlanet.ru] - unmanaged VDS/VPS hosting starting at 3.99$ a month. Large variety of OS templates and free ISPmanager Lite control panel. Total automation is our goal.&lt;br /&gt;
* [http://www.demos.ru/service/datacenter/vps.html Demos-Internet] - we offer OpenVZ Virtual Private Server based on Linux.  All VPS come with ISPmanager control panel.&lt;br /&gt;
* [http://www.net.ru/service/net9/ www.net.ru] - OpenVZ virtual private servers.&lt;br /&gt;
* [http://www.eurobyte.ru/ Eurobyte.ru] - Linux VDS Hosting from Eurobyte.&lt;br /&gt;
* [https://undergroundprivate.com/russiaoffshorevps.html  UndergroundPrivate.com] - OpenVZ with highly privacy, offshore , DMCA ignored , high confidence, SolusVM and cPanel, managed and non managed service.&lt;br /&gt;
* [http://www.telekom.ru/service/vps.html Elvis Telekom] - OpenVZ hosting with base and cpanel templates from Elvis Telekom.&lt;br /&gt;
* [http://fastvps.ru/vds/ FastVPS] - OpenVZ hosting, ISPmanager, Hetzner, MayFlower.&lt;br /&gt;
* [https://lepus.su/vps.html Lepus] - OpenVZ hosting, SSD, ISPmanager free, Hetzner.&lt;br /&gt;
* [http://www.hts.ru/vds/ HTS] - OpenVZ hosting, ISPmanager, Linux VPS hosting based on OpenVZ in Moscow.&lt;br /&gt;
* [https://selectel.ru/services/vds/ Selectel] - OpenVZ hosting.&lt;br /&gt;
* [https://galaxydata.ru/root-server/ GalaxyData] - Virtuozzo Containers in Cloud Storage.&lt;br /&gt;
* [http://hosterbox.ru/servers/ Hosterbox.ru] - Managed VPS hosting. Based on OpenVZ + SolusVM + ISPmanager.&lt;br /&gt;
* [https://firstvds.ru FirstVDS.ru] - One of the leading hosting companies providing virtual private servers.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Singapore ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://conceptlane.com/?t=hostingservices#ratesvps ConceptLane Pte Ltd] - OpenVZ VPS on dual octa-core AMD Opterons running Debian Wheezy 7, custom control panel with bandwidth graphs, reboot/reinit and web-based VNC access.&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [http://www.qoxy.com/vps QOXY.com] Affordable and Reliable OpenVZ VPS Hosting in a Singapore Data Center.&lt;br /&gt;
* [http://www.secureax.com/ SecureAX Pte Ltd] - Singapore Premium Internet Solution Provider&lt;br /&gt;
* [http://www.planettel.com.sg PlaNetTel] - Affordable and customised OpenVZ containers across 3 data centers - contact Thomas Festus at +65-66936881. [http://pve.proxmox.com/wiki/User:Apmuthu#Squeeze_based_Templates Sponsors OpenVZ Container Template]s for the Open Source community.&lt;br /&gt;
* [http://www.vpsfast.us/singapore-vps VPSFast] - VPS Provider with good prices in Singapore.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Serbia ==&lt;br /&gt;
* [https://www.skyhosting.rs/en/vps-servers SkyHosting] - Fast Linux OpenVZ VPS SSD Hosting with SolusVM control panel.&lt;br /&gt;
* [https://www.ninet.rs/en/vps-servers NiNet Company] - Linux OpenVZ VPS servers. Well known VPS hosting company from Serbia with their own data center&lt;br /&gt;
* [http://www.suonline.net SuOnline.Net ISP] - Linux OpenVZ VPS servers, Docker enabled !!!&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== South Africa ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.host1plus.com/ Host1Plus] - Local South African servers hosted in Johannesburg. OpenVZ VPS servers starting from $3.00 per month.&lt;br /&gt;
* [http://www.vps.co.za/ VPS.CO.ZA] - South Africa's oldest VPS provider. Local South African servers with SolusVM control panel. OpenVZ, Xen and OnApp Cloud.&lt;br /&gt;
* [http://247hosting.co.za/vpshosting.php 247Hosting] - OpenVZ virtual servers locally in South Africa with SolusVM control panel. cPanel option available!&lt;br /&gt;
* [http://www.SoftDux.co.za/ SoftDux] - OpenVZ virtual servers based America &amp;amp; South Africa. All VPS's come with cPanel or Plesk control panels. XEN VPS's also available.&lt;br /&gt;
* [http://www.clickworks.co.za/ Clickworks] - OpenVZ / Xen VPS servers hosted in RSA. Backed by Solusvm control panel.&lt;br /&gt;
* [http://www.elitehost.co.za/ Elite Host] - OpenVZ virtual servers based in America &amp;amp; South Africa. All VPS's come with cPanel and unlimited bandwidth.&lt;br /&gt;
* [http://www.telasera.com/ Telasera] - OpenVZ VPS servers hosted in South Africa. Supermicro Servers powered by Intel Xeon with 24/7 Support.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Spain ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.actiu.net/pro/ Actiu informatica]&lt;br /&gt;
* [http://www.corpresa.com/servidores-virtuales.html Corpresa Hosting] - Tiene algún proyecto entre manos y un plan de hosting no le hes sufuciente y un servidor dedicado no está dentro de su presupuesto?, una solución de VPS a medida será la que cubrirá todas sus necesidades.&amp;quot;&lt;br /&gt;
* [https://www.datomedia.es Datomedia] - Cloud alta disponibilidad powered by Virtuozzo 6 y Servidores VPS bajo openvz y kvm.&lt;br /&gt;
* [https://www.evidaliahost.com/vps/ EvidaliaHosting] - Servidores VPS totalmente configurados con panel de gestión Plesk 12.5, garantía de devolución de 30 días y posibilidad de discos SSD.&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
* [https://ginernet.com/vps-ssd.php GINERNET] - Servidores VPS alojados en España desde 1.99€/mes.&lt;br /&gt;
* [https://www.hostingplus.com.es Hosting Plus España] provide OpenVZ containers at our own datacenter. Starting from us20/month RAID 10 SSD.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Sweden ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.admax.se/vps/ Admax] - Admax offers enterprise grade virtual servers with great pricing. Custom control panel, API, remote access &amp;amp; more.&lt;br /&gt;
* [https://www.acon.se/vps Acon VPS Server] - VPS Server and Dedicated server provider in Sweden.&lt;br /&gt;
* [https://www.glesys.com/vps.php GleSYS] - VPS Provider with a great control panel and good prices&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides the highest quality SSD VPS in Stockholm, Sweden. Based on completely pure SSD in RAID-10 and delivering extremely high network &amp;amp; hardware performance along with reliability.&lt;br /&gt;
* [https://www.nametyper.com NameTyper] - VPS and Shared hosting provider. Customize your own OpenVZ Container with 1-12 cores running on SSD and ECC RAM. &lt;br /&gt;
* [https://virtualcenter.se VirtualCenter] - The first Cloud provider with SSD VPS in Sweden. Offer enterprise class hardware and network infrastructure&lt;br /&gt;
* [http://www.vpsfast.us/sweden-vps VPSFast] - VPS Provider with good prices in Sweden.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Switzerland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
* [http://www.vpsfast.us/switzerland-vps VPSFast] - VPS Provider with good prices in Switzerland.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Tanzania==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.aptus.co.tz/ Aptus Solutions] - OpenVZ / SolusVM VPS Servers located in Dar es Salaam - 100meg to TIX. CentOS &amp;amp; Ubuntu.&lt;br /&gt;
&lt;br /&gt;
== UK ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.34sp.com/ 34SP.com] - We're a UK based web hosting company, bridging the gap between sophisticated hosting solutions &amp;amp; affordable prices&lt;br /&gt;
* [http://www.AceShells.com/ AceShells] - Fast, stable, high quality UK based virtual private servers from just £5 a month, operating since 2001&lt;br /&gt;
* [http://www.AtlanticServers.com/ Atlantic Servers] - Affordable VPS, stable, high quality VPS, UK based Data Centre&lt;br /&gt;
* [https://awebhosting.uk/ AWebHosting.uk] VPS hosting offered by [https://awebsolutions.uk/ AWEBSOLUTIONS LIMITED] reliable UK hosting provider located in London, UK and Hosted in UK DataCentre.* [http://www.BargainVPS.co.uk/ BargainVPS] - UK / US / EU Instant setup VPS - We have some great Linux &amp;amp; Windows Bargain VPS packages on offer for you here all available Fully Managed.&lt;br /&gt;
* [http://www.cheapvps.co.uk/ CheapVPS] - CheapVPS provide cheap, UK based OpenVZ VPS servers. Hosted on high end hardware, in a top UK datacenter backed up with 24/7/365 support. Choice from a wide range of Linux distros. OpenVZ VPS managed with SolusVM.&lt;br /&gt;
* [http://www.chilliserver.com/ Chilliserver] - Affordable plans starting from just £3.99, not oversold. RHEL6 Kernel with VSwap, TUN/TAP/FUSE and ACL support enabled. SolusVM control panel with custom snapshot system and rescue system. Based in a European data Centre with UK based support.&lt;br /&gt;
* [http://www.chvps.com/ CHVPS] - Switzerland Based VPS, Cheap Pricing with solusVM control panel.&lt;br /&gt;
* [http://www.cislondon.co.uk/virtual-private-servers/ Commercial Internet Solutions] - CIS provides premium hosting at competitive rates, focused on Small Businesses within the M25 orbital. Hosting is on Dual Quad core Intel Xeon supermicro servers in Tier 4 datacenters around London.&lt;br /&gt;
* [http://www.datacorporate.co.uk/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [http://domvps.com/ domVPS] - OpenVZ Virtual Servers in the USA, Germany, France &amp;amp; the Netherlands at a low cost.&lt;br /&gt;
* [http://www.DubHosting.co.uk/ DubHosting] - DubHosting started in 2004 has been providing cost effective hosting to clients world wide. Fully managed OpenVZ servers based in Europe &amp;amp; US are one of their many strong points. They can provide you with a dedicated server and install openvz allowing you to sell your own vps servers. Their servers are located at UKGrid in Manchester with 24/7/365 support&lt;br /&gt;
* [http://www.europhase.net/virtual-private-servers/ Europhase UK Limited, UK VPS] - OpenVZ VPS Hosting, Virtual Dedicated Servers, UK VPS hosted at multiple UK datacentres from £4.99&lt;br /&gt;
* [https://farbyte.uk/vps Farbyte VPS] - UK based OpenVZ VPS and shared web hosting services&lt;br /&gt;
* [http://www.fdqwholesale.co.uk FDQ Wholesale] - UK based hosting services&lt;br /&gt;
* [http://www.gemvps.net/ GemVPS.NET] - UK (Manchester) Based Company, OpenVZ Virtual Servers in the UK &amp;amp; France on Fast nodes.&lt;br /&gt;
* [http://www.hadrill.org.uk Hadrill Online] - Fully managed hosting with unlimited bandwidth. Quotes available through contact form.&lt;br /&gt;
* [http://www.infrenion.com./uk_vps_hosting.html Infrenion Networks UK] Cheap, economical and reliable web hosting solutions, VPS based on the openVZ platform. You can host any YouTube Clone scripts with free FFMPEG setup on our vps servers. Also offers with a choice of selecting DataCenter.&lt;br /&gt;
* [https://www.laws-hosting.co.uk/vps-hosting.php Laws Web Hosting] - Laws Web Hosting offers OpenVZ VPS Hosting with packages starting from £5.50/m that will cater for anyone. We have OpenVZ VPS hosting solutions, and come with moderate DDoS protection.&lt;br /&gt;
* [http://www.letstalkdigital.com/index.php?option=com_content&amp;amp;view=article&amp;amp;id=73&amp;amp;Itemid=65 LetsTalkDigital VPS Hosting] - LetsTalkDigital.com offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from $14.99. Virtual Private Server(VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://www.meteorvps.com/ MeteorVPS] - Professional, Non-Oversold amazing VPS plans pretty cheap using SolusVM management, range from 512MB -&amp;gt; 16GB&lt;br /&gt;
* [http://www.minivps.co.uk miniVPS] miniVPS offers VPS hosting solutions with nodes located in UK, utilising openvz/solusvm with future locations of USA and UK. &lt;br /&gt;
* [https://www.first2host.co.uk First2Host Cheap VPS] - Intel Xeon E5-2630v3 OpenVZ VPS Servers. Don't be defined by a pre-made VPS plan. Create your own VPS Plan by assigning the resources that you require. SATA, SSD or NVMe storage 100 MBPS, 250 MBPS, 500 MBPS, 1GBPS speeds and free cPanel licenses.&lt;br /&gt;
* [http://www.phurix.co.uk/ Phurix] - A UK based web solutions company that provides you with reliable hosting at extremely affordable prices, VPS server virtualization using OpenVZ.&lt;br /&gt;
* [http://www.qualityservers.co.uk Quality Servers] - Affordable OpenVZ virtual servers based in the UK and USA. Choice of control panels and management options.&lt;br /&gt;
* [http://www.rackburst.net/ Rackburst] - UK SSD VPS Hosting with fast UK-based Live Support available from £1.49 per month.&lt;br /&gt;
* [http://www.rshosting.co.uk/vps.html RSHosting UK] - Offering the most secure, reliable, stable and fast UK VPS Web Hosting based on OpenVZ architecture. Our Virtual Dedicated Servers are physically hosted on powerfull Quad Core servers located in multiple UK datacentres.&lt;br /&gt;
* [http://www.sharkserve.rs SharkServers] - Low Cost OpenVZ virtual servers in the UK. Choice of control panels and management options. Own Datacentre.&lt;br /&gt;
* [https://www.ukhost4u.com/ UKHost4u] - A leading provider of VPS solutions for over 19 years!&lt;br /&gt;
* [http://www.vpsfast.us/united-kingdom-vps VPSFast] - VPS Provider with good prices in UK.&lt;br /&gt;
* [http://www.vpsmachine.co.uk/ vpsMachine] Quality openvz hosting platform with a large choice of customer OS templates.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [https://www.webhostuk.co.uk/vps-hosting.html WebHostUK LTD] - Offers Cheap yet Best UK VPS Web Hosting working on OpenVZ Platform.We offers fully Managed UK VPS with true 24/7/365 days support.All our Servers are located in UK London DC.&lt;br /&gt;
* [http://www.webhostinguk.com/vps/vps-hosting.html Web Hosting UK] - Fully managed OpenVZ VPS Hosting offered on fast and reliable and affordable servers in UK &amp;amp; European datacenter with 24x7x365 days lightning fast support.&lt;br /&gt;
* [http://www.weycrest.co.uk/vps-hosting.php Weycrest VPS] - Low Cost, Stable OpenVZ and Parallels' Virtuozzo Virtual Private Server solutions. London UK Hosted at Coreix with a choice of operating systems, and root and control panel options.&lt;br /&gt;
* [http://www.xilo.net/virtual_private_servers-vps/ XILO] - UK-based hosting with UK-based support. VPS services offered with a choice of cPanel, Webmin and other useful applications, VoIP, SIP, VPN to name a few.&lt;br /&gt;
* [http://www.zxvps.co.uk/ ZxVPS VPS Hosting] - Quality, non-oversold VPS based on the openVZ platform, using SolusVM management panel, VPS from 128mb - 2gb, cpanel, direct admin, kloxo, etc.&lt;br /&gt;
&lt;br /&gt;
== Ukraine ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://ekvia.com/ Ekvia] - VDS/VPS based on OpenVZ. Free trial 14 days. Domain registration for VDS/VPS.&lt;br /&gt;
* [http://www.gelihost.com/ Geliar Hosting Solutions] - Fast virtual dedicated servers based on OpenVZ. Geliar Hosting Solutions offering many control panels and other useful services.&lt;br /&gt;
* [http://www.hostpro.ua/ Hostpro.ua] - Full managed OpenVZ servers.&lt;br /&gt;
* [http://www.vpsfast.us/ukraine-vps VPSFast] - VPS Provider with good prices in Ukraine.&lt;br /&gt;
&lt;br /&gt;
== USA ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.a2hosting.com A2 Hosting] is your high-performance [http://a2hosting.com/openvz-vps-hosting OpenVZ VPS Hosting] provider. Design your perfect [http://a2hosting.com/vps-hosting VPS Hosting] account today! Featuring SwiftServers and SSDs with page load speeds up to 300% faster compared to standard drives.&lt;br /&gt;
* [http://www.afterburst.com Afterburst] (Previously FanaticalVPS): affordable unmetered, unmanaged VPS servers in NY.&lt;br /&gt;
* [https://www.asurahosting.com/ AsuraHosting] offers powerful, reliable, and simple OpenVZ VPS to clients. AsuraHosting has a dedicated support team, and quality hosting; Pricing starts at just $5/month!&lt;br /&gt;
* [http://beyondhosting.net BeyondHosting.net] High Performance OpenVZ Virtual Private Servers (VPS)  Tier 1 US Datacenter.&lt;br /&gt;
* [http://buyvm.net BuyVM.net] DDoS Protection, three datacenter locations, Stallion control panel. Affordable quality VPS hosting since 2010!&lt;br /&gt;
* [https://www.binarycpu.com Binary Computer Solutions] has provided OpenVZ based Virtual Private Server hosting for over 5 years.  Network outages are a thing of the past, and oversold services are never heard of here.  Built on solid technology, with infrastructure to match - Binary Computer Solutions will give you hosting you need, without the cost others ask for.  Starting at $30.00/mo.&lt;br /&gt;
* [http://www.bodhost.com/ Bodhost.com] Fast, Reliable and secure web hosting service with 24*7 free customer service.&lt;br /&gt;
* [http://www.buildyourvps.com/ BuildYourVPS.com] mix ‘n’ match your VPS; choose only the bandwidth, RAM, disk capacity, type of IP connection, level server redundancy, and the support/monitoring you want. [http://www.buildyourvps.com/ BuildYourVPS] is the 1st to offer you a highly-customized VPS solution, without making you pay for unused extra features.&lt;br /&gt;
* [https://www.budgetvm.com/openvz-linux-vps.php BudgetVM.com] Each server includes our industry-leading SLA, DDoS protection, 200Gbps networks and 7 * 24-hour customer support.&lt;br /&gt;
* [http://www.byethost.com Byethost.com] offers OpenVZ based VPS Hosting as its main VPS solution, with the hypervm panel. Centos, Debian, Fedora, OpenSuse and Ubuntu Containers are available.&lt;br /&gt;
* [http://cheaperasp.net CheaperASP.Net] provides Quality web hosting on the OpenVZ platform. You also help you get best options at [http://cheaperasp.net/godaddy-1-hosting-free-domain-promo/ affordable] cost.&lt;br /&gt;
* [http://www.chhost.net/vps.htm CH Hosting VPS Hosting] CH Hosting or chhost.net offers OpenVZ based VPS Hosting. 24/7 Support. Upgrade/Downgrade your plan as needed on-the-fly without the risk of downtime. Since 2006. Non-Oversell&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in USA from 1.88EUR/month.&lt;br /&gt;
* [http://www.cloudshards.com Cloud Shards] High Performance, reliable, stable and affordable OpenVZ Virtual Private Servers (VPS) in data centers across the USA.&lt;br /&gt;
* [https://cloudgearhosting.com CloudGear Hosting] - offers OpenVZ hosting in 4 locations across the USA. Including free DDoS Protection and free SSL with cPanel.&lt;br /&gt;
* [http://www.datacorporate.com/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [https://www.delimiter.com/storage-vps/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [https://www.cheapdomainnamesdot.com Domain Host SSL] provides Reliable web hosting with OpenVZ platform Since 2003, Located New York city, Atlanta, Los Angeles. &lt;br /&gt;
* [http://www.DubHosting.com/ DubHosting] - DubHosting started in 2004 has been providing cost effective hosting to clients world wide. Fully managed OpenVZ servers based in Europe &amp;amp; US are one of their many strong points. They can provide you with a dedicated server and install openvz allowing you to sell your own vps servers.&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
* [http://www.ethernetservers.com/ Ethernet Servers] A leading provider of OpenVZ Virtual Servers in Los Angeles, Miami and Buffalo with SolusVM.&lt;br /&gt;
* [http://www.evolucix.com/ Evolucix.com] Evolucix offers state of the art, professional, and reliable OpenVZ VPS solutions on top-notch hardware while providing quality support.&lt;br /&gt;
* [http://www.evolvedservers.com Evolvedservers.com] Openvz based vps servers. Hosted in Michigan, USA. 24/7 Support. Hosted in tier-3 and tier-4 datacenter's with multiple redundancies.&lt;br /&gt;
* [http://fastwebhost.com/vps-hosting.html Fastwebhost]: affordable cloud VPS servers using OpenVZ. &lt;br /&gt;
* [http://www.fliphost.net Fliphost.net]: Powerful, affordable instant setup VPS systems. Servers based in Phoenix Az with another location coming soon.&lt;br /&gt;
* [http://www.frontrangehosting.com Front Range Hosting]: SSD Cached KVM &amp;amp; OpenVZ VPS Hosting Prices Start at 2.00/mo, located in Colorado Springs, Colorado.&lt;br /&gt;
* [http://glesys.se GleSYS] is a hosting company specialized in serverhosting. Also offering VPS hosting mainly based on OpenVZ. GleSYS has provided access to server and Cisco hardware for developers from OpenVZ to find problem with VLAN implementation.&lt;br /&gt;
* [http://goodealhosting.com/ GOODEALHOSTING.com] Quality Hosting Solutions! Provides affordable unmanaged/managed VPS based on OpenVZ! start from $10.00, real 24/7 support.&lt;br /&gt;
* [http://gothost.net GotHost.net] Providing OpenVZ based VPS Hosting with SolusVM. All nodes are Quad Core Xeon with RAID-10 for speed and redundancy. Budget plans starting at $7.99.&lt;br /&gt;
* [http://www.greengeeks.com/ GreenGeeks Hosting] VPS Hosting. Dual Intel Xeon 64-Bit CPU's, DDR3 RAM, RAID-10 SSD Storage Arrays. 24/7 Support. cPanel/WHM + more!&lt;br /&gt;
* [http://hostarmor.com HostArmor™] - is best known for low-cost and reliable shared hosting and dedicated servers. Recently the company expanded to offer OpenVZ virtual server plans at 8 worldwide locations, five in the U.S., one in Germany, one in France, and one in the Netherlands. VPS plans start at $13.99/month.&lt;br /&gt;
* [http://www.host4geeks.com Host4Geeks] - Host4Geeks is a premium Fully Managed VPS provider with datacenters across 2 locations in US and in UK. All servers offer a free cPanel license.&lt;br /&gt;
* [http://www.host1plus.com Host1Plus] - OpenVZ based virtual servers in Chicago and Los Angeles. VPS plans start at $2.00 per month.&lt;br /&gt;
* [http://www.hostavps.com HostAVPS] - Providing Fully Managed VPS's on both the West &amp;amp; East Coast.&lt;br /&gt;
* [https://www.hostcapitol.com Host Capitol] offers fast and reliable web hosting services, including OpenVZ VPS Hosting, to clients ranging from small businesses to corporations. Located in Piscataway, New Jersey.&lt;br /&gt;
* [http://www.hostcolor.com Host Color] - OpenVZ based virtual servers hosted in a Tier 4 class data center based out of South Bend, Indiana. Juniper managed, fully-redundant network with uplinks to Level 3, Cogent and Internap.&lt;br /&gt;
* [https://www.hostgalaxy.com HostGalaxy] - OpenVZ based virtual servers. The fastest hosting in the Galaxy!&lt;br /&gt;
* [http://www.hostigation.com Hostigation] - High resource unmanage VPS hosting solutions.&lt;br /&gt;
* [http://www.hostingrails.com Hosting Rails] offers Rails-targeted OpenVZ VPS Hosting and updated Rails-ready OS images.&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [http://www.hostmist.com Host Mist] features budget OpenVZ VPS hosting from four major cities across the US.&lt;br /&gt;
* [http://www.hostrush.com HostRush] Self managed, ssd vps for business and non business. &lt;br /&gt;
* [http://www.dailyhosting.net hostoople] We offer OpenVZ VPS hosting from Dallas Texas, Starting at $29.95/month &lt;br /&gt;
* [https://hostus.us HostUS] provides unmanaged and managed OpenVZ VPS in Atlanta, Dallas and Los Angeles with custom control panel. A large variety of Linux distros are available. Enjoy 15% off with coupon VPS15OFF.&lt;br /&gt;
* [https://www.hostwinds.com Hostwinds] Affordable managed/unmanaged VPS Solutions.&lt;br /&gt;
* [http://hostsia.com Hostsia] With HOSTSIA Web services, you can get an OpenVZ VPS for only $15.00/mo. Each OpenVZ VPS includes multiple free-of-charge bonuses and offers a 99.9% uptime guarantee. You can also use our charge-free Hepsia CP, which is available with each OS – it permits you to host an unmetered number of domains and comprises heaps of handy tools, which will help you better manage your site and your VPS web hosting account.&lt;br /&gt;
* [http://www.infrenion.com./vps_hosting.html Infrenion Networks] Cheap, reliable and secure VPS hosting solutions, based on the openVZ platform. You can host any YouTube Clone scripts with enhanced support quality round the clock.&lt;br /&gt;
* [http://iniz.com/ INIZ VPS Hosting] INIZ provides affordable VPS Hosting in Los Angeles &amp;amp; New York with high resources at low prices.&lt;br /&gt;
* [https://www.interserver.net/ InterServer Web Hosting] Fast &amp;amp; Reliable VPS - 24x7 Support. 99.9% Up-time, Hosting Since 1999!.&lt;br /&gt;
* [http://www.joinvps.com JoinVPS.com] ISPmanager OpenVZ based VPS hosting. 24/7 Technical Support. Free ISPmanager control panel.&lt;br /&gt;
* [http://www.lovevps.com LoveVPS] Budget VPS provider starting at $5.99/month located in the US with Xeon nodes.&lt;br /&gt;
* [http://www.letstalkdigital.com/index.php?option=com_content&amp;amp;view=article&amp;amp;id=73&amp;amp;Itemid=65 LetsTalkDigital VPS Hosting] LetsTalkDigital.com offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from $14.99 Virtual Private Server(VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://lylix.net LYLIX] offers affordable VPS hosting with a choice of eight different Linux distributions, dedicated VPS hosting, and specializes in Asterisk/VOIP based hosting including Trixbox, AsteriskNow, Elastix, and PBX-in-a-Flash.  Popular choice for unmanaged IP-PBX services; entire infrastructure built on a High-availability (HA) network across three regional NOCs.&lt;br /&gt;
* [http://www.micfo.com Micfo.com] offers VPS hosting services for both Linux VPS hosting and Window VPS hosting on affordable price combined with world-class 24x7x365 support.&lt;br /&gt;
* [http://www.neostreams.info/neoshop/cart.php?gid=9 nEo Stream Services] Offer's Top Quality OpenVZ Servers, Starting at $18.95 per month! SolusVM Control panel , 7 day Money Back Guarantee , 24x7 Professional Support.&lt;br /&gt;
* [http://pogiweb.com/vps/ PogiWeb LLC] Instant and free setup. Includes SolusVM control panel and free level 1 support during first month.&lt;br /&gt;
* [http://www.theserverexperts.com TheServerExperts.com] TheServerExperts VPS line is the ideal solution for clients who require the control of a dedicated server matched with the affordability and simplicity of a traditional shared hosting account.&lt;br /&gt;
* [http://thenynoc.com New York NOC] affordable Linux VPS hosting out of New York and Chicago. Plans as low as $5 a month and are backed by a redundant infrastructure and 24/7 support.&lt;br /&gt;
* [http://railsplayground.com RailsPlayground.com] Ruby on Rails VPS with ready to go Rails images with the LxAdmin control panel&lt;br /&gt;
* [http://www.raidlogic.net RaidLogic.NET] RaidLogic.NET offers OpenVZ based Linux VPS out of multiple facilities across the United States, including Miami, Los Angeles, and Chicago. Starting as low as $3.95/month.&lt;br /&gt;
* [http://www.ramhost.us RAM Host] RAM Host offers OpenVZ based Linux VPS out of multiple facilities across the United States, including Atlanta, Kansas City, and Phoenix.&lt;br /&gt;
* [http://www.reconhosting.com Recon Hosting] Recon Hosting offers affordable OpenVZ VPS solutions where you get Quality Hosting at a Fraction of the price. Instant setup with the latest Operating System templates including cPanel.&lt;br /&gt;
* [http://www.rokabear.com Rokabear] Rokabear offers OpenVZ Linux VPS, Dedicated Server, and Colocation. All Hardware setup in High Availability mode including raided drives and redudnant power and network connections. With multiple upstream providers, Rokabear's connectivity is fast and reliable! Rokabear supports LAMP, Openvpn, and Asterisk configurations. VPSes start at $7.99!&lt;br /&gt;
* [https://www.rosehosting.com RoseHosting] offers OpenVZ Linux virtual servers equipped with Enterprise Grade SSD drives. All hosting plans are fully-managed with FREE 24/7 support, FREE website migration, FREE weekly backups and FREE server monitoring included.&lt;br /&gt;
* [http://www.rshosting.com/vps.html RSHosting.com] RSHosting offers the most secure, reliable and stable VPS - Virtual Private Servers based on OpenVZ architecture, powered by the most professional and qualified 24/7 lightening fast support.&lt;br /&gt;
* [http://www.servercomplete.com Server Complete, LLC] Server Complete offers OpenVZ based Linux VPS out of multiple facilities across the United States, including Atlanta, Dallas, and Chicago.&lt;br /&gt;
* [http://www.servergrove.com ServerGrove] uses OpenVZ as the main virtualization platform for its state of the art VPS hosting services.&lt;br /&gt;
* [http://serverswarm.com ServerSwarm] provides stable, affordable, high performance OpenVZ virtual private servers.&lt;br /&gt;
* [http://Sharktech.net Sharktech] provides custom OpenVZ solutions DDOS-protected up to 100Gbps.&lt;br /&gt;
* [http://www.silverrack.com/ SilverRack VPS Hosting] - SilverRack provides affordable VPS hosting using the OpenVZ platform.&lt;br /&gt;
* [http://www.soficol.com/ Soficol] Offers Enterprise OpenVZ based VPS, hosted on a clustered infrastructure and redundant network. Easy to use user management and instant setup.&lt;br /&gt;
* [http://www.spectrohost.com/ Spectro Host] - Offers performance VPS Servers running openvz. Always the most resources and never over committing OpenVZ nodes.&lt;br /&gt;
* [http://www.budgetvds.com/ BudgetVDS] - Offers VPS Servers running openvz we've been in business for 2 years now using openvz platform.&lt;br /&gt;
* [http://www.syera.net/ Syera Networks] Unmetered VPS From $18.88/M, 24/7 Support, OpenVZ/HyperVM, Instant Setup!, Free 1Gbps Upgrade with Coupon: syera1G&lt;br /&gt;
* [http://www.synapseglobal.com/voip_vps.html SynapseGlobal.com] Elastix, Trixbox, PBX in a Flash and Asterisk VPS - OpenVZ based Asterisk VOIP servers with 14 Tier 1 premium bandwidth providers.&lt;br /&gt;
* [http://www.tektonic.net TekTonic] provides VPS hosting services using both Virtuozzo and OpenVZ technology.&lt;br /&gt;
* [http://www.tigerservers.com/ TigerServers] - Provides affordable managed VPS based on OpenVZ. Servers located in Chicago, Illinois&lt;br /&gt;
* [http://www.tocici.com/ TOCICI VPS Hosting Services] Since 1995 TOCICI has offered web hosting services, with 24/7 support commitments and a strong non-oversell policy. Our purpose-built hosting infrastructure has serviced many organizations for over a decade. Offering OpenVZ VPS, data center colocation, and equipment leasing options, visit our website for prices and more details.&lt;br /&gt;
* [http://www.ultravps.com UltraVPS] UltraVPS offers managed and unmanaged OpenVZ-based VPS hosting utilizing dual CPU hardware nodes with redundant, high-performance RAID-10 storage.  UltraVPS offers VPS servers with many popular control panel options and turn-key applications.&lt;br /&gt;
* [http://www.vpsfx.com VPSFX] VPSFX.com offers OpenVZ VPS, data center colocation, and dedicated servers.&lt;br /&gt;
* [http://www.Webhost.US.Com/linuxvps.html US Web Hosting]  Webhost.US.Com offers powerful GUI based VPS management system with full OpenVZ, Xen Paravirtualization and Xen HVM support.All our Virtual Private servers are fully Managed with 99.9% uptime and 24/7 top notch support.&lt;br /&gt;
* [http://unixservice.com Unixservice/unxsVZ] Low cost OpenVZ ONLY hosting we specialize in Mail, DNS and RADIUS multiple container hosting. At the world famous Market St. San Jose, CA Silicon Valley datacenter. Ping times from your containers to local yahoo and google sites guaranteed single digit ms times. Your containers are backed up at 4 local and 2 remote locations. Contact supportgrp at unixservice dot com.&lt;br /&gt;
* [http://www.vogenic.xyz Vogenic: Cloud Services] If you are searching for an upgrade to the shared hosting service, then you should consider our OpenVZ or KVM VPS hosting services.&lt;br /&gt;
* [http://vpslink.com VPSLink.com] provides virtual private server hosting on the OpenVZ platform.&lt;br /&gt;
* [http://www.vpsspeed.com/ VPSSpeed] - VPSSpeed provides unmanaged OpenVZ based VPS hosting with over 50 OS Templates, real 24/7/365 support and fast US servers. No overselling.&lt;br /&gt;
* [http://vpsnoc.com VPSNOC] offers unmanaged vps hosting based in the USA utilizing OpenVZ hypervisor behind an in-house VPS control panel.&lt;br /&gt;
* [https://www.waveride.at/ Waveride] Waveride, an EDIS company, offers budget full gigabit OpenVZ + solusVM VPS in Austria, USA and the Netherlands&lt;br /&gt;
* [http://www.webappcabaret.com WebAppCabaret] provides VPS solutions for hosting applications. We offer OpenVZ with cPanel or Plesk for web site management; and NGASI Universal App Manager for deploying and managing JAVA and RAILS applications.&lt;br /&gt;
* [http://www.wirenine.com/vps-hosting/ WireNine.com VPS Hosting] Low cost fully managed and unmanaged OpenVZ based VPS Hosting with SAS 15k enterprise drives in high-performance RAID-10 storage.&lt;br /&gt;
* [http://www.zoidial.com/ Zoidial Hosting and VPS] - offers VPS and Virtual Dedicated Server solutions utilizing OpenVZ.  In business since 1998, Zoidial Incorporated is a small hosting provider focused on being security conscious, proactive, and offering a positive client experience.&lt;br /&gt;
* [http://zensix.com ZenSix Hosting] Cheap OpenVZ based VPS accounts with the SolusVM control panel.&lt;br /&gt;
* [http://zigothosting.com Zigot Hosting] Affordable and Reliable OpenVZ based VPS's within the SolusVM control panel.&lt;br /&gt;
* [http://www.vpsfast.us/usa-vps VPSFast] - VPS Provider with good prices in USA (Los Angeles, New Jersey, New York, Seattle, Washington, Dallas, Chicago, Atlanta, Ashburn, Miami, Piscataway).&lt;br /&gt;
* [http://www.xarixlite.com Xarix Lite] - offers OpenVZ hosting in Charlotte, SC. OpenVZ plans starting at $2.50/mo&lt;br /&gt;
* [https://www.yourlasthost.com YourLastHost] is your high-performance [https://www.yourlasthost.com/openvz-vps.php OpenVZ VPS Hosting] Provider. Get your perfect [https://www.yourlasthost.com/openvz-vps.php VPS Hosting] account today! Available in Los Angeles, Dallas, Jacksonville, USA and France, Europe.&lt;br /&gt;
&lt;br /&gt;
== Vietnam ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://appvz.com AppVZ.com] (www.appvz.com) is a leading web solution provider offering domain, hosting, reseller and VPS hosting packages from 2009. Just recently, the company has offered discount packages where customers can avail managed and un-managed VPS for only $9.5 per month.&lt;br /&gt;
&lt;br /&gt;
= Hosting providers comparison =&lt;br /&gt;
&lt;br /&gt;
It is hard to compare all virtual private server offers provided by different hosting providers.&lt;br /&gt;
Sites below can help you with it.&lt;br /&gt;
&lt;br /&gt;
* [https://www.cheapvpsservers.co.uk/ Cheap VPS Servers]&lt;br /&gt;
* [https://www.hostingmyths.com/ Hosting Myths]&lt;br /&gt;
* [https://cheapwebhosting.review/ VPS servers comparison]&lt;br /&gt;
* [https://reviewsquirrel.com/web-hosting-reviews/ Review Squirrel]&lt;br /&gt;
* [http://lowendstock.com/ Lowendstock]&lt;br /&gt;
* [https://www.websitehostingrating.com/ Best Web Hosting Services]&lt;br /&gt;
* [http://serverbear.com/compare?Sort=RAM&amp;amp;Order=asc&amp;amp;Server+Type=VPS&amp;amp;Monthly+Cost=-&amp;amp;HDD=-&amp;amp;RAM=-&amp;amp;Virtualization=OpenVZ Serverbear]&lt;br /&gt;
* [https://www.comparethehosts.com/vps-web-hosting.htm VPS Web Hosting Reviews]&lt;br /&gt;
* [https://thishosting.rocks/best-cheap-managed-vps/ ThisHosting.Rocks - Managed VPS Providers Comparison]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
http://vpscomp.com&lt;br /&gt;
http://reviewsignal.com/webhosting/compare/&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= See also =&lt;br /&gt;
&lt;br /&gt;
* [[Partners]]&lt;br /&gt;
* [[Download mirrors]]&lt;br /&gt;
* [[VPS vs Dedicated]]&lt;/div&gt;</summary>
		<author><name>Vvs</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.openvz.org/index.php?title=Hosting_providers&amp;diff=23316</id>
		<title>Hosting providers</title>
		<link rel="alternate" type="text/html" href="https://wiki.openvz.org/index.php?title=Hosting_providers&amp;diff=23316"/>
		<updated>2020-06-05T05:09:29Z</updated>

		<summary type="html">&lt;p&gt;Vvs: Undo revision 23311 by 82.8.202.138 (talk)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''OpenVZ is free and open implementation of Virtuozzo containers for Linux.&lt;br /&gt;
Don't forget to keep [[testimonials|testimonial]] and [[donate]] to OpenVZ.'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
OpenVZ makes for a great hosting platform for VPS hosting. The providers below offer VPS services using OpenVZ.&lt;br /&gt;
&lt;br /&gt;
= OpenVZ hosting providers =&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- @@@@@@@@@@@@@@@@@@@@@@@&lt;br /&gt;
&lt;br /&gt;
IF YOU EDIT THIS PAGE,  PLEASE OBEY TO THE FOLLOWING RULES:&lt;br /&gt;
&lt;br /&gt;
1. Keep your record on ONE line&lt;br /&gt;
2. Keep the list of providers alphabetically sorted, DO NOT insert your record on top.&lt;br /&gt;
3. Keep the list of countries alphabetically sorted as well.&lt;br /&gt;
&lt;br /&gt;
     @@@@@@@@@@@@@@@@@@@@@@@@ --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Andorra ==&lt;br /&gt;
* [https://www.actiu.net/pro/ Actiu informatica] amb servidors dins i fora del principat.&lt;br /&gt;
&lt;br /&gt;
== Argentina ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.g2khosting.com/ G2K Hosting offer OpenVZ containers with high level hardware technology from 25 US with Control Panel, various Linux Dists and full support.&lt;br /&gt;
* [http://www.wiredhosting.com.ar/ WiredHosting] offer XEN and OpenVZ containers with SSD drives, cloudflare security and weekly backups to protect your information. Phone and Helpdesk support. &lt;br /&gt;
* [http://www.ihserver.net/ IHServer] Specialized virtualization on OpenVZ containers at Gigared datacenter. We have in Argentina one of the better fiber connection to the US, but also provides services from LSTN in Texas.&lt;br /&gt;
* [https://www.fulltech.com.ar/ Full Tech Solutions] Specializes in the virtualization of OpenVZ &amp;amp; Virtuozzo containers, installed in the Full Tech Solutions Data Center located in Villa Elisa, Entre Rios Argentina.  It also offers services hosted in the United States, Netherlands and Germany&lt;br /&gt;
* [https://www.neolo.com/ Neolo] provide OpenVZ containers at our own datacenter in South America with double internet provider. Choose your Linux OS and apps. Full support.&lt;br /&gt;
* [https://www.infranetworking.com.ar/ Infranetworking] All our Cloud VPS container solutions for Argentine customers are powered by the all mighty OpenVZ virtualization software.&lt;br /&gt;
&lt;br /&gt;
== Australia == &lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
[https://www.conetix.com.au/ Conetix Hosting] Specialising in business grade, fully managed Virtuozzo containers with Virtuzzo Cloud Storage. 100% Australian owned and operated. Brisbane based DC with Enterprise Dell servers.&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides self-managed OpenVZ based SSD VPS located at Equinix SY3 in Sydney, one of the best and well-connected datacenters in the region.&lt;br /&gt;
* [http://www.vpsfast.us/australia-cloud-server VPSFast] - VPS Provider with good prices in Australia.&lt;br /&gt;
&lt;br /&gt;
== Austria ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
* [https://kapper.net/ kapper.net] kapper.net offers OpenVZ and Virtuozzo (and other HyperVisors) based server-solutions with kind support and 24x7 maintenance.&lt;br /&gt;
* [https://mdhost.eu/vserver.php MDHost.eu] New Hosting Provider with nice Prices and many Server locations. Austria, Germany, France and more.&lt;br /&gt;
* [https://www.snb.at/ SNB] offers OpenVZ containers and support's also existing vm's in customers environment&lt;br /&gt;
* [https://www.waveride.at/ Waveride] Waveride, an EDIS company, offers budget full gigabit OpenVZ + solusVM VPS in Austria, USA and the Netherlands&lt;br /&gt;
* [http://www.vpsfast.us/austria-cloud-server VPSFast] - VPS Provider with good prices in Austria.&lt;br /&gt;
&lt;br /&gt;
== Brazil ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.datacorporate.com.br/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [http://www.globalmedia.com.br/ GlobalMedia] We offers OpenVZ containers hosted on a very fast network with fast setup. Ubuntu, Debian, CentOS.&lt;br /&gt;
* [http://www.host1plus.com.br/ Host1Plus] Servers hosted in São Paulo. We offering reliable and secure OpenVZ VPS Servers with 99.99% up-time, starting from $5.00 per month.&lt;br /&gt;
* [http://www.ipdeck.net/ IPDECK] VPS Linux server from R$15,00/month! Fully customizable according to your needs.&lt;br /&gt;
* [http://www.quantive.com.br/ QuantiveHost] VPS Linux with 99.99% uptime. Prices starting from R$ 29,35.&lt;br /&gt;
* [https://www.elevahost.com.br/ Eleva host] Server hosted in Brazil. The best support.&lt;br /&gt;
&lt;br /&gt;
== Bulgaria ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* [https://www.cyberhour.com CyberHour.com] CyberHour.com is an [https://www.cyberhour.com offshore VPS hosting] provider located in Europe. The provide blazing fast servers and premium Bandwidth of 200Mbps. With high privacy protection.&lt;br /&gt;
* [https://www.linuxssdvps.com Bulgaria VPS] Linux SSD VPS is an [https://www.linuxssdvps.com offshore VPS hosting] provider located in Sofia, Bulgaria. Privacy is very respected and anonymous registrations are allowed, as well as payments via Bitcoin / PayPal.&lt;br /&gt;
* [http://www.webuzo.net Bulgaria VPS] Webuzo Network is an offshore SSD VPS hosting provider located in Bulgaria. Privacy is very respected and anonymous registrations are allowed, as well as payments via Bitcoin / PayPal.&lt;br /&gt;
* [https://vpsbg.eu/en Bulgaria VPS] VPSBG.eu is an offshore SSD VPS hosting provider located in Sofia, Bulgaria. Privacy is very respected and anonymous registrations are allowed, as well as payments via Bitcoin.&lt;br /&gt;
* [http://www.bul.net/ Bul.net] Provides OpenVZ based VPS, perfect user/VPS management via [http://ispsystem.com VDSManager]. Instant creation after online payment. Debian/Ubuntu/CentOS with ISPManager Control panel. Optimal price policy.&lt;br /&gt;
* [http://www.cointech.eu/vps-hosting/ CoInTech] provides OpenVZ based VPS containers, free webmin managment. Containers can be CentOS, Slackware, Ubuntu, custom or our special [http://www.mandriva.com Mandriva Linux] container with own [http://mandriva.cointech.net repository].&lt;br /&gt;
* [http://www.rax.bg/ RAX.bg] Offers OpenVZ based VPS, hosted on a clustered infrastructure and redundant network. Easy to use user management, Instant setup, CentOS (OS).&lt;br /&gt;
* [http://www.jump.bg/ Jump.bg] Provides OpenVZ VPS servers hosted on a redundant network which provides a very easy to manage platform for all clients which gain instant access to their OS ( Ubuntu, CentOS , Debian etc ... )&lt;br /&gt;
* [https://www.fitvps.com/ FitVPS.com] Offers affordable and reliable OpenVZ based VPS in Varna, Bulgaria. Own data center, own multihomed network, with SLA. Instant automatic setup, SolusVM control panel.&lt;br /&gt;
* [http://www.qhoster.com/ QHoster.com] Instant activation OpenVZ VPS in UK, USA, Germany, France and Switzerland. Both 32/64 bit OpenVZ OS VPS templates : CentOS 5/6, Debian 6/7, Ubuntu 12/13.&lt;br /&gt;
* [https://www.verdina.net Verdina.NET] Verdina.net offers dedicated hosting services, provided by powerful dell hardware. Servers are located in Telepoint Datacenter, a Tier 3 DC located in Sofia, Bulgaria.&lt;br /&gt;
* [https://www.vps.ag/ VPS.AG] Affordable and reliable OpenVZ VPS based in Sofia, Bulgaria. Instant setup and 24/7 support.&lt;br /&gt;
* [http://www.vpsfast.us/bulgaria-vps VPSFast] - VPS Provider with good prices in Bulgaria.&lt;br /&gt;
&lt;br /&gt;
== Canada ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://whc.ca/canadian-cloud-servers Web Hosting Canada Cloud Servers] - Powerful Cloud servers powered by OpenVZ and located in Canadian datacenters, with fast RAID-10 storage, fully managed with cPanel.&lt;br /&gt;
* [http://compevo.com compevo Clustered VPS Server Hosting Provider] - We offer clustered VPS Servers to avoid downtime and dataloss. Our network and service is second to none and is used by businesses around the world.&lt;br /&gt;
* [http://www.datacorporate.ca/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [https://www.delimiter.com/storage-vps/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [https://www.miditech.com/ MidiTech Hosting Canada] VPS hosting offered by MidiTech Canada are powered by VMware, . Fully Managed VPS with control panels&lt;br /&gt;
* [http://www.gotekky.com Gotekky Cloud VPS Hosting] High quality Cloud VPS packages powered by our own infrastructure and network in Toronto. Scalable from our $5/mo plan all the way to your own dedicated cloud server. Based on OpenVZ and our own proprietary panel.&lt;br /&gt;
* [http://www.letstalkdigital.com/index.php?option=com_content&amp;amp;view=article&amp;amp;id=73&amp;amp;Itemid=65 LetsTalkDigital VPS Hosting] LetsTalkDigital.com offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from $14.99. Virtual Private Server (VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://secure.media-hosts.com/link.php?id=7 Media-Hosts.com] Provides Quality and Scalable OpenVZ based Virtual Private Servers. 100% network uptime guaranteed. Located in Montreal Quebec with 5 Tier1 upstream providers.&lt;br /&gt;
* [http://www.openvz.ca OpenVZ.ca] Canadian Budget VPS Servers on OpenVZ Platform. &lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [http://protoserver.com ProtoServer] Advanced VPS Hosting from $4.95/month. Many pre-installed VPS Templates available (CMS, E-commerce, Web development, Online community, Media streaming, etc.) No bundles or service plans - mix VPS resources as needed and change VPS configuration anytime. Also offering DNS Hosting, E-mail hosting, Domains Registration.&lt;br /&gt;
* [http://www.vistapages.com/vps Vistapages VPS] - IBM &amp;amp; Dell Hardware. MCI/Verizon Backbone. Distros: Centos, Fedora, Debian &amp;amp; more. Full management available. Located in Toronto.&lt;br /&gt;
* [http://vpsville.ca/ VPSVille] - Good network. Good CPU. Good choice of distros: Centos, Fedora, Debian, Ubuntu, Slackware, Gentoo, OpenSUSE, CERN. My favorite OpenVZ provider. [mailto:jak@isp2dial.com John Kelly]&lt;br /&gt;
* [http://solib.ca/services-offerts/hebergement-haute-vitesse/serveurs-vps/ SOLIB Logiciel Libre Québec] Our company offers DDoS protected server solutions including OpenVZ containers. Very high availability and reliability, all our VPS are located in Quebec, Canada.&lt;br /&gt;
* [https://www.host-stage.net/linux-vps/ HostStage - Linux VPS] - Simple, Reliable OpenVZ VPS packed with 1 GBPS port speed, RAID 10 SSD, Intel Xeon CPU, DDoS Protection from $4.95/month&lt;br /&gt;
* [http://www.vpsfast.us/canada-vps VPSFast] - VPS Provider with good prices in Canada.&lt;br /&gt;
* [https://websavers.ca/canadian-vps-hosting Websavers Inc in Halifax] - VZ containers priced by the resource. Resource changes entirely client-level.&lt;br /&gt;
&lt;br /&gt;
== Colombia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.datacorporate.co/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [http://www.soficol.com/ Soficol] Offers Enterprise OpenVZ based VPS, hosted on a clustered infrastructure and redundant network. Easy to use user management and instant setup.&lt;br /&gt;
&lt;br /&gt;
== Czech Republic ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://4smart.cz 4Smart.cz] - prepaid, you are charged only by the system resources you use, therefore you can run a VPS for as little as  1 EUR a month if your vps is not resource hungry. Even if you pay  0,50 EUR  month, you still have 3 GB of RAM and 8 cores available to you VPS.&lt;br /&gt;
* [http://www.freecloud.cz FREECLOUD.CZ] - Free OpenVZ VPS Server - own IP, 800Mhz CPU, 512MB RAM, 50Mbits LAN, 10GB HDD, 100GB Traffic - Debian, Ubuntu, Gentoo, Slackware, Fedora, Centos&lt;br /&gt;
* [http://www.hukot.cz Hukot.cz] - OpenVZ VPS Servers starting from 2.92 €, XEON, 1 Gbps uplink, unlimited traffic. Debian, Ubuntu, CentOS, Scientific, SuSe, Fedora, Elastix.&lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [http://www.ultimatehosting.eu UltimateHosting.eu] - OpenVZ VPS Servers starting from $8 with custom configuration - up to 100 GB HDD, 2048 MB RAM, 2 GHz CPU, and unlimited traffic.&lt;br /&gt;
* [http://www.mujhost.net MUJHOST.NET] - OpenVZ VPS Servers starting from 160 Kč, 100Mbps / 1 Gbps uplink, unlimited traffic. Debian, Ubuntu, CentOS ...&lt;br /&gt;
&lt;br /&gt;
== Chile ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.1h.cl/ 1h.cl Vps - Chile] - VPS High Performance with OpenVZ in Chile&lt;br /&gt;
* [http://www.1hosting.cl/ 1hosting Virtual servers - Chile] - VPS Professional with OpenVZ&lt;br /&gt;
* [http://www.dch.cl/ DCH] - DCH.cl Hosting Chile - High Performance VPS Servers with OpenVZ &lt;br /&gt;
* [http://ecohosting.cl/ EcoHosting.cl Santiago - Chile] - VPS with OpenVZ in Chile&lt;br /&gt;
* [http://www.hostingplus.cl/ HostingPlus Internet Limitada] - High Performance Vps provider in Chile&lt;br /&gt;
* [https://www.hostname.cl/ Hostname Ltda] - VPS Hosting with Datacenter in Chile&lt;br /&gt;
* [https://www.inc.cl/ INC Internet Limitada] - VPS Hosting provider in Chile&lt;br /&gt;
* [https://www.dominioweb.net/ Dominioweb.net] - Web Hosting Premium and register domain&lt;br /&gt;
* [https://www.host.cl/ Host SPA] - Wordpress Hosting Profesional&lt;br /&gt;
&lt;br /&gt;
== Denmark ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.vpsfast.us/denmark-cloud-server VPSFast] - VPS Provider with good prices in Denmark.&lt;br /&gt;
&lt;br /&gt;
== Ecuador ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.dedi.space/ DediSpace Telecom] - VPS Servers in Ecuador - USA, France, Germany, Ecuador Datacenter.&lt;br /&gt;
&lt;br /&gt;
== France ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.BargainVPS.co.uk/ BargainVPS] - UK / US / EU Instant setup VPS - We have some great Linux &amp;amp; Windows Bargain VPS packages on offer for you here all available Fully Managed.&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in France from 1.88EUR/month.&lt;br /&gt;
* [http://www.fixweb.com Fixweb] Great managed hosting provider with strong anti ddos solution - openvz only - leader in managed openvz solution with horizontal scaling and high availability&lt;br /&gt;
* [http://www.Freaksol.com/ FreaKs VPS Hosting] Self reliant hosted on independent networks &amp;amp; DC low ping,No restrictions on file types,Unlimited resources,high ram servers &lt;br /&gt;
* [https://galaxyhostplus.com/ovz GalaxyHostPlus] Cheap VPS Hosting based in Roubaix with new 2016 line starts from $2/Month &lt;br /&gt;
* [http://www.harmony-hosting.com Harmony-Hosting] A high performance VPS hosting - The leader in France&lt;br /&gt;
* [https://www.delimiter.com/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [http://www.lws.fr/serveur_dedie_linux.php LWS - Linux VPS ] - Linux VPS Hosting - Only 9.99€/month, Affordable and Secure OpenVZ VPS Servers with 99.99% up-time, web hosting control panel Included. French datacenter&lt;br /&gt;
* [http://www.ovh.co.uk/vps/ OVH VPS] linux from 3€/month, [http://www.ovh.co.uk/vps/vps-cloud.xml windows] from 12€/month.&lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [https://VPSZ.FR VPSZ] VPS Hosting in France. Starting from 2,99€, Unlimited traffic.&lt;br /&gt;
* [http://www.1euro-hosting.eu BEST EU VPS - 1€ Hosting] - Providing reliable and secure OpenVZ VPS Servers with 99.99% up-time, starting from 8€&lt;br /&gt;
* [https://www.shape.host/linux-vps/ Shape Host - Linux VPS] - OpenVZ virtual servers, Instant Linux VPS&lt;br /&gt;
* [https://www.host-stage.net/linux-vps/ HostStage - Linux VPS] - Simple, Reliable OpenVZ VPS packed with 1 GBPS port speed, RAID 10 SSD, Intel Xeon CPU from $4.95/month&lt;br /&gt;
* [https://www.yoorshop.fr/ YOORshop SAS] - High performance SSD Linux VPS within 13 countries in Europe, daily backup included. Starting from €6,95 /month&lt;br /&gt;
* [https://www.wantete.com/vps-servers.php/ WANTETE] - OpenVZ virtual servers, VPS Hosting in France Starting from  €1,99/month 10% CPU&lt;br /&gt;
&lt;br /&gt;
== Germany ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://afterburst.com Afterburst (Previously FanaticalVPS)]: affordable unmetered, unmanaged VPS servers in Germany.&lt;br /&gt;
* [http://www.b2b-hosting.de/vps/ B2B Hosting]: Professional virtual servers for business applications. Performance and reliability at a fair price. Made with OpenVZ.&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in Germany from 1.88EUR/month.&lt;br /&gt;
* [https://www.delimiter.com/dedicated-servers/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [https://galaxyhostplus.com/ovz GalaxyHostPlus] Cheap VPS Hosting based in Frankfurt with new 2016 line starts from  $2/Month&lt;br /&gt;
* [http://hostmist.com/openvz-vps-germany.html Host Mist]: features budget OpenVZ VPS hosting in Germany.&lt;br /&gt;
* [http://www.host1plus.com/ Host1Plus] Servers based in Frankfurt am Main. Offering reliable OpenVZ based VPS servers in Germany starting from $2.50 per month.&lt;br /&gt;
* [http://www.hostingjuice.com/ HostingJuice] The Superioum VPS and Web Hosting provider, low prices - Premium packages.&lt;br /&gt;
* [http://www.ingate.de/managed-server.html Ingate] offers managed servers with openVZ virtualization. located in germany, great support.&lt;br /&gt;
* [http://linevast.de/angebote/linux-openvz-vserver-mieten.html Linevast] Reliable OpenVZ based VPS with fast support, located in germany&lt;br /&gt;
* [https://cp.myvirtualserver.com/?affid=42 MyVirtualServer]: Cheap VPS (OpenVZ/KVM, 5TB Traffic, 10Gigabit), servers located in Frankfurt (best ping, starting 1.99€) good support (en/de) //New Design!&lt;br /&gt;
* [https://www.nogics.com Nogics Technologies]: Affordable VPS based in Germany. Starts from $5.96/mo.&lt;br /&gt;
* [http://www.plambee.de/vserver.php Plambee.de Webhosting]: Powerfull OpenVZ based VPS servers at low cost with hosting in Germany&lt;br /&gt;
* [http://www.serverbiz.de/vserver Serverbiz] Powerful VPS at very low prices.&lt;br /&gt;
* [http://www.synapseglobal.com/voip_vps.html SynapseGlobal.com] Elastix, Trixbox, PBX in a Flash and Asterisk VPS - OpenVZ based Asterisk VOIP servers located in Munich Germany.&lt;br /&gt;
* [http://www.vStarVPS.com vStarVPS]: Reliable VPS Hosting at lowest prices, with 99.9% uptime, Premium Unmetered Bandwidth and Custom HDD/RAM of your choice. Instant and FREE Setup. RapidLeech Allowed.&lt;br /&gt;
* [http://whynotavps.com WhyNOTaVPS]: Instant activated VPS SERVERS!!&lt;br /&gt;
* [http://squote.de/index.php?ref=1421485383 SQuote]: SQuote VPS Hosting and more. VPS 1 Core, 1.024MB RAM, 512MB RAM SWAP, 50 GB HDD, 1x IPv4. 3,89EUR/month. For the best VPS SQuote.de&lt;br /&gt;
* [http://www.vpsfast.us/germany-vps VPSFast] - VPS Provider with good prices in Germany.&lt;br /&gt;
&lt;br /&gt;
== Guatemala ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.globalnetcafe.com/gnc/menu/hospedaje.htm Global Net Cafe]: Servicios de hospedaje, reseller, vps, colocacion y servidores. Incluyendo OpenVZ.&lt;br /&gt;
&lt;br /&gt;
== Hong Kong ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [https://hostus.us HostUS] features unmanaged and managed OpenVZ VPS in Hong Kong as well as 3 USA locations. Unparalleled connectivity to the Asia Pacific. Enjoy 15% off with coupon VPS15OFF.&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides self-managed OpenVZ based SSD VPS in Hong Kong, located at the Pacnet datacenter. &lt;br /&gt;
* [http://vps.timway.com/linux_vps.html Timway VPS Hosting] - Quality, non-oversold hosting provider focused on being security conscious and offering a positive client experience.   Centos, Debian, Fedora, OpenSuse and Ubuntu Containers are available.&lt;br /&gt;
* [http://www.vpsfast.us/hong-kong-cloud-server VPSFast] - VPS Provider with good prices in Hong Kong.&lt;br /&gt;
&lt;br /&gt;
== Hungary ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://elin.hu/index.php?menu=8&amp;amp;nyelv=hu&amp;amp;cim=Virtualis-szerver Virtual server] OpenVZ server: 2xX5650 Intel Xeon, 32GB RAM, 15.000rpm SAS disks, 100Mbit/s, unlimited bandwith.&lt;br /&gt;
* [https://www.ivirtual.co/vps-hosting/ iVirtual.co ] OpenVZ Master Server: 2x Intel Xeon @ 3.0GHZ, 64 GB ECC Ram, 15k RPM SAS HDD's, 1Gbit/s Network, Unlimited bandwith.&lt;br /&gt;
&lt;br /&gt;
== Iceland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
&lt;br /&gt;
== Ireland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
== India ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://cochinwebhost.in/budget-vps-hosting/ Low Cost VPS Hosting] Fast SSD VPS Server for Hosting Solutions at budget prices with 24x7 Technical Support.&lt;br /&gt;
&lt;br /&gt;
* [http://www.datacorporate.in/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
&lt;br /&gt;
*[http://www.fastwebhost.in/vps-hosting.html fastwebhost VPS Hosting] VPS hosting offered by fastwebhost are powered by ''VPS hosting, virtual server hosting and Linux VPS hosting services''. Fully Managed VPS with control panels.&lt;br /&gt;
&lt;br /&gt;
* [http://www.Freaksol.com/ Freaksol VPS Hosting] Self reliant hosted on independent networks &amp;amp; DC low ping to India,No restrictions on file types,Unlimited resources,high ram servers&lt;br /&gt;
&lt;br /&gt;
* [https://www.geniushost.in Genius Host] Fully managed [https://www.geniushost.in SSD Web Hosting] offered by Genius Host are powered by ''OpenVZ'' With LiteSpeed Web Server &amp;amp; Mariadb.&lt;br /&gt;
&lt;br /&gt;
* [http://www.hioxindia.com/virtual-private-server.php VPS Hosting] Reliable and quality VPS Virtual Private Server Hosting&lt;br /&gt;
&lt;br /&gt;
* [https://www.hostsoch.in/windows-hosting.html HostSoch Windows Hosting] Windows hosting offered by HostSoch are powered by ''Windows 2012, ASP.NET, MVC, IIS, PHP and More''. 99.9% Uptime, 24/7 Dedicated support guaranteed. &lt;br /&gt;
&lt;br /&gt;
* [https://www.miditech.co.in/ MidiTech VPS Hosting] VPS hosting offered by MidiTech are powered by ''VMware, ''. Fully Managed VPS with control panels. &lt;br /&gt;
&lt;br /&gt;
* [http://www.milesweb.com/vps-hosting.php Milesweb VPS Hosting] VPS hosting offered by Milesweb are powered by ''VMware, OpenVZ''. Fully Managed VPS with control panels. &lt;br /&gt;
&lt;br /&gt;
* [https://www.nogics.com/web/vps-hosting/ Nogics Technologies] Instant provisioning of VPS, VPS starts from $5.96/mo. 30+ OS templates.&lt;br /&gt;
&lt;br /&gt;
* [http://overlineindia.net/vpshosting-p-62.html Overline India VPS Hosting] Fully managed cPanel Installed VPS Hosting with 24x7x365 Live Chat Tech support, powered by OpenVZ&lt;br /&gt;
&lt;br /&gt;
* [http://www.prohosterz.com/linux-vps.php ProHosterZ VPS Hosting] Reliable and quality Virtual Dedicated Servers | Virtual Private Servers | XEN VPS | OpenVZ VPS | Virtual Hosting&lt;br /&gt;
&lt;br /&gt;
* [http://pve.proxmox.com/wiki/User:Apmuthu Ap.Muthu] sponsored by [http://www.gnuacademy.org GNUAcademy], [http://www.planettel.com.sg PlaNetTel] and [http://www.sacollege.net S A College] creates OpenVZ Templates for the Open Source Community and provides hosting in datacenters of clients choice or on site.&lt;br /&gt;
&lt;br /&gt;
* [http://www.servers.co.in/vps/vps_hosting.php Server Web Hosting] Offers Fully Managed OpenVZ VPS Web hosting in India/US/UK at affordable and cheap rates with best hardware quality and customer service 24/7/365 days&lt;br /&gt;
&lt;br /&gt;
* [http://vpsbeach.com VpsBeach Managed Hosting] Fully managed cPanel Installed VPS Hosting with 24x7x365 Live Chat Tech support, powered by OpenVZ&lt;br /&gt;
&lt;br /&gt;
* [http://www.vpsfast.us/india-vps VPSFast] - VPS Provider with good prices in India.&lt;br /&gt;
&lt;br /&gt;
* [http://www.vpshostingindia.net/ VPS Hosting India, Fully Managed Server] A Committed Fully Managed VPS Server for Hosting solution in India, Complete Technical Support assistance with commitment of fast, clustered and most supportive DataCenters.&lt;br /&gt;
&lt;br /&gt;
* [http://touchstone.hosting/ Touchstone Solutions Private Limited] High-performance Enterprise VPS Hosting in India. One of the highest performing VPS Servers available with cPanel Installed.&lt;br /&gt;
&lt;br /&gt;
== Iran==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.ehost.ir EHost.ir] - OpenVZ Servers , DUAL XEON Cpus , 12 Gb Ram , 100Mbit Dedicated Connection , SAS HardDisk&lt;br /&gt;
* [http://www.vpsfa.com VPSFa.com] - OpenVZ Servers , DUAL XEON Cpus -  , 24Gb Ram , 1000Mbit Dedicated Connection , SAS HardDisk&lt;br /&gt;
&lt;br /&gt;
== Italy ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
* [http://www.hosting-italia.net hosting italia] - OpenVZ Servers and panel enduser Virtualizor Intel® Core™ i7-920 Quad-Core 48 GB DDR3 RAM - Guaranteed Bandwidth 200 Mbit/s&lt;br /&gt;
* [http://www.vpsfast.us/italy-vps VPSFast] - VPS Provider with good prices in Italy.&lt;br /&gt;
&lt;br /&gt;
== Liechtenstein ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
&lt;br /&gt;
== Lithuania ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.cloudlix.com/ CloudLix.com] - Managed and unmanaged OpenVZ virtual servers based on 2.6.32 kernel. Up to 20GHz (Intel SandyBridge) CPU and 10GB RAM. Located in Vilnius and Siauliai.&lt;br /&gt;
* [http://www.databank.lt/ databank.lt] - high-quality professional OpenVZ hosting with cloud computing solutions.&lt;br /&gt;
* [https://www.lavavps.lt/ lavavps.lt] - Professional high-quality OpenVZ containers (VPS servers) affordable for everyone. Powerful control panel for VPS management.&lt;br /&gt;
* [http://www.serveriai.lt/ Serveriai.lt] - Affordable OpenVZ containers on quality HP hardware. Wide choice of virtual dedicated servers up to 8 CPU cores and 8 GB RAM. Full management available. Located in Vilnius.&lt;br /&gt;
* [https://billing.time4vps.eu/?affid=1359 Time4VPS.EU] - Powerful cloud technology based infrastructure will let you build custom virtual machine and pay only for what you really need. Located in Vilnius city.(0.99€/month(2Yr) 512mbRAM, 1TB Traffic// 4.5€/month(2Yr) StorageVps, 1TB, 10TB Traffic)&lt;br /&gt;
* [https://www.vpsnet.lt/en/ VPSnet.lt] - Powerful and high quality servers for a competitive price in Lithuania (Eastern Europe).&lt;br /&gt;
* [http://www.vpsfast.us/lithuania-vps VPSFast] - VPS Provider with good prices in Lithuania.&lt;br /&gt;
&lt;br /&gt;
== Latvia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.altnet.lv/ Altnet] - Hosting and colocation services. Any flawor, you name it. &lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
&lt;br /&gt;
* [http://www.vpsfast.us/latvia-vps VPSFast] - VPS Provider with good prices in Latvia.&lt;br /&gt;
&lt;br /&gt;
== Luxembourg ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.vpsfast.us/luxembourg-vps VPSFast] - VPS Provider with good prices in Luxembourg.&lt;br /&gt;
&lt;br /&gt;
== Malaysia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.cubiex.com/ Cubiex] - Malaysia Affordable Web Hosting and Domain Name. Affordable Linux VPS Hosting in Malaysia. OpenVZ based, Quad Core Xeon node. cPanel/WHM and DirectAdmin also available.&lt;br /&gt;
* [https://controlvm.com ControlVM] ControlVM Technology offering OpenVZ VPS in Singapore, Malaysia, USA and Germany.&lt;br /&gt;
&lt;br /&gt;
== Malta ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.a6it.com/ A6iT] - Stable, quality managed OpenVZ VPSs based in Malta.  Redundant network.&lt;br /&gt;
&lt;br /&gt;
== Morocco ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.belsemtech.com/ BelsemTech.CoM] BelsemTech SARL offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from 300 DH. Virtual Private Server (VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://www.hostoweb.com/ HosToWeb] is the only company providing VPS hosting in Morocco Data Center.&lt;br /&gt;
* [http://www.adk-media.com/ ADK Media] provides affordable managed and unmanaged virtual servers based on OpenVZ, Xen Paravirtualization and Xen HVM platforms. 24/7 Technical Support. Distros: Centos, Fedora, Debian, Ubuntu and more.&lt;br /&gt;
* [http://www.naja7host.com/ Naja7Host.CoM] The Naja7host SARL provides affordable VPS hosting using the OpenVZ platform. Running on Full Quality Nodes of up to 8 CPU and 16 GB RAM. . All VPS's come with Real 24/7/365  Technical Support and cPanel free (if option selected  ). Multiple choice of OS 32/64Bits (Centos, fedora, ubuntu, debian .ect ...)&lt;br /&gt;
* [http://www.lehoster.com/ Le Hoster] offers affordable Virtual Private Servers using the OpenVZ and KVM platform. Backed with our amazing customer support.&lt;br /&gt;
* [https://www.wantete.com/vps-servers.php/- WANTETE] - OpenVZ virtual servers, VPS Hosting in France Starting from  €1,99/month 10% CPU&lt;br /&gt;
&lt;br /&gt;
== Netherlands ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.avanpad.com/ Avanpad] offers OpenVZ VPS hosting with 24\7 online support. Customer can request different control panels or templates for installation on his VPS.&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in Netherlands from 1.88EUR/month.&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
* [http://www.Freaksol.com/ FreaKs VPS Hosting] Self reliant hosted on independent networks &amp;amp; DC low ping around the world,No restrictions on file types,Unlimited resources,high ram servers&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [http://www.HostSailor.com/ HostSailor] Number 1 Netherlands Provider HostSailor provides affordable &amp;amp; high quality services such as VPS (XEN, OpenVZ and KVM) Linux or Windows, Dedicated servers, SSL certificates and domain name services.&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides self-managed OpenVZ SSD VPS in Telecity AMS 5, one of the best datacenters located in the Amsterdam area.&lt;br /&gt;
* [https://iniz.com/ INIZ VPS Hosting] INIZ provides affordable VPS Hosting in Amsterdam, Netherlands with high resources at low prices.&lt;br /&gt;
* [https://www.liteserver.nl/ LiteServer] Looking for a quality and affordable VPS in the center of The Netherlands? We provide SSD, Storage and High Bandwidth VPSes, starting at only €16 per year. We operate AS60404.&lt;br /&gt;
* [https://www.mangelot-hosting.nl/ Mangelot Hosting] Mangelot Hosting, A webhosting company located in the Netherlands, offers budget OpenVZ hosting solutions for maximum scalability en performance.&lt;br /&gt;
* [http://www.osbox.nl OsBoX Dutch Network Engineering] Cheap VPS host as low as $1 per month. Very great uptime and a overall good support. Check the website for the server plans.&lt;br /&gt;
* [http://www.signet.nl/ Signet VPS Hosting] - Signet delivers VPS hosting plans based on CentOS or Debian templates, including control-panel Virtualmin.&lt;br /&gt;
* [http://simple-webhosting.eu/ Simple-webhosting.eu] - OpenVZ based web hosting starting from €0.98 per month.&lt;br /&gt;
* [https://www.seedvps.com SeedVPS] Provides Powerful &amp;amp; Reliable OVZ/KVM VPS Hosting in The Netherlands&lt;br /&gt;
* [http://www.touchvps.com/ TouchVPS] is a company who offer Support and Managed Services for OpenVZ Servers ,also offer templates for openvz ready to go with cPanel , DirectAdmin , Plesk , Games, IRC Services, Desktop and many more.&lt;br /&gt;
* [http://www.voipcomplete.com/product-overview/dedicated-vps.html VOIPcomplete] offers dedicated VPS plans based on CentOS including a VPS management interface.&lt;br /&gt;
* [https://www.waveride.at/ Waveride] Waveride, an EDIS company, offers budget full gigabit OpenVZ + solusVM VPS in Austria, USA and the Netherlands&lt;br /&gt;
* [https://www.totallyhosted.nl/ TotallyHosted] OpenVZ based Premium VPS services located in the Netherlands @ Serverius DC.&lt;br /&gt;
* [https://www.wantete.com/vps-servers.php/- WANTETE] - OpenVZ virtual servers, VPS Hosting in France Starting from  €1,99/month 10% CPU&lt;br /&gt;
* [http://www.vpsfast.us/netherlands-vps VPSFast] - VPS Provider with good prices in Netherlands.&lt;br /&gt;
&lt;br /&gt;
== Norway ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.vpsfast.us/norway-vps VPSFast] - VPS Provider with good prices in Norway.&lt;br /&gt;
&lt;br /&gt;
== Philippines ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.web.com.ph/vps.php Web.com.ph] - provides OpenVZ virtual servers in the Philippines.&lt;br /&gt;
&lt;br /&gt;
== Perú ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.hn.pe/ Hostname] Hostname offers business OpenVZ containers in Perú&lt;br /&gt;
* [https://www.inchosting.pe/ HostingINC SAC] OpenVZ virtualization solutions for business in Perú.&lt;br /&gt;
* [http://www.hostingplus.pe/ HostingPlus Internet Limitada] - High Performance Vps provider in Peru&lt;br /&gt;
* [http://www.hostingandino.pe/ Hostingandino Lima - Peru] - VPS with OpenVZ in Peru&lt;br /&gt;
* [https://www.mejorhosting.pe/ Mejor Hosting Perú] Hosting comparison for peruvian hosting providers.&lt;br /&gt;
&lt;br /&gt;
== Poland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://hosteam.pl/ HosTeam] offers OpenVZ VPS hosting from their DataCenter in Poland. Customer has choice of all major Linux distros (WARNING!!! restoring your backup is VERY expensive and they charge even if it wasn't restored correctly!), NATIVE IPV6 AVAILABLE!&lt;br /&gt;
&lt;br /&gt;
* [http://ultimahost.pl/ UltimaHost] high grade OpenVZ VPS and FreeBSD jail (DC in Łódź, Poland), brand of statnet.pl, SSD available for more expensive packets, NO IPV6 AVAILABLE (but they can load you tun module)&lt;br /&gt;
&lt;br /&gt;
* [http://budgetvps.pl/ BudgetVPS] very cheap, low end grade OpenVZ VPSes (DC in Gdańsk, Poland), brand of hitme.net.pl&lt;br /&gt;
&lt;br /&gt;
* [http://hitme.net.pl/ HitMe] high grade OpenVZ/Xen PV/Xen HVM VPSes (DC in Gdańsk, Poland), NATIVE IPV6 AVAILABLE (/64 on demand for free)!&lt;br /&gt;
&lt;br /&gt;
* [http://www.kr-cpd.pl/oferta/serwery-vps/ KR-CPD] Cracow's Center of Data Processing (DC of course in Cracow, Poland)&lt;br /&gt;
&lt;br /&gt;
* [http://livenet.pl Livenet] cheap, middle/low end OpenVZ VPSes (DC in Łódź, Poland)&lt;br /&gt;
&lt;br /&gt;
* [http://slaskdatacenter.pl/ Śląsk Data Center] high/middle grade OpenVZ VPSes (DC in Silesia province, Poland), SSD available for more expensive packets&lt;br /&gt;
&lt;br /&gt;
* [https://www.ionic.pl/ IONIC.pl] VPS OpenVZ with SolusVM control panel, own DC in Cracow&lt;br /&gt;
&lt;br /&gt;
== Portugal ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.ptservidor.pt/ PTServidor] - OpenVZ virtual servers with free management based in Portugal.&lt;br /&gt;
* [http://www.efeito.net/ Weblevel.pt] - OpenVZ virtual servers based in Portugal.&lt;br /&gt;
* [https://www.webtuga.pt/ WebTuga] - Managed/Unmanaged Virtual Private Servers hosted in a Portuguese Datacenter with lots of extras&lt;br /&gt;
* [https://www.cloudfire.pt/ CloudFire] - OpenVZ VPS at very low prices hosted in Portugal&lt;br /&gt;
* [https://www.linxisp.com/ LINXISP] - High Availability &amp;amp; Performance OpenVZ Containers&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] - Build an OpenVZ VPS in 14 locations WordWide From £2.49&lt;br /&gt;
&lt;br /&gt;
== Romania ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.intovps.com IntoVPS] - offers unmanaged OpenVZ virtual servers based in Romania, Netherlands and USA. A lot of resources for decent prices.&lt;br /&gt;
* [http://www.ename.ro/dedicated.html eName] - managed OpenVZ virtual servers in Bucharest, Romania&lt;br /&gt;
* [http://www.ch-center.com/virtual-servers Ch-center] - unmanaged OpenVZ virtual servers, based in Romania in it's own Data Center&lt;br /&gt;
* [http://www.clouds.ro/servere-virtuale/ Clouds] - OpenVZ virtual servers hosted on premium hardware, in Romania&lt;br /&gt;
* [http://www.HostSailor.com/ HostSailor] HostSailor provides affordable &amp;amp; high quality OpenVZ and KVM servers in Romania&lt;br /&gt;
* [https://www.shape.host/linux-vps/ Linux VPS] - OpenVZ virtual servers, Instant Linux VPS&lt;br /&gt;
&lt;br /&gt;
== Russia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.ihc.ru/vps.html IHC.RU] - VPS hosting in Moscow, Russia starting at $10/month with good set of precreated templates&lt;br /&gt;
* [http://mchost.ru/services/linux-vps/ McHost.ru] - Linux VDS Hosting from McHost.&lt;br /&gt;
* [http://hosting.agava.ru/vps/ AGAVA] - Linux VPS hosting based on OpenVZ.&lt;br /&gt;
* [http://vdsplanet.ru/ VDSPlanet.ru] - unmanaged VDS/VPS hosting starting at 3.99$ a month. Large variety of OS templates and free ISPmanager Lite control panel. Total automation is our goal.&lt;br /&gt;
* [http://www.demos.ru/service/datacenter/vps.html Demos-Internet] - we offer OpenVZ Virtual Private Server based on Linux.  All VPS come with ISPmanager control panel.&lt;br /&gt;
* [http://www.net.ru/service/net9/ www.net.ru] - OpenVZ virtual private servers.&lt;br /&gt;
* [http://www.eurobyte.ru/ Eurobyte.ru] - Linux VDS Hosting from Eurobyte.&lt;br /&gt;
* [http://www.telekom.ru/service/vps.html Elvis Telekom] - OpenVZ hosting with base and cpanel templates from Elvis Telekom.&lt;br /&gt;
* [http://fastvps.ru/vds/ FastVPS] - OpenVZ hosting, ISPmanager, Hetzner, MayFlower.&lt;br /&gt;
* [https://lepus.su/vps.html Lepus] - OpenVZ hosting, SSD, ISPmanager free, Hetzner.&lt;br /&gt;
* [http://www.hts.ru/vds/ HTS] - OpenVZ hosting, ISPmanager, Linux VPS hosting based on OpenVZ in Moscow.&lt;br /&gt;
* [https://selectel.ru/services/vds/ Selectel] - OpenVZ hosting.&lt;br /&gt;
* [https://galaxydata.ru/root-server/ GalaxyData] - Virtuozzo Containers in Cloud Storage.&lt;br /&gt;
* [http://hosterbox.ru/servers/ Hosterbox.ru] - Managed VPS hosting. Based on OpenVZ + SolusVM + ISPmanager.&lt;br /&gt;
&lt;br /&gt;
== Singapore ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://conceptlane.com/?t=hostingservices#ratesvps ConceptLane Pte Ltd] - OpenVZ VPS on dual octa-core AMD Opterons running Debian Wheezy 7, custom control panel with bandwidth graphs, reboot/reinit and web-based VNC access.&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [http://www.qoxy.com/vps QOXY.com] Affordable and Reliable OpenVZ VPS Hosting in a Singapore Data Center.&lt;br /&gt;
* [http://www.secureax.com/ SecureAX Pte Ltd] - Singapore Premium Internet Solution Provider&lt;br /&gt;
* [http://www.planettel.com.sg PlaNetTel] - Affordable and customised OpenVZ containers across 3 data centers - contact Thomas Festus at +65-66936881. [http://pve.proxmox.com/wiki/User:Apmuthu#Squeeze_based_Templates Sponsors OpenVZ Container Template]s for the Open Source community.&lt;br /&gt;
* [http://www.vpsfast.us/singapore-vps VPSFast] - VPS Provider with good prices in Singapore.&lt;br /&gt;
&lt;br /&gt;
== Serbia ==&lt;br /&gt;
* [https://www.skyhosting.rs/en/vps-servers SkyHosting] - Fast Linux OpenVZ VPS SSD Hosting with SolusVM control panel.&lt;br /&gt;
* [https://www.ninet.rs/en/vps-servers NiNet Company] - Linux OpenVZ VPS servers. Well known VPS hosting company from Serbia with their own data center&lt;br /&gt;
* [http://www.suonline.net SuOnline.Net ISP] - Linux OpenVZ VPS servers, Docker enabled !!!&lt;br /&gt;
&lt;br /&gt;
== South Africa ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.host1plus.com/ Host1Plus] - Local South African servers hosted in Johannesburg. OpenVZ VPS servers starting from $3.00 per month.&lt;br /&gt;
* [http://www.vps.co.za/ VPS.CO.ZA] - South Africa's oldest VPS provider. Local South African servers with SolusVM control panel. OpenVZ, Xen and OnApp Cloud.&lt;br /&gt;
* [http://247hosting.co.za/vpshosting.php 247Hosting] - OpenVZ virtual servers locally in South Africa with SolusVM control panel. cPanel option available!&lt;br /&gt;
* [http://www.SoftDux.co.za/ SoftDux] - OpenVZ virtual servers based America &amp;amp; South Africa. All VPS's come with cPanel or Plesk control panels. XEN VPS's also available.&lt;br /&gt;
* [http://www.clickworks.co.za/ Clickworks] - OpenVZ / Xen VPS servers hosted in RSA. Backed by Solusvm control panel.&lt;br /&gt;
* [http://www.elitehost.co.za/ Elite Host] - OpenVZ virtual servers based in America &amp;amp; South Africa. All VPS's come with cPanel and unlimited bandwidth.&lt;br /&gt;
* [http://www.telasera.com/ Telasera] - OpenVZ VPS servers hosted in South Africa. Supermicro Servers powered by Intel Xeon with 24/7 Support.&lt;br /&gt;
&lt;br /&gt;
== Spain ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.actiu.net/pro/ Actiu informatica]&lt;br /&gt;
* [http://www.corpresa.com/servidores-virtuales.html Corpresa Hosting] - Tiene algún proyecto entre manos y un plan de hosting no le hes sufuciente y un servidor dedicado no está dentro de su presupuesto?, una solución de VPS a medida será la que cubrirá todas sus necesidades.&amp;quot;&lt;br /&gt;
* [https://www.datomedia.es Datomedia] - Cloud alta disponibilidad powered by Virtuozzo 6 y Servidores VPS bajo openvz y kvm.&lt;br /&gt;
* [https://www.evidaliahost.com/vps/ EvidaliaHosting] - Servidores VPS totalmente configurados con panel de gestión Plesk 12.5, garantía de devolución de 30 días y posibilidad de discos SSD.&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
* [https://ginernet.com/vps-ssd.php GINERNET] - Servidores VPS alojados en España desde 1.99€/mes.&lt;br /&gt;
&lt;br /&gt;
== Sweden ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.admax.se/vps/ Admax] - Admax offers enterprise grade virtual servers with great pricing. Custom control panel, API, remote access &amp;amp; more.&lt;br /&gt;
* [https://www.acon.se/vps Acon VPS Server] - VPS Server and Dedicated server provider in Sweden.&lt;br /&gt;
* [https://www.glesys.com/vps.php GleSYS] - VPS Provider with a great control panel and good prices&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides the highest quality SSD VPS in Stockholm, Sweden. Based on completely pure SSD in RAID-10 and delivering extremely high network &amp;amp; hardware performance along with reliability.&lt;br /&gt;
* [https://www.nametyper.com NameTyper] - VPS and Shared hosting provider. Customize your own OpenVZ Container with 1-12 cores running on SSD and ECC RAM. &lt;br /&gt;
* [https://virtualcenter.se VirtualCenter] - The first Cloud provider with SSD VPS in Sweden. Offer enterprise class hardware and network infrastructure&lt;br /&gt;
* [http://www.vpsfast.us/sweden-vps VPSFast] - VPS Provider with good prices in Sweden.&lt;br /&gt;
&lt;br /&gt;
== Switzerland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
* [http://www.vpsfast.us/switzerland-vps VPSFast] - VPS Provider with good prices in Switzerland.&lt;br /&gt;
&lt;br /&gt;
== Tanzania==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.aptus.co.tz/ Aptus Solutions] - OpenVZ / SolusVM VPS Servers located in Dar es Salaam - 100meg to TIX. CentOS &amp;amp; Ubuntu.&lt;br /&gt;
&lt;br /&gt;
== UK ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.34sp.com/ 34SP.com] - We're a UK based web hosting company, bridging the gap between sophisticated hosting solutions &amp;amp; affordable prices&lt;br /&gt;
* [http://www.AceShells.com/ AceShells] - Fast, stable, high quality UK based virtual private servers from just £5 a month, operating since 2001&lt;br /&gt;
* [http://www.AtlanticServers.com/ Atlantic Servers] - Affordable VPS, stable, high quality VPS, UK based Data Centre&lt;br /&gt;
* [http://www.BargainVPS.co.uk/ BargainVPS] - UK / US / EU Instant setup VPS - We have some great Linux &amp;amp; Windows Bargain VPS packages on offer for you here all available Fully Managed.&lt;br /&gt;
* [http://www.cheapvps.co.uk/ CheapVPS] - CheapVPS provide cheap, UK based OpenVZ VPS servers. Hosted on high end hardware, in a top UK datacenter backed up with 24/7/365 support. Choice from a wide range of Linux distros. OpenVZ VPS managed with SolusVM.&lt;br /&gt;
* [http://www.chilliserver.com/ Chilliserver] - Affordable plans starting from just £3.99, not oversold. RHEL6 Kernel with VSwap, TUN/TAP/FUSE and ACL support enabled. SolusVM control panel with custom snapshot system and rescue system. Based in a European data Centre with UK based support.&lt;br /&gt;
* [http://www.cislondon.co.uk/virtual-private-servers/ Commercial Internet Solutions] - CIS provides premium hosting at competitive rates, focused on Small Businesses within the M25 orbital. Hosting is on Dual Quad core Intel Xeon supermicro servers in Tier 4 datacenters around London.&lt;br /&gt;
* [http://www.datacorporate.co.uk/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [http://www.DubHosting.co.uk/ DubHosting] - DubHosting started in 2004 has been providing cost effective hosting to clients world wide. Fully managed OpenVZ servers based in Europe &amp;amp; US are one of their many strong points. They can provide you with a dedicated server and install openvz allowing you to sell your own vps servers. Their servers are located at UKGrid in Manchester with 24/7/365 support&lt;br /&gt;
* [http://www.europhase.net/virtual-private-servers/ Europhase UK Limited, UK VPS] - OpenVZ VPS Hosting, Virtual Dedicated Servers, UK VPS hosted at multiple UK datacentres from £4.99&lt;br /&gt;
* [http://www.farbyte.uk/vps Farbyte UK VPS] - UK based OpenVZ VPS and shared web hosting services&lt;br /&gt;
* [http://www.fdqwholesale.co.uk FDQ Wholesale] - UK based hosting services&lt;br /&gt;
* [http://www.hadrill.org.uk Hadrill Online] - Fully managed hosting with unlimited bandwidth. Quotes available through contact form.&lt;br /&gt;
* [http://www.infrenion.com./uk_vps_hosting.html Infrenion Networks UK] Cheap, economical and reliable web hosting solutions, VPS based on the openVZ platform. You can host any YouTube Clone scripts with free FFMPEG setup on our vps servers. Also offers with a choice of selecting DataCenter.&lt;br /&gt;
* [https://www.laws-hosting.co.uk/vps-hosting.php Laws Web Hosting] - Laws Web Hosting offers OpenVZ VPS Hosting with packages starting from £5.50/m that will cater for anyone. We have OpenVZ VPS hosting solutions, and come with moderate DDoS protection.&lt;br /&gt;
* [http://www.letstalkdigital.com/index.php?option=com_content&amp;amp;view=article&amp;amp;id=73&amp;amp;Itemid=65 LetsTalkDigital VPS Hosting] - LetsTalkDigital.com offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from $14.99. Virtual Private Server(VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://www.minivps.co.uk miniVPS] miniVPS offers VPS hosting solutions with nodes located in UK, utilising openvz/solusvm with future locations of USA and UK. &lt;br /&gt;
* [https://www.first2host.co.uk First2Host Cheap VPS] - Intel Xeon E5-2630v3 OpenVZ VPS Servers. Don't be defined by a pre-made VPS plan. Create your own VPS Plan by assigning the resources that you require. SATA, SSD or NVMe storage 100 MBPS, 250 MBPS, 500 MBPS, 1GBPS speeds and free cPanel licenses.&lt;br /&gt;
* [http://www.phurix.co.uk/ Phurix] - A UK based web solutions company that provides you with reliable hosting at extremely affordable prices, VPS server virtualization using OpenVZ.&lt;br /&gt;
* [http://www.qualityservers.co.uk Quality Servers] - Affordable OpenVZ virtual servers based in the UK and USA. Choice of control panels and management options.&lt;br /&gt;
* [http://www.rshosting.co.uk/vps.html RSHosting UK] - Offering the most secure, reliable, stable and fast UK VPS Web Hosting based on OpenVZ architecture. Our Virtual Dedicated Servers are physically hosted on powerfull Quad Core servers located in multiple UK datacentres.&lt;br /&gt;
* [http://www.sharkserve.rs SharkServers] - Low Cost OpenVZ virtual servers in the UK. Choice of control panels and management options. Own Datacentre.&lt;br /&gt;
* [http://www.vpsmachine.co.uk/ vpsMachine] Quality openvz hosting platform with a large choice of customer OS templates.&lt;br /&gt;
* [https://www.webhost.uk.net/vps-hosting.html WebHostUK LTD] - Offers Cheap yet Best UK VPS Web Hosting working on OpenVZ Platform.We offers fully Managed UK VPS with true 24/7/365 days support.All our Servers are located in UK London DC.&lt;br /&gt;
* [http://www.webhostinguk.com/vps/vps-hosting.html Web Hosting UK] - Fully managed OpenVZ VPS Hosting offered on fast and reliable and affordable servers in UK &amp;amp; European datacenter with 24x7x365 days lightning fast support.&lt;br /&gt;
* [http://www.weycrest.co.uk/vps-hosting.php Weycrest VPS] - Low Cost, Stable OpenVZ and Parallels' Virtuozzo Virtual Private Server solutions. London UK Hosted at Coreix with a choice of operating systems, and root and control panel options.&lt;br /&gt;
* [http://www.xilo.net/virtual_private_servers-vps/ XILO] - UK-based hosting with UK-based support. VPS services offered with a choice of cPanel, Webmin and other useful applications, VoIP, SIP, VPN to name a few.&lt;br /&gt;
* [http://www.zxvps.co.uk/ ZxVPS VPS Hosting] - Quality, non-oversold VPS based on the openVZ platform, using SolusVM management panel, VPS from 128mb - 2gb, cpanel, direct admin, kloxo, etc.&lt;br /&gt;
* [http://www.meteorvps.com/ MeteorVPS] - Professional, Non-Oversold amazing VPS plans pretty cheap using SolusVM management, range from 512MB -&amp;gt; 16GB&lt;br /&gt;
* [http://www.chvps.com/ CHVPS] - Switzerland Based VPS, Cheap Pricing with solusVM control panel.&lt;br /&gt;
* [http://domvps.com/ domVPS] - OpenVZ Virtual Servers in the USA, Germany, France &amp;amp; the Netherlands at a low cost.&lt;br /&gt;
* [http://www.gemvps.net/ GemVPS.NET] - UK (Manchester) Based Company, OpenVZ Virtual Servers in the UK &amp;amp; France on Fast nodes.&lt;br /&gt;
* [http://www.rackburst.net/ Rackburst] - UK SSD VPS Hosting with fast UK-based Live Support available from £1.49 per month.&lt;br /&gt;
* [http://www.vpsfast.us/united-kingdom-vps VPSFast] - VPS Provider with good prices in UK.&lt;br /&gt;
&lt;br /&gt;
== Ukraine ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://ekvia.com/ Ekvia] - VDS/VPS based on OpenVZ. Free trial 14 days. Domain registration for VDS/VPS.&lt;br /&gt;
* [http://www.gelihost.com/ Geliar Hosting Solutions] - Fast virtual dedicated servers based on OpenVZ. Geliar Hosting Solutions offering many control panels and other useful services.&lt;br /&gt;
* [http://www.hostpro.ua/ Hostpro.ua] - Full managed OpenVZ servers.&lt;br /&gt;
* [http://www.vpsfast.us/ukraine-vps VPSFast] - VPS Provider with good prices in Ukraine.&lt;br /&gt;
&lt;br /&gt;
== USA ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.a2hosting.com A2 Hosting] is your high-performance [http://a2hosting.com/openvz-vps-hosting OpenVZ VPS Hosting] provider. Design your perfect [http://a2hosting.com/vps-hosting VPS Hosting] account today! Featuring SwiftServers and SSDs with page load speeds up to 300% faster compared to standard drives.&lt;br /&gt;
* [http://www.afterburst.com Afterburst] (Previously FanaticalVPS): affordable unmetered, unmanaged VPS servers in NY.&lt;br /&gt;
* [https://www.asurahosting.com/ AsuraHosting] offers powerful, reliable, and simple OpenVZ VPS to clients. AsuraHosting has a dedicated support team, and quality hosting; Pricing starts at just $5/month!&lt;br /&gt;
* [http://beyondhosting.net BeyondHosting.net] High Performance OpenVZ Virtual Private Servers (VPS)  Tier 1 US Datacenter.&lt;br /&gt;
* [http://buyvm.net BuyVM.net] DDoS Protection, three datacenter locations, Stallion control panel. Affordable quality VPS hosting since 2010!&lt;br /&gt;
* [https://www.binarycpu.com Binary Computer Solutions] has provided OpenVZ based Virtual Private Server hosting for over 5 years.  Network outages are a thing of the past, and oversold services are never heard of here.  Built on solid technology, with infrastructure to match - Binary Computer Solutions will give you hosting you need, without the cost others ask for.  Starting at $30.00/mo.&lt;br /&gt;
* [http://www.bodhost.com/ Bodhost.com] Fast, Reliable and secure web hosting service with 24*7 free customer service.&lt;br /&gt;
* [http://www.buildyourvps.com/ BuildYourVPS.com] mix ‘n’ match your VPS; choose only the bandwidth, RAM, disk capacity, type of IP connection, level server redundancy, and the support/monitoring you want. [http://www.buildyourvps.com/ BuildYourVPS] is the 1st to offer you a highly-customized VPS solution, without making you pay for unused extra features.&lt;br /&gt;
* [https://www.budgetvm.com/openvz-linux-vps.php BudgetVM.com] Each server includes our industry-leading SLA, DDoS protection, 200Gbps networks and 7 * 24-hour customer support.&lt;br /&gt;
* [http://www.byethost.com Byethost.com] offers OpenVZ based VPS Hosting as its main VPS solution, with the hypervm panel. Centos, Debian, Fedora, OpenSuse and Ubuntu Containers are available.&lt;br /&gt;
* [http://cheaperasp.net CheaperASP.Net] provides Quality web hosting on the OpenVZ platform. You also help you get best options at [http://cheaperasp.net/godaddy-1-hosting-free-domain-promo/ affordable] cost.&lt;br /&gt;
* [http://www.chhost.net/vps.htm CH Hosting VPS Hosting] CH Hosting or chhost.net offers OpenVZ based VPS Hosting. 24/7 Support. Upgrade/Downgrade your plan as needed on-the-fly without the risk of downtime. Since 2006. Non-Oversell&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in USA from 1.88EUR/month.&lt;br /&gt;
* [http://www.cloudshards.com Cloud Shards] High Performance, reliable, stable and affordable OpenVZ Virtual Private Servers (VPS) in data centers across the USA.&lt;br /&gt;
* [https://cloudgearhosting.com CloudGear Hosting] - offers OpenVZ hosting in 4 locations across the USA. Including free DDoS Protection and free SSL with cPanel.&lt;br /&gt;
* [http://www.datacorporate.com/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [https://www.delimiter.com/storage-vps/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [https://www.cheapdomainnamesdot.com Domain Host SSL] provides Reliable web hosting with OpenVZ platform Since 2003, Located New York city, Atlanta, Los Angeles. &lt;br /&gt;
* [http://www.DubHosting.com/ DubHosting] - DubHosting started in 2004 has been providing cost effective hosting to clients world wide. Fully managed OpenVZ servers based in Europe &amp;amp; US are one of their many strong points. They can provide you with a dedicated server and install openvz allowing you to sell your own vps servers.&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
* [http://www.evolucix.com/ Evolucix.com] Evolucix offers state of the art, professional, and reliable OpenVZ VPS solutions on top-notch hardware while providing quality support.&lt;br /&gt;
* [http://www.evolvedservers.com Evolvedservers.com] Openvz based vps servers. Hosted in Michigan, USA. 24/7 Support. Hosted in tier-3 and tier-4 datacenter's with multiple redundancies.&lt;br /&gt;
* [http://fastwebhost.com/vps-hosting.html Fastwebhost]: affordable cloud VPS servers using OpenVZ. &lt;br /&gt;
* [http://www.fliphost.net Fliphost.net]: Powerful, affordable instant setup VPS systems. Servers based in Phoenix Az with another location coming soon.&lt;br /&gt;
* [http://www.frontrangehosting.com Front Range Hosting]: SSD Cached KVM &amp;amp; OpenVZ VPS Hosting Prices Start at 2.00/mo, located in Colorado Springs, Colorado.&lt;br /&gt;
* [http://glesys.se GleSYS] is a hosting company specialized in serverhosting. Also offering VPS hosting mainly based on OpenVZ. GleSYS has provided access to server and Cisco hardware for developers from OpenVZ to find problem with VLAN implementation.&lt;br /&gt;
* [http://goodealhosting.com/ GOODEALHOSTING.com] Quality Hosting Solutions! Provides affordable unmanaged/managed VPS based on OpenVZ! start from $10.00, real 24/7 support.&lt;br /&gt;
* [http://gothost.net GotHost.net] Providing OpenVZ based VPS Hosting with SolusVM. All nodes are Quad Core Xeon with RAID-10 for speed and redundancy. Budget plans starting at $7.99.&lt;br /&gt;
* [http://www.greengeeks.com/ GreenGeeks Hosting] VPS Hosting. Dual Intel Xeon 64-Bit CPU's, DDR3 RAM, RAID-10 SSD Storage Arrays. 24/7 Support. cPanel/WHM + more!&lt;br /&gt;
* [http://hostarmor.com HostArmor™] - is best known for low-cost and reliable shared hosting and dedicated servers. Recently the company expanded to offer OpenVZ virtual server plans at 8 worldwide locations, five in the U.S., one in Germany, one in France, and one in the Netherlands. VPS plans start at $13.99/month.&lt;br /&gt;
* [http://www.host4geeks.com Host4Geeks] - Host4Geeks is a premium Fully Managed VPS provider with datacenters across 2 locations in US and in UK. All servers offer a free cPanel license.&lt;br /&gt;
* [http://www.host1plus.com Host1Plus] - OpenVZ based virtual servers in Chicago and Los Angeles. VPS plans start at $2.00 per month.&lt;br /&gt;
* [http://www.hostavps.com HostAVPS] - Providing Fully Managed VPS's on both the West &amp;amp; East Coast.&lt;br /&gt;
* [http://www.hostcolor.com Host Color] - OpenVZ based virtual servers hosted in a Tier 4 class data center based out of South Bend, Indiana. Juniper managed, fully-redundant network with uplinks to Level 3, Cogent and Internap.&lt;br /&gt;
* [http://www.hostigation.com Hostigation] - High resource unmanage VPS hosting solutions.&lt;br /&gt;
* [http://www.hostingrails.com Hosting Rails] offers Rails-targeted OpenVZ VPS Hosting and updated Rails-ready OS images.&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [http://www.hostmist.com Host Mist] features budget OpenVZ VPS hosting from four major cities across the US.&lt;br /&gt;
* [http://www.hostrush.com HostRush] Self managed, ssd vps for business and non business. &lt;br /&gt;
* [http://www.dailyhosting.net hostoople] We offer OpenVZ VPS hosting from Dallas Texas, Starting at $29.95/month &lt;br /&gt;
* [https://hostus.us HostUS] provides unmanaged and managed OpenVZ VPS in Atlanta, Dallas and Los Angeles with custom control panel. A large variety of Linux distros are available. Enjoy 15% off with coupon VPS15OFF.&lt;br /&gt;
* [https://www.hostwinds.com Hostwinds] Affordable managed/unmanaged VPS Solutions.&lt;br /&gt;
* [http://hostsia.com Hostsia] With HOSTSIA Web services, you can get an OpenVZ VPS for only $15.00/mo. Each OpenVZ VPS includes multiple free-of-charge bonuses and offers a 99.9% uptime guarantee. You can also use our charge-free Hepsia CP, which is available with each OS – it permits you to host an unmetered number of domains and comprises heaps of handy tools, which will help you better manage your site and your VPS web hosting account.&lt;br /&gt;
* [http://www.infrenion.com./vps_hosting.html Infrenion Networks] Cheap, reliable and secure VPS hosting solutions, based on the openVZ platform. You can host any YouTube Clone scripts with enhanced support quality round the clock.&lt;br /&gt;
* [http://iniz.com/ INIZ VPS Hosting] INIZ provides affordable VPS Hosting in Los Angeles &amp;amp; New York with high resources at low prices.&lt;br /&gt;
* [https://www.interserver.net/ InterServer Web Hosting] Fast &amp;amp; Reliable VPS - 24x7 Support. 99.9% Up-time, Hosting Since 1999!.&lt;br /&gt;
* [http://www.joinvps.com JoinVPS.com] ISPmanager OpenVZ based VPS hosting. 24/7 Technical Support. Free ISPmanager control panel.&lt;br /&gt;
* [http://www.lovevps.com LoveVPS] Budget VPS provider starting at $5.99/month located in the US with Xeon nodes.&lt;br /&gt;
* [http://www.letstalkdigital.com/index.php?option=com_content&amp;amp;view=article&amp;amp;id=73&amp;amp;Itemid=65 LetsTalkDigital VPS Hosting] LetsTalkDigital.com offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from $14.99 Virtual Private Server(VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://lylix.net LYLIX] offers affordable VPS hosting with a choice of eight different Linux distributions, dedicated VPS hosting, and specializes in Asterisk/VOIP based hosting including Trixbox, AsteriskNow, Elastix, and PBX-in-a-Flash.  Popular choice for unmanaged IP-PBX services; entire infrastructure built on a High-availability (HA) network across three regional NOCs.&lt;br /&gt;
* [http://www.micfo.com Micfo.com] offers VPS hosting services for both Linux VPS hosting and Window VPS hosting on affordable price combined with world-class 24x7x365 support.&lt;br /&gt;
* [http://www.neostreams.info/neoshop/cart.php?gid=9 nEo Stream Services] Offer's Top Quality OpenVZ Servers, Starting at $18.95 per month! SolusVM Control panel , 7 day Money Back Guarantee , 24x7 Professional Support.&lt;br /&gt;
* [http://pogiweb.com/vps/ PogiWeb LLC] Instant and free setup. Includes SolusVM control panel and free level 1 support during first month.&lt;br /&gt;
* [http://www.theserverexperts.com TheServerExperts.com] TheServerExperts VPS line is the ideal solution for clients who require the control of a dedicated server matched with the affordability and simplicity of a traditional shared hosting account.&lt;br /&gt;
* [http://thenynoc.com New York NOC] affordable Linux VPS hosting out of New York and Chicago. Plans as low as $5 a month and are backed by a redundant infrastructure and 24/7 support.&lt;br /&gt;
* [http://railsplayground.com RailsPlayground.com] Ruby on Rails VPS with ready to go Rails images with the LxAdmin control panel&lt;br /&gt;
* [http://www.raidlogic.net RaidLogic.NET] RaidLogic.NET offers OpenVZ based Linux VPS out of multiple facilities across the United States, including Miami, Los Angeles, and Chicago. Starting as low as $3.95/month.&lt;br /&gt;
* [http://www.ramhost.us RAM Host] RAM Host offers OpenVZ based Linux VPS out of multiple facilities across the United States, including Atlanta, Kansas City, and Phoenix.&lt;br /&gt;
* [http://www.reconhosting.com Recon Hosting] Recon Hosting offers affordable OpenVZ VPS solutions where you get Quality Hosting at a Fraction of the price. Instant setup with the latest Operating System templates including cPanel.&lt;br /&gt;
* [http://www.rokabear.com Rokabear] Rokabear offers OpenVZ Linux VPS, Dedicated Server, and Colocation. All Hardware setup in High Availability mode including raided drives and redudnant power and network connections. With multiple upstream providers, Rokabear's connectivity is fast and reliable! Rokabear supports LAMP, Openvpn, and Asterisk configurations. VPSes start at $7.99!&lt;br /&gt;
* [https://www.rosehosting.com RoseHosting] offers OpenVZ Linux virtual servers equipped with Enterprise Grade SSD drives. All hosting plans are fully-managed with FREE 24/7 support, FREE website migration, FREE weekly backups and FREE server monitoring included.&lt;br /&gt;
* [http://www.rshosting.com/vps.html RSHosting.com] RSHosting offers the most secure, reliable and stable VPS - Virtual Private Servers based on OpenVZ architecture, powered by the most professional and qualified 24/7 lightening fast support.&lt;br /&gt;
* [http://www.servercomplete.com Server Complete, LLC] Server Complete offers OpenVZ based Linux VPS out of multiple facilities across the United States, including Atlanta, Dallas, and Chicago.&lt;br /&gt;
* [http://www.servergrove.com ServerGrove] uses OpenVZ as the main virtualization platform for its state of the art VPS hosting services.&lt;br /&gt;
* [http://serverswarm.com ServerSwarm] provides stable, affordable, high performance OpenVZ virtual private servers.&lt;br /&gt;
* [http://Sharktech.net Sharktech] provides custom OpenVZ solutions DDOS-protected up to 100Gbps.&lt;br /&gt;
* [http://www.silverrack.com/ SilverRack VPS Hosting] - SilverRack provides affordable VPS hosting using the OpenVZ platform.&lt;br /&gt;
* [http://www.soficol.com/ Soficol] Offers Enterprise OpenVZ based VPS, hosted on a clustered infrastructure and redundant network. Easy to use user management and instant setup.&lt;br /&gt;
* [http://www.spectrohost.com/ Spectro Host] - Offers performance VPS Servers running openvz. Always the most resources and never over committing OpenVZ nodes.&lt;br /&gt;
* [http://www.budgetvds.com/ BudgetVDS] - Offers VPS Servers running openvz we've been in business for 2 years now using openvz platform.&lt;br /&gt;
* [http://www.syera.net/ Syera Networks] Unmetered VPS From $18.88/M, 24/7 Support, OpenVZ/HyperVM, Instant Setup!, Free 1Gbps Upgrade with Coupon: syera1G&lt;br /&gt;
* [http://www.synapseglobal.com/voip_vps.html SynapseGlobal.com] Elastix, Trixbox, PBX in a Flash and Asterisk VPS - OpenVZ based Asterisk VOIP servers with 14 Tier 1 premium bandwidth providers.&lt;br /&gt;
* [http://www.tektonic.net TekTonic] provides VPS hosting services using both Virtuozzo and OpenVZ technology.&lt;br /&gt;
* [http://www.tigerservers.com/ TigerServers] - Provides affordable managed VPS based on OpenVZ. Servers located in Chicago, Illinois&lt;br /&gt;
* [http://www.tocici.com/ TOCICI VPS Hosting Services] Since 1995 TOCICI has offered web hosting services, with 24/7 support commitments and a strong non-oversell policy. Our purpose-built hosting infrastructure has serviced many organizations for over a decade. Offering OpenVZ VPS, data center colocation, and equipment leasing options, visit our website for prices and more details.&lt;br /&gt;
* [http://www.ultravps.com UltraVPS] UltraVPS offers managed and unmanaged OpenVZ-based VPS hosting utilizing dual CPU hardware nodes with redundant, high-performance RAID-10 storage.  UltraVPS offers VPS servers with many popular control panel options and turn-key applications.&lt;br /&gt;
* [http://www.vpsfx.com VPSFX] VPSFX.com offers OpenVZ VPS, data center colocation, and dedicated servers.&lt;br /&gt;
* [http://www.Webhost.US.Com/linuxvps.html US Web Hosting]  Webhost.US.Com offers powerful GUI based VPS management system with full OpenVZ, Xen Paravirtualization and Xen HVM support.All our Virtual Private servers are fully Managed with 99.9% uptime and 24/7 top notch support.&lt;br /&gt;
* [http://unixservice.com Unixservice/unxsVZ] Low cost OpenVZ ONLY hosting we specialize in Mail, DNS and RADIUS multiple container hosting. At the world famous Market St. San Jose, CA Silicon Valley datacenter. Ping times from your containers to local yahoo and google sites guaranteed single digit ms times. Your containers are backed up at 4 local and 2 remote locations. Contact supportgrp at unixservice dot com.&lt;br /&gt;
* [http://www.vogenic.xyz Vogenic: Cloud Services] If you are searching for an upgrade to the shared hosting service, then you should consider our OpenVZ or KVM VPS hosting services.&lt;br /&gt;
* [http://vpslink.com VPSLink.com] provides virtual private server hosting on the OpenVZ platform.&lt;br /&gt;
* [http://www.vpsspeed.com/ VPSSpeed] - VPSSpeed provides unmanaged OpenVZ based VPS hosting with over 50 OS Templates, real 24/7/365 support and fast US servers. No overselling.&lt;br /&gt;
* [http://vpsnoc.com VPSNOC] offers unmanaged vps hosting based in the USA utilizing OpenVZ hypervisor behind an in-house VPS control panel.&lt;br /&gt;
* [https://www.waveride.at/ Waveride] Waveride, an EDIS company, offers budget full gigabit OpenVZ + solusVM VPS in Austria, USA and the Netherlands&lt;br /&gt;
* [http://www.webappcabaret.com WebAppCabaret] provides VPS solutions for hosting applications. We offer OpenVZ with cPanel or Plesk for web site management; and NGASI Universal App Manager for deploying and managing JAVA and RAILS applications.&lt;br /&gt;
* [http://www.wirenine.com/vps-hosting/ WireNine.com VPS Hosting] Low cost fully managed and unmanaged OpenVZ based VPS Hosting with SAS 15k enterprise drives in high-performance RAID-10 storage.&lt;br /&gt;
* [http://www.zoidial.com/ Zoidial Hosting and VPS] - offers VPS and Virtual Dedicated Server solutions utilizing OpenVZ.  In business since 1998, Zoidial Incorporated is a small hosting provider focused on being security conscious, proactive, and offering a positive client experience.&lt;br /&gt;
* [http://zensix.com ZenSix Hosting] Cheap OpenVZ based VPS accounts with the SolusVM control panel.&lt;br /&gt;
* [http://zigothosting.com Zigot Hosting] Affordable and Reliable OpenVZ based VPS's within the SolusVM control panel.&lt;br /&gt;
* [http://www.vpsfast.us/usa-vps VPSFast] - VPS Provider with good prices in USA (Los Angeles, New Jersey, New York, Seattle, Washington, Dallas, Chicago, Atlanta, Ashburn, Miami, Piscataway).&lt;br /&gt;
* [http://www.xarixlite.com Xarix Lite] - offers OpenVZ hosting in Charlotte, SC. OpenVZ plans starting at $2.50/mo&lt;br /&gt;
&lt;br /&gt;
== Vietnam ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://appvz.com AppVZ.com] (www.appvz.com) is a leading web solution provider offering domain, hosting, reseller and VPS hosting packages from 2009. Just recently, the company has offered discount packages where customers can avail managed and un-managed VPS for only $9.5 per month.&lt;br /&gt;
&lt;br /&gt;
= Hosting providers comparison =&lt;br /&gt;
&lt;br /&gt;
It is hard to compare all virtual private server offers provided by different hosting providers.&lt;br /&gt;
Sites below can help you with it.&lt;br /&gt;
&lt;br /&gt;
* [https://www.cheapvpsservers.co.uk/ Cheap VPS Servers]&lt;br /&gt;
* [https://www.hostingmyths.com/ Hosting Myths]&lt;br /&gt;
* [https://www.thehostbay.com/ TheHostBay]&lt;br /&gt;
* [https://www.exoticvps.com/ Exoticvps]&lt;br /&gt;
* [https://reviewsquirrel.com/web-hosting-reviews/ Review Squirrel]&lt;br /&gt;
* [http://wphostninja.com/5-websites-to-follow-to-buy-free-vps-hosting/ Freevpshosting]&lt;br /&gt;
* [http://lowendstock.com/ Lowendstock]&lt;br /&gt;
* [https://www.websitehostingrating.com/ Best Web Hosting Services]&lt;br /&gt;
* [http://serverbear.com/compare?Sort=RAM&amp;amp;Order=asc&amp;amp;Server+Type=VPS&amp;amp;Monthly+Cost=-&amp;amp;HDD=-&amp;amp;RAM=-&amp;amp;Virtualization=OpenVZ Serverbear]&lt;br /&gt;
* [http://wphostninja.com/black-friday-web-hosting-deals/ Black Friday Web Hosting]&lt;br /&gt;
* [https://www.comparethehosts.com/vps-web-hosting.htm VPS Web Hosting Reviews]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
http://vpscomp.com&lt;br /&gt;
http://reviewsignal.com/webhosting/compare/&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= See also =&lt;br /&gt;
&lt;br /&gt;
* [[Partners]]&lt;br /&gt;
* [[Download mirrors]]&lt;br /&gt;
* [[VPS vs Dedicated]]&lt;/div&gt;</summary>
		<author><name>Vvs</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.openvz.org/index.php?title=Hosting_providers&amp;diff=23315</id>
		<title>Hosting providers</title>
		<link rel="alternate" type="text/html" href="https://wiki.openvz.org/index.php?title=Hosting_providers&amp;diff=23315"/>
		<updated>2020-06-05T05:08:53Z</updated>

		<summary type="html">&lt;p&gt;Vvs: Undo revision 23312 by 195.14.170.242 (talk)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''OpenVZ is free and open implementation of Virtuozzo containers for Linux.&lt;br /&gt;
Don't forget to keep [[testimonials|testimonial]] and [[donate]] to OpenVZ.'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
OpenVZ makes for a great hosting platform for VPS hosting. The providers below offer VPS services using OpenVZ.&lt;br /&gt;
&lt;br /&gt;
= OpenVZ hosting providers =&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- @@@@@@@@@@@@@@@@@@@@@@@&lt;br /&gt;
&lt;br /&gt;
IF YOU EDIT THIS PAGE,  PLEASE OBEY TO THE FOLLOWING RULES:&lt;br /&gt;
&lt;br /&gt;
1. Keep your record on ONE line&lt;br /&gt;
2. Keep the list of providers alphabetically sorted, DO NOT insert your record on top.&lt;br /&gt;
3. Keep the list of countries alphabetically sorted as well.&lt;br /&gt;
&lt;br /&gt;
     @@@@@@@@@@@@@@@@@@@@@@@@ --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Andorra ==&lt;br /&gt;
* [https://www.actiu.net/pro/ Actiu informatica] amb servidors dins i fora del principat.&lt;br /&gt;
&lt;br /&gt;
== Argentina ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.g2khosting.com/ G2K Hosting offer OpenVZ containers with high level hardware technology from 25 US with Control Panel, various Linux Dists and full support.&lt;br /&gt;
* [http://www.wiredhosting.com.ar/ WiredHosting] offer XEN and OpenVZ containers with SSD drives, cloudflare security and weekly backups to protect your information. Phone and Helpdesk support. &lt;br /&gt;
* [http://www.ihserver.net/ IHServer] Specialized virtualization on OpenVZ containers at Gigared datacenter. We have in Argentina one of the better fiber connection to the US, but also provides services from LSTN in Texas.&lt;br /&gt;
* [https://www.fulltech.com.ar/ Full Tech Solutions] Specializes in the virtualization of OpenVZ &amp;amp; Virtuozzo containers, installed in the Full Tech Solutions Data Center located in Villa Elisa, Entre Rios Argentina.  It also offers services hosted in the United States, Netherlands and Germany&lt;br /&gt;
* [https://www.neolo.com/ Neolo] provide OpenVZ containers at our own datacenter in South America with double internet provider. Choose your Linux OS and apps. Full support.&lt;br /&gt;
* [https://www.infranetworking.com.ar/ Infranetworking] All our Cloud VPS container solutions for Argentine customers are powered by the all mighty OpenVZ virtualization software.&lt;br /&gt;
&lt;br /&gt;
== Australia == &lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
[https://www.conetix.com.au/ Conetix Hosting] Specialising in business grade, fully managed Virtuozzo containers with Virtuzzo Cloud Storage. 100% Australian owned and operated. Brisbane based DC with Enterprise Dell servers.&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides self-managed OpenVZ based SSD VPS located at Equinix SY3 in Sydney, one of the best and well-connected datacenters in the region.&lt;br /&gt;
* [http://www.vpsfast.us/australia-cloud-server VPSFast] - VPS Provider with good prices in Australia.&lt;br /&gt;
&lt;br /&gt;
== Austria ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
* [https://kapper.net/ kapper.net] kapper.net offers OpenVZ and Virtuozzo (and other HyperVisors) based server-solutions with kind support and 24x7 maintenance.&lt;br /&gt;
* [https://mdhost.eu/vserver.php MDHost.eu] New Hosting Provider with nice Prices and many Server locations. Austria, Germany, France and more.&lt;br /&gt;
* [https://www.snb.at/ SNB] offers OpenVZ containers and support's also existing vm's in customers environment&lt;br /&gt;
* [https://www.waveride.at/ Waveride] Waveride, an EDIS company, offers budget full gigabit OpenVZ + solusVM VPS in Austria, USA and the Netherlands&lt;br /&gt;
* [http://www.vpsfast.us/austria-cloud-server VPSFast] - VPS Provider with good prices in Austria.&lt;br /&gt;
&lt;br /&gt;
== Brazil ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.datacorporate.com.br/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [http://www.globalmedia.com.br/ GlobalMedia] We offers OpenVZ containers hosted on a very fast network with fast setup. Ubuntu, Debian, CentOS.&lt;br /&gt;
* [http://www.host1plus.com.br/ Host1Plus] Servers hosted in São Paulo. We offering reliable and secure OpenVZ VPS Servers with 99.99% up-time, starting from $5.00 per month.&lt;br /&gt;
* [http://www.ipdeck.net/ IPDECK] VPS Linux server from R$15,00/month! Fully customizable according to your needs.&lt;br /&gt;
* [http://www.quantive.com.br/ QuantiveHost] VPS Linux with 99.99% uptime. Prices starting from R$ 29,35.&lt;br /&gt;
* [https://www.elevahost.com.br/ Eleva host] Server hosted in Brazil. The best support.&lt;br /&gt;
&lt;br /&gt;
== Bulgaria ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* [https://www.cyberhour.com CyberHour.com] CyberHour.com is an [https://www.cyberhour.com offshore VPS hosting] provider located in Europe. The provide blazing fast servers and premium Bandwidth of 200Mbps. With high privacy protection.&lt;br /&gt;
* [https://www.linuxssdvps.com Bulgaria VPS] Linux SSD VPS is an [https://www.linuxssdvps.com offshore VPS hosting] provider located in Sofia, Bulgaria. Privacy is very respected and anonymous registrations are allowed, as well as payments via Bitcoin / PayPal.&lt;br /&gt;
* [http://www.webuzo.net Bulgaria VPS] Webuzo Network is an offshore SSD VPS hosting provider located in Bulgaria. Privacy is very respected and anonymous registrations are allowed, as well as payments via Bitcoin / PayPal.&lt;br /&gt;
* [https://vpsbg.eu/en Bulgaria VPS] VPSBG.eu is an offshore SSD VPS hosting provider located in Sofia, Bulgaria. Privacy is very respected and anonymous registrations are allowed, as well as payments via Bitcoin.&lt;br /&gt;
* [http://www.bul.net/ Bul.net] Provides OpenVZ based VPS, perfect user/VPS management via [http://ispsystem.com VDSManager]. Instant creation after online payment. Debian/Ubuntu/CentOS with ISPManager Control panel. Optimal price policy.&lt;br /&gt;
* [http://www.cointech.eu/vps-hosting/ CoInTech] provides OpenVZ based VPS containers, free webmin managment. Containers can be CentOS, Slackware, Ubuntu, custom or our special [http://www.mandriva.com Mandriva Linux] container with own [http://mandriva.cointech.net repository].&lt;br /&gt;
* [http://www.rax.bg/ RAX.bg] Offers OpenVZ based VPS, hosted on a clustered infrastructure and redundant network. Easy to use user management, Instant setup, CentOS (OS).&lt;br /&gt;
* [http://www.jump.bg/ Jump.bg] Provides OpenVZ VPS servers hosted on a redundant network which provides a very easy to manage platform for all clients which gain instant access to their OS ( Ubuntu, CentOS , Debian etc ... )&lt;br /&gt;
* [https://www.fitvps.com/ FitVPS.com] Offers affordable and reliable OpenVZ based VPS in Varna, Bulgaria. Own data center, own multihomed network, with SLA. Instant automatic setup, SolusVM control panel.&lt;br /&gt;
* [http://www.qhoster.com/ QHoster.com] Instant activation OpenVZ VPS in UK, USA, Germany, France and Switzerland. Both 32/64 bit OpenVZ OS VPS templates : CentOS 5/6, Debian 6/7, Ubuntu 12/13.&lt;br /&gt;
* [https://www.verdina.net Verdina.NET] Verdina.net offers dedicated hosting services, provided by powerful dell hardware. Servers are located in Telepoint Datacenter, a Tier 3 DC located in Sofia, Bulgaria.&lt;br /&gt;
* [https://www.vps.ag/ VPS.AG] Affordable and reliable OpenVZ VPS based in Sofia, Bulgaria. Instant setup and 24/7 support.&lt;br /&gt;
* [http://www.vpsfast.us/bulgaria-vps VPSFast] - VPS Provider with good prices in Bulgaria.&lt;br /&gt;
&lt;br /&gt;
== Canada ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://whc.ca/canadian-cloud-servers Web Hosting Canada Cloud Servers] - Powerful Cloud servers powered by OpenVZ and located in Canadian datacenters, with fast RAID-10 storage, fully managed with cPanel.&lt;br /&gt;
* [http://compevo.com compevo Clustered VPS Server Hosting Provider] - We offer clustered VPS Servers to avoid downtime and dataloss. Our network and service is second to none and is used by businesses around the world.&lt;br /&gt;
* [http://www.datacorporate.ca/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [https://www.delimiter.com/storage-vps/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [https://www.miditech.com/ MidiTech Hosting Canada] VPS hosting offered by MidiTech Canada are powered by VMware, . Fully Managed VPS with control panels&lt;br /&gt;
* [http://www.gotekky.com Gotekky Cloud VPS Hosting] High quality Cloud VPS packages powered by our own infrastructure and network in Toronto. Scalable from our $5/mo plan all the way to your own dedicated cloud server. Based on OpenVZ and our own proprietary panel.&lt;br /&gt;
* [http://www.letstalkdigital.com/index.php?option=com_content&amp;amp;view=article&amp;amp;id=73&amp;amp;Itemid=65 LetsTalkDigital VPS Hosting] LetsTalkDigital.com offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from $14.99. Virtual Private Server (VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://secure.media-hosts.com/link.php?id=7 Media-Hosts.com] Provides Quality and Scalable OpenVZ based Virtual Private Servers. 100% network uptime guaranteed. Located in Montreal Quebec with 5 Tier1 upstream providers.&lt;br /&gt;
* [http://www.openvz.ca OpenVZ.ca] Canadian Budget VPS Servers on OpenVZ Platform. &lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [http://protoserver.com ProtoServer] Advanced VPS Hosting from $4.95/month. Many pre-installed VPS Templates available (CMS, E-commerce, Web development, Online community, Media streaming, etc.) No bundles or service plans - mix VPS resources as needed and change VPS configuration anytime. Also offering DNS Hosting, E-mail hosting, Domains Registration.&lt;br /&gt;
* [http://www.vistapages.com/vps Vistapages VPS] - IBM &amp;amp; Dell Hardware. MCI/Verizon Backbone. Distros: Centos, Fedora, Debian &amp;amp; more. Full management available. Located in Toronto.&lt;br /&gt;
* [http://vpsville.ca/ VPSVille] - Good network. Good CPU. Good choice of distros: Centos, Fedora, Debian, Ubuntu, Slackware, Gentoo, OpenSUSE, CERN. My favorite OpenVZ provider. [mailto:jak@isp2dial.com John Kelly]&lt;br /&gt;
* [http://solib.ca/services-offerts/hebergement-haute-vitesse/serveurs-vps/ SOLIB Logiciel Libre Québec] Our company offers DDoS protected server solutions including OpenVZ containers. Very high availability and reliability, all our VPS are located in Quebec, Canada.&lt;br /&gt;
* [https://www.host-stage.net/linux-vps/ HostStage - Linux VPS] - Simple, Reliable OpenVZ VPS packed with 1 GBPS port speed, RAID 10 SSD, Intel Xeon CPU, DDoS Protection from $4.95/month&lt;br /&gt;
* [http://www.vpsfast.us/canada-vps VPSFast] - VPS Provider with good prices in Canada.&lt;br /&gt;
* [https://websavers.ca/canadian-vps-hosting Websavers Inc in Halifax] - VZ containers priced by the resource. Resource changes entirely client-level.&lt;br /&gt;
&lt;br /&gt;
== Colombia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.datacorporate.co/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [http://www.soficol.com/ Soficol] Offers Enterprise OpenVZ based VPS, hosted on a clustered infrastructure and redundant network. Easy to use user management and instant setup.&lt;br /&gt;
&lt;br /&gt;
== Czech Republic ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://4smart.cz 4Smart.cz] - prepaid, you are charged only by the system resources you use, therefore you can run a VPS for as little as  1 EUR a month if your vps is not resource hungry. Even if you pay  0,50 EUR  month, you still have 3 GB of RAM and 8 cores available to you VPS.&lt;br /&gt;
* [http://www.freecloud.cz FREECLOUD.CZ] - Free OpenVZ VPS Server - own IP, 800Mhz CPU, 512MB RAM, 50Mbits LAN, 10GB HDD, 100GB Traffic - Debian, Ubuntu, Gentoo, Slackware, Fedora, Centos&lt;br /&gt;
* [http://www.hukot.cz Hukot.cz] - OpenVZ VPS Servers starting from 2.92 €, XEON, 1 Gbps uplink, unlimited traffic. Debian, Ubuntu, CentOS, Scientific, SuSe, Fedora, Elastix.&lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [http://www.ultimatehosting.eu UltimateHosting.eu] - OpenVZ VPS Servers starting from $8 with custom configuration - up to 100 GB HDD, 2048 MB RAM, 2 GHz CPU, and unlimited traffic.&lt;br /&gt;
* [http://www.mujhost.net MUJHOST.NET] - OpenVZ VPS Servers starting from 160 Kč, 100Mbps / 1 Gbps uplink, unlimited traffic. Debian, Ubuntu, CentOS ...&lt;br /&gt;
&lt;br /&gt;
== Chile ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.1h.cl/ 1h.cl Vps - Chile] - VPS High Performance with OpenVZ in Chile&lt;br /&gt;
* [http://www.1hosting.cl/ 1hosting Virtual servers - Chile] - VPS Professional with OpenVZ&lt;br /&gt;
* [http://www.dch.cl/ DCH] - DCH.cl Hosting Chile - High Performance VPS Servers with OpenVZ &lt;br /&gt;
* [http://ecohosting.cl/ EcoHosting.cl Santiago - Chile] - VPS with OpenVZ in Chile&lt;br /&gt;
* [http://www.hostingplus.cl/ HostingPlus Internet Limitada] - High Performance Vps provider in Chile&lt;br /&gt;
* [https://www.hostname.cl/ Hostname Ltda] - VPS Hosting with Datacenter in Chile&lt;br /&gt;
* [https://www.inc.cl/ INC Internet Limitada] - VPS Hosting provider in Chile&lt;br /&gt;
* [https://www.dominioweb.net/ Dominioweb.net] - Web Hosting Premium and register domain&lt;br /&gt;
* [https://www.host.cl/ Host SPA] - Wordpress Hosting Profesional&lt;br /&gt;
&lt;br /&gt;
== Denmark ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.vpsfast.us/denmark-cloud-server VPSFast] - VPS Provider with good prices in Denmark.&lt;br /&gt;
&lt;br /&gt;
== Ecuador ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.dedi.space/ DediSpace Telecom] - VPS Servers in Ecuador - USA, France, Germany, Ecuador Datacenter.&lt;br /&gt;
&lt;br /&gt;
== France ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.BargainVPS.co.uk/ BargainVPS] - UK / US / EU Instant setup VPS - We have some great Linux &amp;amp; Windows Bargain VPS packages on offer for you here all available Fully Managed.&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in France from 1.88EUR/month.&lt;br /&gt;
* [http://www.fixweb.com Fixweb] Great managed hosting provider with strong anti ddos solution - openvz only - leader in managed openvz solution with horizontal scaling and high availability&lt;br /&gt;
* [http://www.Freaksol.com/ FreaKs VPS Hosting] Self reliant hosted on independent networks &amp;amp; DC low ping,No restrictions on file types,Unlimited resources,high ram servers &lt;br /&gt;
* [https://galaxyhostplus.com/ovz GalaxyHostPlus] Cheap VPS Hosting based in Roubaix with new 2016 line starts from $2/Month &lt;br /&gt;
* [http://www.harmony-hosting.com Harmony-Hosting] A high performance VPS hosting - The leader in France&lt;br /&gt;
* [https://www.delimiter.com/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [http://www.lws.fr/serveur_dedie_linux.php LWS - Linux VPS ] - Linux VPS Hosting - Only 9.99€/month, Affordable and Secure OpenVZ VPS Servers with 99.99% up-time, web hosting control panel Included. French datacenter&lt;br /&gt;
* [http://www.ovh.co.uk/vps/ OVH VPS] linux from 3€/month, [http://www.ovh.co.uk/vps/vps-cloud.xml windows] from 12€/month.&lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [https://VPSZ.FR VPSZ] VPS Hosting in France. Starting from 2,99€, Unlimited traffic.&lt;br /&gt;
* [http://www.1euro-hosting.eu BEST EU VPS - 1€ Hosting] - Providing reliable and secure OpenVZ VPS Servers with 99.99% up-time, starting from 8€&lt;br /&gt;
* [https://www.shape.host/linux-vps/ Shape Host - Linux VPS] - OpenVZ virtual servers, Instant Linux VPS&lt;br /&gt;
* [https://www.host-stage.net/linux-vps/ HostStage - Linux VPS] - Simple, Reliable OpenVZ VPS packed with 1 GBPS port speed, RAID 10 SSD, Intel Xeon CPU from $4.95/month&lt;br /&gt;
* [https://www.yoorshop.fr/ YOORshop SAS] - High performance SSD Linux VPS within 13 countries in Europe, daily backup included. Starting from €6,95 /month&lt;br /&gt;
* [https://www.wantete.com/vps-servers.php/ WANTETE] - OpenVZ virtual servers, VPS Hosting in France Starting from  €1,99/month 10% CPU&lt;br /&gt;
&lt;br /&gt;
== Germany ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://afterburst.com Afterburst (Previously FanaticalVPS)]: affordable unmetered, unmanaged VPS servers in Germany.&lt;br /&gt;
* [http://www.b2b-hosting.de/vps/ B2B Hosting]: Professional virtual servers for business applications. Performance and reliability at a fair price. Made with OpenVZ.&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in Germany from 1.88EUR/month.&lt;br /&gt;
* [https://www.delimiter.com/dedicated-servers/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [https://galaxyhostplus.com/ovz GalaxyHostPlus] Cheap VPS Hosting based in Frankfurt with new 2016 line starts from  $2/Month&lt;br /&gt;
* [http://hostmist.com/openvz-vps-germany.html Host Mist]: features budget OpenVZ VPS hosting in Germany.&lt;br /&gt;
* [http://www.host1plus.com/ Host1Plus] Servers based in Frankfurt am Main. Offering reliable OpenVZ based VPS servers in Germany starting from $2.50 per month.&lt;br /&gt;
* [http://www.hostingjuice.com/ HostingJuice] The Superioum VPS and Web Hosting provider, low prices - Premium packages.&lt;br /&gt;
* [http://www.ingate.de/managed-server.html Ingate] offers managed servers with openVZ virtualization. located in germany, great support.&lt;br /&gt;
* [http://linevast.de/angebote/linux-openvz-vserver-mieten.html Linevast] Reliable OpenVZ based VPS with fast support, located in germany&lt;br /&gt;
* [https://cp.myvirtualserver.com/?affid=42 MyVirtualServer]: Cheap VPS (OpenVZ/KVM, 5TB Traffic, 10Gigabit), servers located in Frankfurt (best ping, starting 1.99€) good support (en/de) //New Design!&lt;br /&gt;
* [https://www.nogics.com Nogics Technologies]: Affordable VPS based in Germany. Starts from $5.96/mo.&lt;br /&gt;
* [http://www.plambee.de/vserver.php Plambee.de Webhosting]: Powerfull OpenVZ based VPS servers at low cost with hosting in Germany&lt;br /&gt;
* [http://www.serverbiz.de/vserver Serverbiz] Powerful VPS at very low prices.&lt;br /&gt;
* [http://www.synapseglobal.com/voip_vps.html SynapseGlobal.com] Elastix, Trixbox, PBX in a Flash and Asterisk VPS - OpenVZ based Asterisk VOIP servers located in Munich Germany.&lt;br /&gt;
* [http://www.vStarVPS.com vStarVPS]: Reliable VPS Hosting at lowest prices, with 99.9% uptime, Premium Unmetered Bandwidth and Custom HDD/RAM of your choice. Instant and FREE Setup. RapidLeech Allowed.&lt;br /&gt;
* [http://whynotavps.com WhyNOTaVPS]: Instant activated VPS SERVERS!!&lt;br /&gt;
* [http://squote.de/index.php?ref=1421485383 SQuote]: SQuote VPS Hosting and more. VPS 1 Core, 1.024MB RAM, 512MB RAM SWAP, 50 GB HDD, 1x IPv4. 3,89EUR/month. For the best VPS SQuote.de&lt;br /&gt;
* [http://www.vpsfast.us/germany-vps VPSFast] - VPS Provider with good prices in Germany.&lt;br /&gt;
&lt;br /&gt;
== Guatemala ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.globalnetcafe.com/gnc/menu/hospedaje.htm Global Net Cafe]: Servicios de hospedaje, reseller, vps, colocacion y servidores. Incluyendo OpenVZ.&lt;br /&gt;
&lt;br /&gt;
== Hong Kong ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [https://hostus.us HostUS] features unmanaged and managed OpenVZ VPS in Hong Kong as well as 3 USA locations. Unparalleled connectivity to the Asia Pacific. Enjoy 15% off with coupon VPS15OFF.&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides self-managed OpenVZ based SSD VPS in Hong Kong, located at the Pacnet datacenter. &lt;br /&gt;
* [http://vps.timway.com/linux_vps.html Timway VPS Hosting] - Quality, non-oversold hosting provider focused on being security conscious and offering a positive client experience.   Centos, Debian, Fedora, OpenSuse and Ubuntu Containers are available.&lt;br /&gt;
* [http://www.vpsfast.us/hong-kong-cloud-server VPSFast] - VPS Provider with good prices in Hong Kong.&lt;br /&gt;
&lt;br /&gt;
== Hungary ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://elin.hu/index.php?menu=8&amp;amp;nyelv=hu&amp;amp;cim=Virtualis-szerver Virtual server] OpenVZ server: 2xX5650 Intel Xeon, 32GB RAM, 15.000rpm SAS disks, 100Mbit/s, unlimited bandwith.&lt;br /&gt;
* [https://www.ivirtual.co/vps-hosting/ iVirtual.co ] OpenVZ Master Server: 2x Intel Xeon @ 3.0GHZ, 64 GB ECC Ram, 15k RPM SAS HDD's, 1Gbit/s Network, Unlimited bandwith.&lt;br /&gt;
&lt;br /&gt;
== Iceland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
&lt;br /&gt;
== Ireland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
== India ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://cochinwebhost.in/budget-vps-hosting/ Low Cost VPS Hosting] Fast SSD VPS Server for Hosting Solutions at budget prices with 24x7 Technical Support.&lt;br /&gt;
&lt;br /&gt;
* [http://www.datacorporate.in/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
&lt;br /&gt;
*[http://www.fastwebhost.in/vps-hosting.html fastwebhost VPS Hosting] VPS hosting offered by fastwebhost are powered by ''VPS hosting, virtual server hosting and Linux VPS hosting services''. Fully Managed VPS with control panels.&lt;br /&gt;
&lt;br /&gt;
* [http://www.Freaksol.com/ Freaksol VPS Hosting] Self reliant hosted on independent networks &amp;amp; DC low ping to India,No restrictions on file types,Unlimited resources,high ram servers&lt;br /&gt;
&lt;br /&gt;
* [https://www.geniushost.in Genius Host] Fully managed [https://www.geniushost.in SSD Web Hosting] offered by Genius Host are powered by ''OpenVZ'' With LiteSpeed Web Server &amp;amp; Mariadb.&lt;br /&gt;
&lt;br /&gt;
* [http://www.hioxindia.com/virtual-private-server.php VPS Hosting] Reliable and quality VPS Virtual Private Server Hosting&lt;br /&gt;
&lt;br /&gt;
* [https://www.hostsoch.in/windows-hosting.html HostSoch Windows Hosting] Windows hosting offered by HostSoch are powered by ''Windows 2012, ASP.NET, MVC, IIS, PHP and More''. 99.9% Uptime, 24/7 Dedicated support guaranteed. &lt;br /&gt;
&lt;br /&gt;
* [https://www.miditech.co.in/ MidiTech VPS Hosting] VPS hosting offered by MidiTech are powered by ''VMware, ''. Fully Managed VPS with control panels. &lt;br /&gt;
&lt;br /&gt;
* [http://www.milesweb.com/vps-hosting.php Milesweb VPS Hosting] VPS hosting offered by Milesweb are powered by ''VMware, OpenVZ''. Fully Managed VPS with control panels. &lt;br /&gt;
&lt;br /&gt;
* [https://www.nogics.com/web/vps-hosting/ Nogics Technologies] Instant provisioning of VPS, VPS starts from $5.96/mo. 30+ OS templates.&lt;br /&gt;
&lt;br /&gt;
* [http://overlineindia.net/vpshosting-p-62.html Overline India VPS Hosting] Fully managed cPanel Installed VPS Hosting with 24x7x365 Live Chat Tech support, powered by OpenVZ&lt;br /&gt;
&lt;br /&gt;
* [http://www.prohosterz.com/linux-vps.php ProHosterZ VPS Hosting] Reliable and quality Virtual Dedicated Servers | Virtual Private Servers | XEN VPS | OpenVZ VPS | Virtual Hosting&lt;br /&gt;
&lt;br /&gt;
* [http://pve.proxmox.com/wiki/User:Apmuthu Ap.Muthu] sponsored by [http://www.gnuacademy.org GNUAcademy], [http://www.planettel.com.sg PlaNetTel] and [http://www.sacollege.net S A College] creates OpenVZ Templates for the Open Source Community and provides hosting in datacenters of clients choice or on site.&lt;br /&gt;
&lt;br /&gt;
* [http://www.servers.co.in/vps/vps_hosting.php Server Web Hosting] Offers Fully Managed OpenVZ VPS Web hosting in India/US/UK at affordable and cheap rates with best hardware quality and customer service 24/7/365 days&lt;br /&gt;
&lt;br /&gt;
* [http://vpsbeach.com VpsBeach Managed Hosting] Fully managed cPanel Installed VPS Hosting with 24x7x365 Live Chat Tech support, powered by OpenVZ&lt;br /&gt;
&lt;br /&gt;
* [http://www.vpsfast.us/india-vps VPSFast] - VPS Provider with good prices in India.&lt;br /&gt;
&lt;br /&gt;
* [http://www.vpshostingindia.net/ VPS Hosting India, Fully Managed Server] A Committed Fully Managed VPS Server for Hosting solution in India, Complete Technical Support assistance with commitment of fast, clustered and most supportive DataCenters.&lt;br /&gt;
&lt;br /&gt;
* [http://touchstone.hosting/ Touchstone Solutions Private Limited] High-performance Enterprise VPS Hosting in India. One of the highest performing VPS Servers available with cPanel Installed.&lt;br /&gt;
&lt;br /&gt;
== Iran==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.ehost.ir EHost.ir] - OpenVZ Servers , DUAL XEON Cpus , 12 Gb Ram , 100Mbit Dedicated Connection , SAS HardDisk&lt;br /&gt;
* [http://www.vpsfa.com VPSFa.com] - OpenVZ Servers , DUAL XEON Cpus -  , 24Gb Ram , 1000Mbit Dedicated Connection , SAS HardDisk&lt;br /&gt;
&lt;br /&gt;
== Italy ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
* [http://www.hosting-italia.net hosting italia] - OpenVZ Servers and panel enduser Virtualizor Intel® Core™ i7-920 Quad-Core 48 GB DDR3 RAM - Guaranteed Bandwidth 200 Mbit/s&lt;br /&gt;
* [http://www.vpsfast.us/italy-vps VPSFast] - VPS Provider with good prices in Italy.&lt;br /&gt;
&lt;br /&gt;
== Liechtenstein ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
&lt;br /&gt;
== Lithuania ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.cloudlix.com/ CloudLix.com] - Managed and unmanaged OpenVZ virtual servers based on 2.6.32 kernel. Up to 20GHz (Intel SandyBridge) CPU and 10GB RAM. Located in Vilnius and Siauliai.&lt;br /&gt;
* [http://www.databank.lt/ databank.lt] - high-quality professional OpenVZ hosting with cloud computing solutions.&lt;br /&gt;
* [https://www.lavavps.lt/ lavavps.lt] - Professional high-quality OpenVZ containers (VPS servers) affordable for everyone. Powerful control panel for VPS management.&lt;br /&gt;
* [http://www.serveriai.lt/ Serveriai.lt] - Affordable OpenVZ containers on quality HP hardware. Wide choice of virtual dedicated servers up to 8 CPU cores and 8 GB RAM. Full management available. Located in Vilnius.&lt;br /&gt;
* [https://billing.time4vps.eu/?affid=1359 Time4VPS.EU] - Powerful cloud technology based infrastructure will let you build custom virtual machine and pay only for what you really need. Located in Vilnius city.(0.99€/month(2Yr) 512mbRAM, 1TB Traffic// 4.5€/month(2Yr) StorageVps, 1TB, 10TB Traffic)&lt;br /&gt;
* [https://www.vpsnet.lt/en/ VPSnet.lt] - Powerful and high quality servers for a competitive price in Lithuania (Eastern Europe).&lt;br /&gt;
* [http://www.vpsfast.us/lithuania-vps VPSFast] - VPS Provider with good prices in Lithuania.&lt;br /&gt;
&lt;br /&gt;
== Latvia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.altnet.lv/ Altnet] - Hosting and colocation services. Any flawor, you name it. &lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
&lt;br /&gt;
* [http://www.vpsfast.us/latvia-vps VPSFast] - VPS Provider with good prices in Latvia.&lt;br /&gt;
&lt;br /&gt;
== Luxembourg ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.vpsfast.us/luxembourg-vps VPSFast] - VPS Provider with good prices in Luxembourg.&lt;br /&gt;
&lt;br /&gt;
== Malaysia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.cubiex.com/ Cubiex] - Malaysia Affordable Web Hosting and Domain Name. Affordable Linux VPS Hosting in Malaysia. OpenVZ based, Quad Core Xeon node. cPanel/WHM and DirectAdmin also available.&lt;br /&gt;
* [https://controlvm.com ControlVM] ControlVM Technology offering OpenVZ VPS in Singapore, Malaysia, USA and Germany.&lt;br /&gt;
&lt;br /&gt;
== Malta ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.a6it.com/ A6iT] - Stable, quality managed OpenVZ VPSs based in Malta.  Redundant network.&lt;br /&gt;
&lt;br /&gt;
== Morocco ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.belsemtech.com/ BelsemTech.CoM] BelsemTech SARL offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from 300 DH. Virtual Private Server (VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://www.hostoweb.com/ HosToWeb] is the only company providing VPS hosting in Morocco Data Center.&lt;br /&gt;
* [http://www.adk-media.com/ ADK Media] provides affordable managed and unmanaged virtual servers based on OpenVZ, Xen Paravirtualization and Xen HVM platforms. 24/7 Technical Support. Distros: Centos, Fedora, Debian, Ubuntu and more.&lt;br /&gt;
* [http://www.naja7host.com/ Naja7Host.CoM] The Naja7host SARL provides affordable VPS hosting using the OpenVZ platform. Running on Full Quality Nodes of up to 8 CPU and 16 GB RAM. . All VPS's come with Real 24/7/365  Technical Support and cPanel free (if option selected  ). Multiple choice of OS 32/64Bits (Centos, fedora, ubuntu, debian .ect ...)&lt;br /&gt;
* [http://www.lehoster.com/ Le Hoster] offers affordable Virtual Private Servers using the OpenVZ and KVM platform. Backed with our amazing customer support.&lt;br /&gt;
* [https://www.wantete.com/vps-servers.php/- WANTETE] - OpenVZ virtual servers, VPS Hosting in France Starting from  €1,99/month 10% CPU&lt;br /&gt;
&lt;br /&gt;
== Netherlands ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.avanpad.com/ Avanpad] offers OpenVZ VPS hosting with 24\7 online support. Customer can request different control panels or templates for installation on his VPS.&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in Netherlands from 1.88EUR/month.&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
* [http://www.Freaksol.com/ FreaKs VPS Hosting] Self reliant hosted on independent networks &amp;amp; DC low ping around the world,No restrictions on file types,Unlimited resources,high ram servers&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [http://www.HostSailor.com/ HostSailor] Number 1 Netherlands Provider HostSailor provides affordable &amp;amp; high quality services such as VPS (XEN, OpenVZ and KVM) Linux or Windows, Dedicated servers, SSL certificates and domain name services.&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides self-managed OpenVZ SSD VPS in Telecity AMS 5, one of the best datacenters located in the Amsterdam area.&lt;br /&gt;
* [https://iniz.com/ INIZ VPS Hosting] INIZ provides affordable VPS Hosting in Amsterdam, Netherlands with high resources at low prices.&lt;br /&gt;
* [https://www.liteserver.nl/ LiteServer] Looking for a quality and affordable VPS in the center of The Netherlands? We provide SSD, Storage and High Bandwidth VPSes, starting at only €16 per year. We operate AS60404.&lt;br /&gt;
* [https://www.mangelot-hosting.nl/ Mangelot Hosting] Mangelot Hosting, A webhosting company located in the Netherlands, offers budget OpenVZ hosting solutions for maximum scalability en performance.&lt;br /&gt;
* [http://www.osbox.nl OsBoX Dutch Network Engineering] Cheap VPS host as low as $1 per month. Very great uptime and a overall good support. Check the website for the server plans.&lt;br /&gt;
* [http://www.signet.nl/ Signet VPS Hosting] - Signet delivers VPS hosting plans based on CentOS or Debian templates, including control-panel Virtualmin.&lt;br /&gt;
* [http://simple-webhosting.eu/ Simple-webhosting.eu] - OpenVZ based web hosting starting from €0.98 per month.&lt;br /&gt;
* [https://www.seedvps.com SeedVPS] Provides Powerful &amp;amp; Reliable OVZ/KVM VPS Hosting in The Netherlands&lt;br /&gt;
* [http://www.touchvps.com/ TouchVPS] is a company who offer Support and Managed Services for OpenVZ Servers ,also offer templates for openvz ready to go with cPanel , DirectAdmin , Plesk , Games, IRC Services, Desktop and many more.&lt;br /&gt;
* [http://www.voipcomplete.com/product-overview/dedicated-vps.html VOIPcomplete] offers dedicated VPS plans based on CentOS including a VPS management interface.&lt;br /&gt;
* [https://www.waveride.at/ Waveride] Waveride, an EDIS company, offers budget full gigabit OpenVZ + solusVM VPS in Austria, USA and the Netherlands&lt;br /&gt;
* [https://www.totallyhosted.nl/ TotallyHosted] OpenVZ based Premium VPS services located in the Netherlands @ Serverius DC.&lt;br /&gt;
* [https://www.wantete.com/vps-servers.php/- WANTETE] - OpenVZ virtual servers, VPS Hosting in France Starting from  €1,99/month 10% CPU&lt;br /&gt;
* [http://www.vpsfast.us/netherlands-vps VPSFast] - VPS Provider with good prices in Netherlands.&lt;br /&gt;
&lt;br /&gt;
== Norway ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.vpsfast.us/norway-vps VPSFast] - VPS Provider with good prices in Norway.&lt;br /&gt;
&lt;br /&gt;
== Philippines ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.web.com.ph/vps.php Web.com.ph] - provides OpenVZ virtual servers in the Philippines.&lt;br /&gt;
&lt;br /&gt;
== Perú ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.hn.pe/ Hostname] Hostname offers business OpenVZ containers in Perú&lt;br /&gt;
* [https://www.inchosting.pe/ HostingINC SAC] OpenVZ virtualization solutions for business in Perú.&lt;br /&gt;
* [http://www.hostingplus.pe/ HostingPlus Internet Limitada] - High Performance Vps provider in Peru&lt;br /&gt;
* [http://www.hostingandino.pe/ Hostingandino Lima - Peru] - VPS with OpenVZ in Peru&lt;br /&gt;
* [https://www.mejorhosting.pe/ Mejor Hosting Perú] Hosting comparison for peruvian hosting providers.&lt;br /&gt;
&lt;br /&gt;
== Poland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://hosteam.pl/ HosTeam] offers OpenVZ VPS hosting from their DataCenter in Poland. Customer has choice of all major Linux distros (WARNING!!! restoring your backup is VERY expensive and they charge even if it wasn't restored correctly!), NATIVE IPV6 AVAILABLE!&lt;br /&gt;
&lt;br /&gt;
* [http://ultimahost.pl/ UltimaHost] high grade OpenVZ VPS and FreeBSD jail (DC in Łódź, Poland), brand of statnet.pl, SSD available for more expensive packets, NO IPV6 AVAILABLE (but they can load you tun module)&lt;br /&gt;
&lt;br /&gt;
* [http://budgetvps.pl/ BudgetVPS] very cheap, low end grade OpenVZ VPSes (DC in Gdańsk, Poland), brand of hitme.net.pl&lt;br /&gt;
&lt;br /&gt;
* [http://hitme.net.pl/ HitMe] high grade OpenVZ/Xen PV/Xen HVM VPSes (DC in Gdańsk, Poland), NATIVE IPV6 AVAILABLE (/64 on demand for free)!&lt;br /&gt;
&lt;br /&gt;
* [http://www.kr-cpd.pl/oferta/serwery-vps/ KR-CPD] Cracow's Center of Data Processing (DC of course in Cracow, Poland)&lt;br /&gt;
&lt;br /&gt;
* [http://livenet.pl Livenet] cheap, middle/low end OpenVZ VPSes (DC in Łódź, Poland)&lt;br /&gt;
&lt;br /&gt;
* [http://slaskdatacenter.pl/ Śląsk Data Center] high/middle grade OpenVZ VPSes (DC in Silesia province, Poland), SSD available for more expensive packets&lt;br /&gt;
&lt;br /&gt;
* [https://www.ionic.pl/ IONIC.pl] VPS OpenVZ with SolusVM control panel, own DC in Cracow&lt;br /&gt;
&lt;br /&gt;
== Portugal ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.ptservidor.pt/ PTServidor] - OpenVZ virtual servers with free management based in Portugal.&lt;br /&gt;
* [http://www.efeito.net/ Weblevel.pt] - OpenVZ virtual servers based in Portugal.&lt;br /&gt;
* [https://www.webtuga.pt/ WebTuga] - Managed/Unmanaged Virtual Private Servers hosted in a Portuguese Datacenter with lots of extras&lt;br /&gt;
* [https://www.cloudfire.pt/ CloudFire] - OpenVZ VPS at very low prices hosted in Portugal&lt;br /&gt;
* [https://www.linxisp.com/ LINXISP] - High Availability &amp;amp; Performance OpenVZ Containers&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] - Build an OpenVZ VPS in 14 locations WordWide From £2.49&lt;br /&gt;
&lt;br /&gt;
== Romania ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.intovps.com IntoVPS] - offers unmanaged OpenVZ virtual servers based in Romania, Netherlands and USA. A lot of resources for decent prices.&lt;br /&gt;
* [http://www.ename.ro/dedicated.html eName] - managed OpenVZ virtual servers in Bucharest, Romania&lt;br /&gt;
* [http://www.ch-center.com/virtual-servers Ch-center] - unmanaged OpenVZ virtual servers, based in Romania in it's own Data Center&lt;br /&gt;
* [http://www.clouds.ro/servere-virtuale/ Clouds] - OpenVZ virtual servers hosted on premium hardware, in Romania&lt;br /&gt;
* [http://www.HostSailor.com/ HostSailor] HostSailor provides affordable &amp;amp; high quality OpenVZ and KVM servers in Romania&lt;br /&gt;
* [https://www.shape.host/linux-vps/ Linux VPS] - OpenVZ virtual servers, Instant Linux VPS&lt;br /&gt;
&lt;br /&gt;
== Russia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.ihc.ru/vps.html IHC.RU] - VPS hosting in Moscow, Russia starting at $10/month with good set of precreated templates&lt;br /&gt;
* [http://mchost.ru/services/linux-vps/ McHost.ru] - Linux VDS Hosting from McHost.&lt;br /&gt;
* [http://hosting.agava.ru/vps/ AGAVA] - Linux VPS hosting based on OpenVZ.&lt;br /&gt;
* [http://vdsplanet.ru/ VDSPlanet.ru] - unmanaged VDS/VPS hosting starting at 3.99$ a month. Large variety of OS templates and free ISPmanager Lite control panel. Total automation is our goal.&lt;br /&gt;
* [http://www.demos.ru/service/datacenter/vps.html Demos-Internet] - we offer OpenVZ Virtual Private Server based on Linux.  All VPS come with ISPmanager control panel.&lt;br /&gt;
* [http://www.net.ru/service/net9/ www.net.ru] - OpenVZ virtual private servers.&lt;br /&gt;
* [http://www.eurobyte.ru/ Eurobyte.ru] - Linux VDS Hosting from Eurobyte.&lt;br /&gt;
* [http://www.telekom.ru/service/vps.html Elvis Telekom] - OpenVZ hosting with base and cpanel templates from Elvis Telekom.&lt;br /&gt;
* [http://fastvps.ru/vds/ FastVPS] - OpenVZ hosting, ISPmanager, Hetzner, MayFlower.&lt;br /&gt;
* [https://lepus.su/vps.html Lepus] - OpenVZ hosting, SSD, ISPmanager free, Hetzner.&lt;br /&gt;
* [http://www.hts.ru/vds/ HTS] - OpenVZ hosting, ISPmanager, Linux VPS hosting based on OpenVZ in Moscow.&lt;br /&gt;
* [https://selectel.ru/services/vds/ Selectel] - OpenVZ hosting.&lt;br /&gt;
* [https://galaxydata.ru/root-server/ GalaxyData] - Virtuozzo Containers in Cloud Storage.&lt;br /&gt;
* [http://hosterbox.ru/servers/ Hosterbox.ru] - Managed VPS hosting. Based on OpenVZ + SolusVM + ISPmanager.&lt;br /&gt;
&lt;br /&gt;
== Singapore ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://conceptlane.com/?t=hostingservices#ratesvps ConceptLane Pte Ltd] - OpenVZ VPS on dual octa-core AMD Opterons running Debian Wheezy 7, custom control panel with bandwidth graphs, reboot/reinit and web-based VNC access.&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [http://www.qoxy.com/vps QOXY.com] Affordable and Reliable OpenVZ VPS Hosting in a Singapore Data Center.&lt;br /&gt;
* [http://www.secureax.com/ SecureAX Pte Ltd] - Singapore Premium Internet Solution Provider&lt;br /&gt;
* [http://www.planettel.com.sg PlaNetTel] - Affordable and customised OpenVZ containers across 3 data centers - contact Thomas Festus at +65-66936881. [http://pve.proxmox.com/wiki/User:Apmuthu#Squeeze_based_Templates Sponsors OpenVZ Container Template]s for the Open Source community.&lt;br /&gt;
* [http://www.vpsfast.us/singapore-vps VPSFast] - VPS Provider with good prices in Singapore.&lt;br /&gt;
&lt;br /&gt;
== Serbia ==&lt;br /&gt;
* [https://www.skyhosting.rs/en/vps-servers SkyHosting] - Fast Linux OpenVZ VPS SSD Hosting with SolusVM control panel.&lt;br /&gt;
* [https://www.ninet.rs/en/vps-servers NiNet Company] - Linux OpenVZ VPS servers. Well known VPS hosting company from Serbia with their own data center&lt;br /&gt;
* [http://www.suonline.net SuOnline.Net ISP] - Linux OpenVZ VPS servers, Docker enabled !!!&lt;br /&gt;
&lt;br /&gt;
== South Africa ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.host1plus.com/ Host1Plus] - Local South African servers hosted in Johannesburg. OpenVZ VPS servers starting from $3.00 per month.&lt;br /&gt;
* [http://www.vps.co.za/ VPS.CO.ZA] - South Africa's oldest VPS provider. Local South African servers with SolusVM control panel. OpenVZ, Xen and OnApp Cloud.&lt;br /&gt;
* [http://247hosting.co.za/vpshosting.php 247Hosting] - OpenVZ virtual servers locally in South Africa with SolusVM control panel. cPanel option available!&lt;br /&gt;
* [http://www.SoftDux.co.za/ SoftDux] - OpenVZ virtual servers based America &amp;amp; South Africa. All VPS's come with cPanel or Plesk control panels. XEN VPS's also available.&lt;br /&gt;
* [http://www.clickworks.co.za/ Clickworks] - OpenVZ / Xen VPS servers hosted in RSA. Backed by Solusvm control panel.&lt;br /&gt;
* [http://www.elitehost.co.za/ Elite Host] - OpenVZ virtual servers based in America &amp;amp; South Africa. All VPS's come with cPanel and unlimited bandwidth.&lt;br /&gt;
* [http://www.telasera.com/ Telasera] - OpenVZ VPS servers hosted in South Africa. Supermicro Servers powered by Intel Xeon with 24/7 Support.&lt;br /&gt;
&lt;br /&gt;
== Spain ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.actiu.net/pro/ Actiu informatica]&lt;br /&gt;
* [http://www.corpresa.com/servidores-virtuales.html Corpresa Hosting] - Tiene algún proyecto entre manos y un plan de hosting no le hes sufuciente y un servidor dedicado no está dentro de su presupuesto?, una solución de VPS a medida será la que cubrirá todas sus necesidades.&amp;quot;&lt;br /&gt;
* [https://www.datomedia.es Datomedia] - Cloud alta disponibilidad powered by Virtuozzo 6 y Servidores VPS bajo openvz y kvm.&lt;br /&gt;
* [https://www.evidaliahost.com/vps/ EvidaliaHosting] - Servidores VPS totalmente configurados con panel de gestión Plesk 12.5, garantía de devolución de 30 días y posibilidad de discos SSD.&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
* [https://ginernet.com/vps-ssd.php GINERNET] - Servidores VPS alojados en España desde 1.99€/mes.&lt;br /&gt;
&lt;br /&gt;
== Sweden ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.admax.se/vps/ Admax] - Admax offers enterprise grade virtual servers with great pricing. Custom control panel, API, remote access &amp;amp; more.&lt;br /&gt;
* [https://www.acon.se/vps Acon VPS Server] - VPS Server and Dedicated server provider in Sweden.&lt;br /&gt;
* [https://www.glesys.com/vps.php GleSYS] - VPS Provider with a great control panel and good prices&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides the highest quality SSD VPS in Stockholm, Sweden. Based on completely pure SSD in RAID-10 and delivering extremely high network &amp;amp; hardware performance along with reliability.&lt;br /&gt;
* [https://www.nametyper.com NameTyper] - VPS and Shared hosting provider. Customize your own OpenVZ Container with 1-12 cores running on SSD and ECC RAM. &lt;br /&gt;
* [https://virtualcenter.se VirtualCenter] - The first Cloud provider with SSD VPS in Sweden. Offer enterprise class hardware and network infrastructure&lt;br /&gt;
* [http://www.vpsfast.us/sweden-vps VPSFast] - VPS Provider with good prices in Sweden.&lt;br /&gt;
&lt;br /&gt;
== Switzerland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
* [http://www.vpsfast.us/switzerland-vps VPSFast] - VPS Provider with good prices in Switzerland.&lt;br /&gt;
&lt;br /&gt;
== Tanzania==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.aptus.co.tz/ Aptus Solutions] - OpenVZ / SolusVM VPS Servers located in Dar es Salaam - 100meg to TIX. CentOS &amp;amp; Ubuntu.&lt;br /&gt;
&lt;br /&gt;
== UK ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.34sp.com/ 34SP.com] - We're a UK based web hosting company, bridging the gap between sophisticated hosting solutions &amp;amp; affordable prices&lt;br /&gt;
* [http://www.AceShells.com/ AceShells] - Fast, stable, high quality UK based virtual private servers from just £5 a month, operating since 2001&lt;br /&gt;
* [http://www.AtlanticServers.com/ Atlantic Servers] - Affordable VPS, stable, high quality VPS, UK based Data Centre&lt;br /&gt;
* [https://awebhosting.uk/ AWebHosting.uk] VPS hosting offered by [https://awebsolutions.uk/ AWEBSOLUTIONS LIMITED] reliable UK hosting provider located in London, UK and Hosted in UK DataCentre.&lt;br /&gt;
* [http://www.BargainVPS.co.uk/ BargainVPS] - UK / US / EU Instant setup VPS - We have some great Linux &amp;amp; Windows Bargain VPS packages on offer for you here all available Fully Managed.&lt;br /&gt;
* [http://www.cheapvps.co.uk/ CheapVPS] - CheapVPS provide cheap, UK based OpenVZ VPS servers. Hosted on high end hardware, in a top UK datacenter backed up with 24/7/365 support. Choice from a wide range of Linux distros. OpenVZ VPS managed with SolusVM.&lt;br /&gt;
* [http://www.chilliserver.com/ Chilliserver] - Affordable plans starting from just £3.99, not oversold. RHEL6 Kernel with VSwap, TUN/TAP/FUSE and ACL support enabled. SolusVM control panel with custom snapshot system and rescue system. Based in a European data Centre with UK based support.&lt;br /&gt;
* [http://www.cislondon.co.uk/virtual-private-servers/ Commercial Internet Solutions] - CIS provides premium hosting at competitive rates, focused on Small Businesses within the M25 orbital. Hosting is on Dual Quad core Intel Xeon supermicro servers in Tier 4 datacenters around London.&lt;br /&gt;
* [http://www.datacorporate.co.uk/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [http://www.DubHosting.co.uk/ DubHosting] - DubHosting started in 2004 has been providing cost effective hosting to clients world wide. Fully managed OpenVZ servers based in Europe &amp;amp; US are one of their many strong points. They can provide you with a dedicated server and install openvz allowing you to sell your own vps servers. Their servers are located at UKGrid in Manchester with 24/7/365 support&lt;br /&gt;
* [http://www.europhase.net/virtual-private-servers/ Europhase UK Limited, UK VPS] - OpenVZ VPS Hosting, Virtual Dedicated Servers, UK VPS hosted at multiple UK datacentres from £4.99&lt;br /&gt;
* [http://www.farbyte.uk/vps Farbyte UK VPS] - UK based OpenVZ VPS and shared web hosting services&lt;br /&gt;
* [http://www.fdqwholesale.co.uk FDQ Wholesale] - UK based hosting services&lt;br /&gt;
* [http://www.hadrill.org.uk Hadrill Online] - Fully managed hosting with unlimited bandwidth. Quotes available through contact form.&lt;br /&gt;
* [http://www.infrenion.com./uk_vps_hosting.html Infrenion Networks UK] Cheap, economical and reliable web hosting solutions, VPS based on the openVZ platform. You can host any YouTube Clone scripts with free FFMPEG setup on our vps servers. Also offers with a choice of selecting DataCenter.&lt;br /&gt;
* [https://www.laws-hosting.co.uk/vps-hosting.php Laws Web Hosting] - Laws Web Hosting offers OpenVZ VPS Hosting with packages starting from £5.50/m that will cater for anyone. We have OpenVZ VPS hosting solutions, and come with moderate DDoS protection.&lt;br /&gt;
* [http://www.letstalkdigital.com/index.php?option=com_content&amp;amp;view=article&amp;amp;id=73&amp;amp;Itemid=65 LetsTalkDigital VPS Hosting] - LetsTalkDigital.com offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from $14.99. Virtual Private Server(VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://www.minivps.co.uk miniVPS] miniVPS offers VPS hosting solutions with nodes located in UK, utilising openvz/solusvm with future locations of USA and UK. &lt;br /&gt;
* [https://www.first2host.co.uk First2Host Cheap VPS] - Intel Xeon E5-2630v3 OpenVZ VPS Servers. Don't be defined by a pre-made VPS plan. Create your own VPS Plan by assigning the resources that you require. SATA, SSD or NVMe storage 100 MBPS, 250 MBPS, 500 MBPS, 1GBPS speeds and free cPanel licenses.&lt;br /&gt;
* [http://www.phurix.co.uk/ Phurix] - A UK based web solutions company that provides you with reliable hosting at extremely affordable prices, VPS server virtualization using OpenVZ.&lt;br /&gt;
* [http://www.qualityservers.co.uk Quality Servers] - Affordable OpenVZ virtual servers based in the UK and USA. Choice of control panels and management options.&lt;br /&gt;
* [http://www.rshosting.co.uk/vps.html RSHosting UK] - Offering the most secure, reliable, stable and fast UK VPS Web Hosting based on OpenVZ architecture. Our Virtual Dedicated Servers are physically hosted on powerfull Quad Core servers located in multiple UK datacentres.&lt;br /&gt;
* [http://www.sharkserve.rs SharkServers] - Low Cost OpenVZ virtual servers in the UK. Choice of control panels and management options. Own Datacentre.&lt;br /&gt;
* [http://www.vpsmachine.co.uk/ vpsMachine] Quality openvz hosting platform with a large choice of customer OS templates.&lt;br /&gt;
* [https://www.webhost.uk.net/vps-hosting.html WebHostUK LTD] - Offers Cheap yet Best UK VPS Web Hosting working on OpenVZ Platform.We offers fully Managed UK VPS with true 24/7/365 days support.All our Servers are located in UK London DC.&lt;br /&gt;
* [http://www.webhostinguk.com/vps/vps-hosting.html Web Hosting UK] - Fully managed OpenVZ VPS Hosting offered on fast and reliable and affordable servers in UK &amp;amp; European datacenter with 24x7x365 days lightning fast support.&lt;br /&gt;
* [http://www.weycrest.co.uk/vps-hosting.php Weycrest VPS] - Low Cost, Stable OpenVZ and Parallels' Virtuozzo Virtual Private Server solutions. London UK Hosted at Coreix with a choice of operating systems, and root and control panel options.&lt;br /&gt;
* [http://www.xilo.net/virtual_private_servers-vps/ XILO] - UK-based hosting with UK-based support. VPS services offered with a choice of cPanel, Webmin and other useful applications, VoIP, SIP, VPN to name a few.&lt;br /&gt;
* [http://www.zxvps.co.uk/ ZxVPS VPS Hosting] - Quality, non-oversold VPS based on the openVZ platform, using SolusVM management panel, VPS from 128mb - 2gb, cpanel, direct admin, kloxo, etc.&lt;br /&gt;
* [http://www.meteorvps.com/ MeteorVPS] - Professional, Non-Oversold amazing VPS plans pretty cheap using SolusVM management, range from 512MB -&amp;gt; 16GB&lt;br /&gt;
* [http://www.chvps.com/ CHVPS] - Switzerland Based VPS, Cheap Pricing with solusVM control panel.&lt;br /&gt;
* [http://domvps.com/ domVPS] - OpenVZ Virtual Servers in the USA, Germany, France &amp;amp; the Netherlands at a low cost.&lt;br /&gt;
* [http://www.gemvps.net/ GemVPS.NET] - UK (Manchester) Based Company, OpenVZ Virtual Servers in the UK &amp;amp; France on Fast nodes.&lt;br /&gt;
* [http://www.rackburst.net/ Rackburst] - UK SSD VPS Hosting with fast UK-based Live Support available from £1.49 per month.&lt;br /&gt;
* [http://www.vpsfast.us/united-kingdom-vps VPSFast] - VPS Provider with good prices in UK.&lt;br /&gt;
&lt;br /&gt;
== Ukraine ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://ekvia.com/ Ekvia] - VDS/VPS based on OpenVZ. Free trial 14 days. Domain registration for VDS/VPS.&lt;br /&gt;
* [http://www.gelihost.com/ Geliar Hosting Solutions] - Fast virtual dedicated servers based on OpenVZ. Geliar Hosting Solutions offering many control panels and other useful services.&lt;br /&gt;
* [http://www.hostpro.ua/ Hostpro.ua] - Full managed OpenVZ servers.&lt;br /&gt;
* [http://www.vpsfast.us/ukraine-vps VPSFast] - VPS Provider with good prices in Ukraine.&lt;br /&gt;
&lt;br /&gt;
== USA ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.a2hosting.com A2 Hosting] is your high-performance [http://a2hosting.com/openvz-vps-hosting OpenVZ VPS Hosting] provider. Design your perfect [http://a2hosting.com/vps-hosting VPS Hosting] account today! Featuring SwiftServers and SSDs with page load speeds up to 300% faster compared to standard drives.&lt;br /&gt;
* [http://www.afterburst.com Afterburst] (Previously FanaticalVPS): affordable unmetered, unmanaged VPS servers in NY.&lt;br /&gt;
* [https://www.asurahosting.com/ AsuraHosting] offers powerful, reliable, and simple OpenVZ VPS to clients. AsuraHosting has a dedicated support team, and quality hosting; Pricing starts at just $5/month!&lt;br /&gt;
* [http://beyondhosting.net BeyondHosting.net] High Performance OpenVZ Virtual Private Servers (VPS)  Tier 1 US Datacenter.&lt;br /&gt;
* [http://buyvm.net BuyVM.net] DDoS Protection, three datacenter locations, Stallion control panel. Affordable quality VPS hosting since 2010!&lt;br /&gt;
* [https://www.binarycpu.com Binary Computer Solutions] has provided OpenVZ based Virtual Private Server hosting for over 5 years.  Network outages are a thing of the past, and oversold services are never heard of here.  Built on solid technology, with infrastructure to match - Binary Computer Solutions will give you hosting you need, without the cost others ask for.  Starting at $30.00/mo.&lt;br /&gt;
* [http://www.bodhost.com/ Bodhost.com] Fast, Reliable and secure web hosting service with 24*7 free customer service.&lt;br /&gt;
* [http://www.buildyourvps.com/ BuildYourVPS.com] mix ‘n’ match your VPS; choose only the bandwidth, RAM, disk capacity, type of IP connection, level server redundancy, and the support/monitoring you want. [http://www.buildyourvps.com/ BuildYourVPS] is the 1st to offer you a highly-customized VPS solution, without making you pay for unused extra features.&lt;br /&gt;
* [https://www.budgetvm.com/openvz-linux-vps.php BudgetVM.com] Each server includes our industry-leading SLA, DDoS protection, 200Gbps networks and 7 * 24-hour customer support.&lt;br /&gt;
* [http://www.byethost.com Byethost.com] offers OpenVZ based VPS Hosting as its main VPS solution, with the hypervm panel. Centos, Debian, Fedora, OpenSuse and Ubuntu Containers are available.&lt;br /&gt;
* [http://cheaperasp.net CheaperASP.Net] provides Quality web hosting on the OpenVZ platform. You also help you get best options at [http://cheaperasp.net/godaddy-1-hosting-free-domain-promo/ affordable] cost.&lt;br /&gt;
* [http://www.chhost.net/vps.htm CH Hosting VPS Hosting] CH Hosting or chhost.net offers OpenVZ based VPS Hosting. 24/7 Support. Upgrade/Downgrade your plan as needed on-the-fly without the risk of downtime. Since 2006. Non-Oversell&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in USA from 1.88EUR/month.&lt;br /&gt;
* [http://www.cloudshards.com Cloud Shards] High Performance, reliable, stable and affordable OpenVZ Virtual Private Servers (VPS) in data centers across the USA.&lt;br /&gt;
* [https://cloudgearhosting.com CloudGear Hosting] - offers OpenVZ hosting in 4 locations across the USA. Including free DDoS Protection and free SSL with cPanel.&lt;br /&gt;
* [http://www.datacorporate.com/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [https://www.delimiter.com/storage-vps/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [https://www.cheapdomainnamesdot.com Domain Host SSL] provides Reliable web hosting with OpenVZ platform Since 2003, Located New York city, Atlanta, Los Angeles. &lt;br /&gt;
* [http://www.DubHosting.com/ DubHosting] - DubHosting started in 2004 has been providing cost effective hosting to clients world wide. Fully managed OpenVZ servers based in Europe &amp;amp; US are one of their many strong points. They can provide you with a dedicated server and install openvz allowing you to sell your own vps servers.&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
* [http://www.evolucix.com/ Evolucix.com] Evolucix offers state of the art, professional, and reliable OpenVZ VPS solutions on top-notch hardware while providing quality support.&lt;br /&gt;
* [http://www.evolvedservers.com Evolvedservers.com] Openvz based vps servers. Hosted in Michigan, USA. 24/7 Support. Hosted in tier-3 and tier-4 datacenter's with multiple redundancies.&lt;br /&gt;
* [http://fastwebhost.com/vps-hosting.html Fastwebhost]: affordable cloud VPS servers using OpenVZ. &lt;br /&gt;
* [http://www.fliphost.net Fliphost.net]: Powerful, affordable instant setup VPS systems. Servers based in Phoenix Az with another location coming soon.&lt;br /&gt;
* [http://www.frontrangehosting.com Front Range Hosting]: SSD Cached KVM &amp;amp; OpenVZ VPS Hosting Prices Start at 2.00/mo, located in Colorado Springs, Colorado.&lt;br /&gt;
* [http://glesys.se GleSYS] is a hosting company specialized in serverhosting. Also offering VPS hosting mainly based on OpenVZ. GleSYS has provided access to server and Cisco hardware for developers from OpenVZ to find problem with VLAN implementation.&lt;br /&gt;
* [http://goodealhosting.com/ GOODEALHOSTING.com] Quality Hosting Solutions! Provides affordable unmanaged/managed VPS based on OpenVZ! start from $10.00, real 24/7 support.&lt;br /&gt;
* [http://gothost.net GotHost.net] Providing OpenVZ based VPS Hosting with SolusVM. All nodes are Quad Core Xeon with RAID-10 for speed and redundancy. Budget plans starting at $7.99.&lt;br /&gt;
* [http://www.greengeeks.com/ GreenGeeks Hosting] VPS Hosting. Dual Intel Xeon 64-Bit CPU's, DDR3 RAM, RAID-10 SSD Storage Arrays. 24/7 Support. cPanel/WHM + more!&lt;br /&gt;
* [http://hostarmor.com HostArmor™] - is best known for low-cost and reliable shared hosting and dedicated servers. Recently the company expanded to offer OpenVZ virtual server plans at 8 worldwide locations, five in the U.S., one in Germany, one in France, and one in the Netherlands. VPS plans start at $13.99/month.&lt;br /&gt;
* [http://www.host4geeks.com Host4Geeks] - Host4Geeks is a premium Fully Managed VPS provider with datacenters across 2 locations in US and in UK. All servers offer a free cPanel license.&lt;br /&gt;
* [http://www.host1plus.com Host1Plus] - OpenVZ based virtual servers in Chicago and Los Angeles. VPS plans start at $2.00 per month.&lt;br /&gt;
* [http://www.hostavps.com HostAVPS] - Providing Fully Managed VPS's on both the West &amp;amp; East Coast.&lt;br /&gt;
* [http://www.hostcolor.com Host Color] - OpenVZ based virtual servers hosted in a Tier 4 class data center based out of South Bend, Indiana. Juniper managed, fully-redundant network with uplinks to Level 3, Cogent and Internap.&lt;br /&gt;
* [http://www.hostigation.com Hostigation] - High resource unmanage VPS hosting solutions.&lt;br /&gt;
* [http://www.hostingrails.com Hosting Rails] offers Rails-targeted OpenVZ VPS Hosting and updated Rails-ready OS images.&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [http://www.hostmist.com Host Mist] features budget OpenVZ VPS hosting from four major cities across the US.&lt;br /&gt;
* [http://www.hostrush.com HostRush] Self managed, ssd vps for business and non business. &lt;br /&gt;
* [http://www.dailyhosting.net hostoople] We offer OpenVZ VPS hosting from Dallas Texas, Starting at $29.95/month &lt;br /&gt;
* [https://hostus.us HostUS] provides unmanaged and managed OpenVZ VPS in Atlanta, Dallas and Los Angeles with custom control panel. A large variety of Linux distros are available. Enjoy 15% off with coupon VPS15OFF.&lt;br /&gt;
* [https://www.hostwinds.com Hostwinds] Affordable managed/unmanaged VPS Solutions.&lt;br /&gt;
* [http://hostsia.com Hostsia] With HOSTSIA Web services, you can get an OpenVZ VPS for only $15.00/mo. Each OpenVZ VPS includes multiple free-of-charge bonuses and offers a 99.9% uptime guarantee. You can also use our charge-free Hepsia CP, which is available with each OS – it permits you to host an unmetered number of domains and comprises heaps of handy tools, which will help you better manage your site and your VPS web hosting account.&lt;br /&gt;
* [http://www.infrenion.com./vps_hosting.html Infrenion Networks] Cheap, reliable and secure VPS hosting solutions, based on the openVZ platform. You can host any YouTube Clone scripts with enhanced support quality round the clock.&lt;br /&gt;
* [http://iniz.com/ INIZ VPS Hosting] INIZ provides affordable VPS Hosting in Los Angeles &amp;amp; New York with high resources at low prices.&lt;br /&gt;
* [https://www.interserver.net/ InterServer Web Hosting] Fast &amp;amp; Reliable VPS - 24x7 Support. 99.9% Up-time, Hosting Since 1999!.&lt;br /&gt;
* [http://www.joinvps.com JoinVPS.com] ISPmanager OpenVZ based VPS hosting. 24/7 Technical Support. Free ISPmanager control panel.&lt;br /&gt;
* [http://www.lovevps.com LoveVPS] Budget VPS provider starting at $5.99/month located in the US with Xeon nodes.&lt;br /&gt;
* [http://www.letstalkdigital.com/index.php?option=com_content&amp;amp;view=article&amp;amp;id=73&amp;amp;Itemid=65 LetsTalkDigital VPS Hosting] LetsTalkDigital.com offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from $14.99 Virtual Private Server(VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://lylix.net LYLIX] offers affordable VPS hosting with a choice of eight different Linux distributions, dedicated VPS hosting, and specializes in Asterisk/VOIP based hosting including Trixbox, AsteriskNow, Elastix, and PBX-in-a-Flash.  Popular choice for unmanaged IP-PBX services; entire infrastructure built on a High-availability (HA) network across three regional NOCs.&lt;br /&gt;
* [http://www.micfo.com Micfo.com] offers VPS hosting services for both Linux VPS hosting and Window VPS hosting on affordable price combined with world-class 24x7x365 support.&lt;br /&gt;
* [http://www.neostreams.info/neoshop/cart.php?gid=9 nEo Stream Services] Offer's Top Quality OpenVZ Servers, Starting at $18.95 per month! SolusVM Control panel , 7 day Money Back Guarantee , 24x7 Professional Support.&lt;br /&gt;
* [http://pogiweb.com/vps/ PogiWeb LLC] Instant and free setup. Includes SolusVM control panel and free level 1 support during first month.&lt;br /&gt;
* [http://www.theserverexperts.com TheServerExperts.com] TheServerExperts VPS line is the ideal solution for clients who require the control of a dedicated server matched with the affordability and simplicity of a traditional shared hosting account.&lt;br /&gt;
* [http://thenynoc.com New York NOC] affordable Linux VPS hosting out of New York and Chicago. Plans as low as $5 a month and are backed by a redundant infrastructure and 24/7 support.&lt;br /&gt;
* [http://railsplayground.com RailsPlayground.com] Ruby on Rails VPS with ready to go Rails images with the LxAdmin control panel&lt;br /&gt;
* [http://www.raidlogic.net RaidLogic.NET] RaidLogic.NET offers OpenVZ based Linux VPS out of multiple facilities across the United States, including Miami, Los Angeles, and Chicago. Starting as low as $3.95/month.&lt;br /&gt;
* [http://www.ramhost.us RAM Host] RAM Host offers OpenVZ based Linux VPS out of multiple facilities across the United States, including Atlanta, Kansas City, and Phoenix.&lt;br /&gt;
* [http://www.reconhosting.com Recon Hosting] Recon Hosting offers affordable OpenVZ VPS solutions where you get Quality Hosting at a Fraction of the price. Instant setup with the latest Operating System templates including cPanel.&lt;br /&gt;
* [http://www.rokabear.com Rokabear] Rokabear offers OpenVZ Linux VPS, Dedicated Server, and Colocation. All Hardware setup in High Availability mode including raided drives and redudnant power and network connections. With multiple upstream providers, Rokabear's connectivity is fast and reliable! Rokabear supports LAMP, Openvpn, and Asterisk configurations. VPSes start at $7.99!&lt;br /&gt;
* [https://www.rosehosting.com RoseHosting] offers OpenVZ Linux virtual servers equipped with Enterprise Grade SSD drives. All hosting plans are fully-managed with FREE 24/7 support, FREE website migration, FREE weekly backups and FREE server monitoring included.&lt;br /&gt;
* [http://www.rshosting.com/vps.html RSHosting.com] RSHosting offers the most secure, reliable and stable VPS - Virtual Private Servers based on OpenVZ architecture, powered by the most professional and qualified 24/7 lightening fast support.&lt;br /&gt;
* [http://www.servercomplete.com Server Complete, LLC] Server Complete offers OpenVZ based Linux VPS out of multiple facilities across the United States, including Atlanta, Dallas, and Chicago.&lt;br /&gt;
* [http://www.servergrove.com ServerGrove] uses OpenVZ as the main virtualization platform for its state of the art VPS hosting services.&lt;br /&gt;
* [http://serverswarm.com ServerSwarm] provides stable, affordable, high performance OpenVZ virtual private servers.&lt;br /&gt;
* [http://Sharktech.net Sharktech] provides custom OpenVZ solutions DDOS-protected up to 100Gbps.&lt;br /&gt;
* [http://www.silverrack.com/ SilverRack VPS Hosting] - SilverRack provides affordable VPS hosting using the OpenVZ platform.&lt;br /&gt;
* [http://www.soficol.com/ Soficol] Offers Enterprise OpenVZ based VPS, hosted on a clustered infrastructure and redundant network. Easy to use user management and instant setup.&lt;br /&gt;
* [http://www.spectrohost.com/ Spectro Host] - Offers performance VPS Servers running openvz. Always the most resources and never over committing OpenVZ nodes.&lt;br /&gt;
* [http://www.budgetvds.com/ BudgetVDS] - Offers VPS Servers running openvz we've been in business for 2 years now using openvz platform.&lt;br /&gt;
* [http://www.syera.net/ Syera Networks] Unmetered VPS From $18.88/M, 24/7 Support, OpenVZ/HyperVM, Instant Setup!, Free 1Gbps Upgrade with Coupon: syera1G&lt;br /&gt;
* [http://www.synapseglobal.com/voip_vps.html SynapseGlobal.com] Elastix, Trixbox, PBX in a Flash and Asterisk VPS - OpenVZ based Asterisk VOIP servers with 14 Tier 1 premium bandwidth providers.&lt;br /&gt;
* [http://www.tektonic.net TekTonic] provides VPS hosting services using both Virtuozzo and OpenVZ technology.&lt;br /&gt;
* [http://www.tigerservers.com/ TigerServers] - Provides affordable managed VPS based on OpenVZ. Servers located in Chicago, Illinois&lt;br /&gt;
* [http://www.tocici.com/ TOCICI VPS Hosting Services] Since 1995 TOCICI has offered web hosting services, with 24/7 support commitments and a strong non-oversell policy. Our purpose-built hosting infrastructure has serviced many organizations for over a decade. Offering OpenVZ VPS, data center colocation, and equipment leasing options, visit our website for prices and more details.&lt;br /&gt;
* [http://www.ultravps.com UltraVPS] UltraVPS offers managed and unmanaged OpenVZ-based VPS hosting utilizing dual CPU hardware nodes with redundant, high-performance RAID-10 storage.  UltraVPS offers VPS servers with many popular control panel options and turn-key applications.&lt;br /&gt;
* [http://www.vpsfx.com VPSFX] VPSFX.com offers OpenVZ VPS, data center colocation, and dedicated servers.&lt;br /&gt;
* [http://www.Webhost.US.Com/linuxvps.html US Web Hosting]  Webhost.US.Com offers powerful GUI based VPS management system with full OpenVZ, Xen Paravirtualization and Xen HVM support.All our Virtual Private servers are fully Managed with 99.9% uptime and 24/7 top notch support.&lt;br /&gt;
* [http://unixservice.com Unixservice/unxsVZ] Low cost OpenVZ ONLY hosting we specialize in Mail, DNS and RADIUS multiple container hosting. At the world famous Market St. San Jose, CA Silicon Valley datacenter. Ping times from your containers to local yahoo and google sites guaranteed single digit ms times. Your containers are backed up at 4 local and 2 remote locations. Contact supportgrp at unixservice dot com.&lt;br /&gt;
* [http://www.vogenic.xyz Vogenic: Cloud Services] If you are searching for an upgrade to the shared hosting service, then you should consider our OpenVZ or KVM VPS hosting services.&lt;br /&gt;
* [http://vpslink.com VPSLink.com] provides virtual private server hosting on the OpenVZ platform.&lt;br /&gt;
* [http://www.vpsspeed.com/ VPSSpeed] - VPSSpeed provides unmanaged OpenVZ based VPS hosting with over 50 OS Templates, real 24/7/365 support and fast US servers. No overselling.&lt;br /&gt;
* [http://vpsnoc.com VPSNOC] offers unmanaged vps hosting based in the USA utilizing OpenVZ hypervisor behind an in-house VPS control panel.&lt;br /&gt;
* [https://www.waveride.at/ Waveride] Waveride, an EDIS company, offers budget full gigabit OpenVZ + solusVM VPS in Austria, USA and the Netherlands&lt;br /&gt;
* [http://www.webappcabaret.com WebAppCabaret] provides VPS solutions for hosting applications. We offer OpenVZ with cPanel or Plesk for web site management; and NGASI Universal App Manager for deploying and managing JAVA and RAILS applications.&lt;br /&gt;
* [http://www.wirenine.com/vps-hosting/ WireNine.com VPS Hosting] Low cost fully managed and unmanaged OpenVZ based VPS Hosting with SAS 15k enterprise drives in high-performance RAID-10 storage.&lt;br /&gt;
* [http://www.zoidial.com/ Zoidial Hosting and VPS] - offers VPS and Virtual Dedicated Server solutions utilizing OpenVZ.  In business since 1998, Zoidial Incorporated is a small hosting provider focused on being security conscious, proactive, and offering a positive client experience.&lt;br /&gt;
* [http://zensix.com ZenSix Hosting] Cheap OpenVZ based VPS accounts with the SolusVM control panel.&lt;br /&gt;
* [http://zigothosting.com Zigot Hosting] Affordable and Reliable OpenVZ based VPS's within the SolusVM control panel.&lt;br /&gt;
* [http://www.vpsfast.us/usa-vps VPSFast] - VPS Provider with good prices in USA (Los Angeles, New Jersey, New York, Seattle, Washington, Dallas, Chicago, Atlanta, Ashburn, Miami, Piscataway).&lt;br /&gt;
* [http://www.xarixlite.com Xarix Lite] - offers OpenVZ hosting in Charlotte, SC. OpenVZ plans starting at $2.50/mo&lt;br /&gt;
&lt;br /&gt;
== Vietnam ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://appvz.com AppVZ.com] (www.appvz.com) is a leading web solution provider offering domain, hosting, reseller and VPS hosting packages from 2009. Just recently, the company has offered discount packages where customers can avail managed and un-managed VPS for only $9.5 per month.&lt;br /&gt;
&lt;br /&gt;
= Hosting providers comparison =&lt;br /&gt;
&lt;br /&gt;
It is hard to compare all virtual private server offers provided by different hosting providers.&lt;br /&gt;
Sites below can help you with it.&lt;br /&gt;
&lt;br /&gt;
* [https://www.cheapvpsservers.co.uk/ Cheap VPS Servers]&lt;br /&gt;
* [https://www.hostingmyths.com/ Hosting Myths]&lt;br /&gt;
* [https://www.thehostbay.com/ TheHostBay]&lt;br /&gt;
* [https://www.exoticvps.com/ Exoticvps]&lt;br /&gt;
* [https://reviewsquirrel.com/web-hosting-reviews/ Review Squirrel]&lt;br /&gt;
* [http://wphostninja.com/5-websites-to-follow-to-buy-free-vps-hosting/ Freevpshosting]&lt;br /&gt;
* [http://lowendstock.com/ Lowendstock]&lt;br /&gt;
* [https://www.websitehostingrating.com/ Best Web Hosting Services]&lt;br /&gt;
* [http://serverbear.com/compare?Sort=RAM&amp;amp;Order=asc&amp;amp;Server+Type=VPS&amp;amp;Monthly+Cost=-&amp;amp;HDD=-&amp;amp;RAM=-&amp;amp;Virtualization=OpenVZ Serverbear]&lt;br /&gt;
* [http://wphostninja.com/black-friday-web-hosting-deals/ Black Friday Web Hosting]&lt;br /&gt;
* [https://www.comparethehosts.com/vps-web-hosting.htm VPS Web Hosting Reviews]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
http://vpscomp.com&lt;br /&gt;
http://reviewsignal.com/webhosting/compare/&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= See also =&lt;br /&gt;
&lt;br /&gt;
* [[Partners]]&lt;br /&gt;
* [[Download mirrors]]&lt;br /&gt;
* [[VPS vs Dedicated]]&lt;/div&gt;</summary>
		<author><name>Vvs</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.openvz.org/index.php?title=Hosting_providers&amp;diff=23314</id>
		<title>Hosting providers</title>
		<link rel="alternate" type="text/html" href="https://wiki.openvz.org/index.php?title=Hosting_providers&amp;diff=23314"/>
		<updated>2020-06-05T05:08:24Z</updated>

		<summary type="html">&lt;p&gt;Vvs: Undo revision 23313 by 195.14.170.242 (talk)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''OpenVZ is free and open implementation of Virtuozzo containers for Linux.&lt;br /&gt;
Don't forget to keep [[testimonials|testimonial]] and [[donate]] to OpenVZ.'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
OpenVZ makes for a great hosting platform for VPS hosting. The providers below offer VPS services using OpenVZ.&lt;br /&gt;
&lt;br /&gt;
= OpenVZ hosting providers =&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- @@@@@@@@@@@@@@@@@@@@@@@&lt;br /&gt;
&lt;br /&gt;
IF YOU EDIT THIS PAGE,  PLEASE OBEY TO THE FOLLOWING RULES:&lt;br /&gt;
&lt;br /&gt;
1. Keep your record on ONE line&lt;br /&gt;
2. Keep the list of providers alphabetically sorted, DO NOT insert your record on top.&lt;br /&gt;
3. Keep the list of countries alphabetically sorted as well.&lt;br /&gt;
&lt;br /&gt;
     @@@@@@@@@@@@@@@@@@@@@@@@ --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Andorra ==&lt;br /&gt;
* [https://www.actiu.net/pro/ Actiu informatica] amb servidors dins i fora del principat.&lt;br /&gt;
&lt;br /&gt;
== Argentina ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.g2khosting.com/ G2K Hosting offer OpenVZ containers with high level hardware technology from 25 US with Control Panel, various Linux Dists and full support.&lt;br /&gt;
* [http://www.wiredhosting.com.ar/ WiredHosting] offer XEN and OpenVZ containers with SSD drives, cloudflare security and weekly backups to protect your information. Phone and Helpdesk support. &lt;br /&gt;
* [http://www.ihserver.net/ IHServer] Specialized virtualization on OpenVZ containers at Gigared datacenter. We have in Argentina one of the better fiber connection to the US, but also provides services from LSTN in Texas.&lt;br /&gt;
* [https://www.fulltech.com.ar/ Full Tech Solutions] Specializes in the virtualization of OpenVZ &amp;amp; Virtuozzo containers, installed in the Full Tech Solutions Data Center located in Villa Elisa, Entre Rios Argentina.  It also offers services hosted in the United States, Netherlands and Germany&lt;br /&gt;
* [https://www.neolo.com/ Neolo] provide OpenVZ containers at our own datacenter in South America with double internet provider. Choose your Linux OS and apps. Full support.&lt;br /&gt;
* [https://www.infranetworking.com.ar/ Infranetworking] All our Cloud VPS container solutions for Argentine customers are powered by the all mighty OpenVZ virtualization software.&lt;br /&gt;
&lt;br /&gt;
== Australia == &lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
[https://www.conetix.com.au/ Conetix Hosting] Specialising in business grade, fully managed Virtuozzo containers with Virtuzzo Cloud Storage. 100% Australian owned and operated. Brisbane based DC with Enterprise Dell servers.&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides self-managed OpenVZ based SSD VPS located at Equinix SY3 in Sydney, one of the best and well-connected datacenters in the region.&lt;br /&gt;
* [http://www.vpsfast.us/australia-cloud-server VPSFast] - VPS Provider with good prices in Australia.&lt;br /&gt;
&lt;br /&gt;
== Austria ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
* [https://kapper.net/ kapper.net] kapper.net offers OpenVZ and Virtuozzo (and other HyperVisors) based server-solutions with kind support and 24x7 maintenance.&lt;br /&gt;
* [https://mdhost.eu/vserver.php MDHost.eu] New Hosting Provider with nice Prices and many Server locations. Austria, Germany, France and more.&lt;br /&gt;
* [https://www.snb.at/ SNB] offers OpenVZ containers and support's also existing vm's in customers environment&lt;br /&gt;
* [https://www.waveride.at/ Waveride] Waveride, an EDIS company, offers budget full gigabit OpenVZ + solusVM VPS in Austria, USA and the Netherlands&lt;br /&gt;
* [http://www.vpsfast.us/austria-cloud-server VPSFast] - VPS Provider with good prices in Austria.&lt;br /&gt;
&lt;br /&gt;
== Brazil ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.datacorporate.com.br/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [http://www.globalmedia.com.br/ GlobalMedia] We offers OpenVZ containers hosted on a very fast network with fast setup. Ubuntu, Debian, CentOS.&lt;br /&gt;
* [http://www.host1plus.com.br/ Host1Plus] Servers hosted in São Paulo. We offering reliable and secure OpenVZ VPS Servers with 99.99% up-time, starting from $5.00 per month.&lt;br /&gt;
* [http://www.ipdeck.net/ IPDECK] VPS Linux server from R$15,00/month! Fully customizable according to your needs.&lt;br /&gt;
* [http://www.quantive.com.br/ QuantiveHost] VPS Linux with 99.99% uptime. Prices starting from R$ 29,35.&lt;br /&gt;
* [https://www.elevahost.com.br/ Eleva host] Server hosted in Brazil. The best support.&lt;br /&gt;
&lt;br /&gt;
== Bulgaria ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* [https://www.cyberhour.com CyberHour.com] CyberHour.com is an [https://www.cyberhour.com offshore VPS hosting] provider located in Europe. The provide blazing fast servers and premium Bandwidth of 200Mbps. With high privacy protection.&lt;br /&gt;
* [https://www.linuxssdvps.com Bulgaria VPS] Linux SSD VPS is an [https://www.linuxssdvps.com offshore VPS hosting] provider located in Sofia, Bulgaria. Privacy is very respected and anonymous registrations are allowed, as well as payments via Bitcoin / PayPal.&lt;br /&gt;
* [http://www.webuzo.net Bulgaria VPS] Webuzo Network is an offshore SSD VPS hosting provider located in Bulgaria. Privacy is very respected and anonymous registrations are allowed, as well as payments via Bitcoin / PayPal.&lt;br /&gt;
* [https://vpsbg.eu/en Bulgaria VPS] VPSBG.eu is an offshore SSD VPS hosting provider located in Sofia, Bulgaria. Privacy is very respected and anonymous registrations are allowed, as well as payments via Bitcoin.&lt;br /&gt;
* [http://www.bul.net/ Bul.net] Provides OpenVZ based VPS, perfect user/VPS management via [http://ispsystem.com VDSManager]. Instant creation after online payment. Debian/Ubuntu/CentOS with ISPManager Control panel. Optimal price policy.&lt;br /&gt;
* [http://www.cointech.eu/vps-hosting/ CoInTech] provides OpenVZ based VPS containers, free webmin managment. Containers can be CentOS, Slackware, Ubuntu, custom or our special [http://www.mandriva.com Mandriva Linux] container with own [http://mandriva.cointech.net repository].&lt;br /&gt;
* [http://www.rax.bg/ RAX.bg] Offers OpenVZ based VPS, hosted on a clustered infrastructure and redundant network. Easy to use user management, Instant setup, CentOS (OS).&lt;br /&gt;
* [http://www.jump.bg/ Jump.bg] Provides OpenVZ VPS servers hosted on a redundant network which provides a very easy to manage platform for all clients which gain instant access to their OS ( Ubuntu, CentOS , Debian etc ... )&lt;br /&gt;
* [https://www.fitvps.com/ FitVPS.com] Offers affordable and reliable OpenVZ based VPS in Varna, Bulgaria. Own data center, own multihomed network, with SLA. Instant automatic setup, SolusVM control panel.&lt;br /&gt;
* [http://www.qhoster.com/ QHoster.com] Instant activation OpenVZ VPS in UK, USA, Germany, France and Switzerland. Both 32/64 bit OpenVZ OS VPS templates : CentOS 5/6, Debian 6/7, Ubuntu 12/13.&lt;br /&gt;
* [https://www.verdina.net Verdina.NET] Verdina.net offers dedicated hosting services, provided by powerful dell hardware. Servers are located in Telepoint Datacenter, a Tier 3 DC located in Sofia, Bulgaria.&lt;br /&gt;
* [https://www.vps.ag/ VPS.AG] Affordable and reliable OpenVZ VPS based in Sofia, Bulgaria. Instant setup and 24/7 support.&lt;br /&gt;
* [http://www.vpsfast.us/bulgaria-vps VPSFast] - VPS Provider with good prices in Bulgaria.&lt;br /&gt;
&lt;br /&gt;
== Canada ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://whc.ca/canadian-cloud-servers Web Hosting Canada Cloud Servers] - Powerful Cloud servers powered by OpenVZ and located in Canadian datacenters, with fast RAID-10 storage, fully managed with cPanel.&lt;br /&gt;
* [http://compevo.com compevo Clustered VPS Server Hosting Provider] - We offer clustered VPS Servers to avoid downtime and dataloss. Our network and service is second to none and is used by businesses around the world.&lt;br /&gt;
* [http://www.datacorporate.ca/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [https://www.delimiter.com/storage-vps/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [https://www.miditech.com/ MidiTech Hosting Canada] VPS hosting offered by MidiTech Canada are powered by VMware, . Fully Managed VPS with control panels&lt;br /&gt;
* [http://www.gotekky.com Gotekky Cloud VPS Hosting] High quality Cloud VPS packages powered by our own infrastructure and network in Toronto. Scalable from our $5/mo plan all the way to your own dedicated cloud server. Based on OpenVZ and our own proprietary panel.&lt;br /&gt;
* [http://www.letstalkdigital.com/index.php?option=com_content&amp;amp;view=article&amp;amp;id=73&amp;amp;Itemid=65 LetsTalkDigital VPS Hosting] LetsTalkDigital.com offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from $14.99. Virtual Private Server (VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://secure.media-hosts.com/link.php?id=7 Media-Hosts.com] Provides Quality and Scalable OpenVZ based Virtual Private Servers. 100% network uptime guaranteed. Located in Montreal Quebec with 5 Tier1 upstream providers.&lt;br /&gt;
* [http://www.openvz.ca OpenVZ.ca] Canadian Budget VPS Servers on OpenVZ Platform. &lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [http://protoserver.com ProtoServer] Advanced VPS Hosting from $4.95/month. Many pre-installed VPS Templates available (CMS, E-commerce, Web development, Online community, Media streaming, etc.) No bundles or service plans - mix VPS resources as needed and change VPS configuration anytime. Also offering DNS Hosting, E-mail hosting, Domains Registration.&lt;br /&gt;
* [http://www.vistapages.com/vps Vistapages VPS] - IBM &amp;amp; Dell Hardware. MCI/Verizon Backbone. Distros: Centos, Fedora, Debian &amp;amp; more. Full management available. Located in Toronto.&lt;br /&gt;
* [http://vpsville.ca/ VPSVille] - Good network. Good CPU. Good choice of distros: Centos, Fedora, Debian, Ubuntu, Slackware, Gentoo, OpenSUSE, CERN. My favorite OpenVZ provider. [mailto:jak@isp2dial.com John Kelly]&lt;br /&gt;
* [http://solib.ca/services-offerts/hebergement-haute-vitesse/serveurs-vps/ SOLIB Logiciel Libre Québec] Our company offers DDoS protected server solutions including OpenVZ containers. Very high availability and reliability, all our VPS are located in Quebec, Canada.&lt;br /&gt;
* [https://www.host-stage.net/linux-vps/ HostStage - Linux VPS] - Simple, Reliable OpenVZ VPS packed with 1 GBPS port speed, RAID 10 SSD, Intel Xeon CPU, DDoS Protection from $4.95/month&lt;br /&gt;
* [http://www.vpsfast.us/canada-vps VPSFast] - VPS Provider with good prices in Canada.&lt;br /&gt;
* [https://websavers.ca/canadian-vps-hosting Websavers Inc in Halifax] - VZ containers priced by the resource. Resource changes entirely client-level.&lt;br /&gt;
&lt;br /&gt;
== Colombia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.datacorporate.co/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [http://www.soficol.com/ Soficol] Offers Enterprise OpenVZ based VPS, hosted on a clustered infrastructure and redundant network. Easy to use user management and instant setup.&lt;br /&gt;
&lt;br /&gt;
== Czech Republic ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://4smart.cz 4Smart.cz] - prepaid, you are charged only by the system resources you use, therefore you can run a VPS for as little as  1 EUR a month if your vps is not resource hungry. Even if you pay  0,50 EUR  month, you still have 3 GB of RAM and 8 cores available to you VPS.&lt;br /&gt;
* [http://www.freecloud.cz FREECLOUD.CZ] - Free OpenVZ VPS Server - own IP, 800Mhz CPU, 512MB RAM, 50Mbits LAN, 10GB HDD, 100GB Traffic - Debian, Ubuntu, Gentoo, Slackware, Fedora, Centos&lt;br /&gt;
* [http://www.hukot.cz Hukot.cz] - OpenVZ VPS Servers starting from 2.92 €, XEON, 1 Gbps uplink, unlimited traffic. Debian, Ubuntu, CentOS, Scientific, SuSe, Fedora, Elastix.&lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [http://www.ultimatehosting.eu UltimateHosting.eu] - OpenVZ VPS Servers starting from $8 with custom configuration - up to 100 GB HDD, 2048 MB RAM, 2 GHz CPU, and unlimited traffic.&lt;br /&gt;
* [http://www.mujhost.net MUJHOST.NET] - OpenVZ VPS Servers starting from 160 Kč, 100Mbps / 1 Gbps uplink, unlimited traffic. Debian, Ubuntu, CentOS ...&lt;br /&gt;
&lt;br /&gt;
== Chile ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.1h.cl/ 1h.cl Vps - Chile] - VPS High Performance with OpenVZ in Chile&lt;br /&gt;
* [http://www.1hosting.cl/ 1hosting Virtual servers - Chile] - VPS Professional with OpenVZ&lt;br /&gt;
* [http://www.dch.cl/ DCH] - DCH.cl Hosting Chile - High Performance VPS Servers with OpenVZ &lt;br /&gt;
* [http://ecohosting.cl/ EcoHosting.cl Santiago - Chile] - VPS with OpenVZ in Chile&lt;br /&gt;
* [http://www.hostingplus.cl/ HostingPlus Internet Limitada] - High Performance Vps provider in Chile&lt;br /&gt;
* [https://www.hostname.cl/ Hostname Ltda] - VPS Hosting with Datacenter in Chile&lt;br /&gt;
* [https://www.inc.cl/ INC Internet Limitada] - VPS Hosting provider in Chile&lt;br /&gt;
* [https://www.dominioweb.net/ Dominioweb.net] - Web Hosting Premium and register domain&lt;br /&gt;
* [https://www.host.cl/ Host SPA] - Wordpress Hosting Profesional&lt;br /&gt;
&lt;br /&gt;
== Denmark ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.vpsfast.us/denmark-cloud-server VPSFast] - VPS Provider with good prices in Denmark.&lt;br /&gt;
&lt;br /&gt;
== Ecuador ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.dedi.space/ DediSpace Telecom] - VPS Servers in Ecuador - USA, France, Germany, Ecuador Datacenter.&lt;br /&gt;
&lt;br /&gt;
== France ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.BargainVPS.co.uk/ BargainVPS] - UK / US / EU Instant setup VPS - We have some great Linux &amp;amp; Windows Bargain VPS packages on offer for you here all available Fully Managed.&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in France from 1.88EUR/month.&lt;br /&gt;
* [http://www.fixweb.com Fixweb] Great managed hosting provider with strong anti ddos solution - openvz only - leader in managed openvz solution with horizontal scaling and high availability&lt;br /&gt;
* [http://www.Freaksol.com/ FreaKs VPS Hosting] Self reliant hosted on independent networks &amp;amp; DC low ping,No restrictions on file types,Unlimited resources,high ram servers &lt;br /&gt;
* [https://galaxyhostplus.com/ovz GalaxyHostPlus] Cheap VPS Hosting based in Roubaix with new 2016 line starts from $2/Month &lt;br /&gt;
* [http://www.harmony-hosting.com Harmony-Hosting] A high performance VPS hosting - The leader in France&lt;br /&gt;
* [https://www.delimiter.com/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [http://www.lws.fr/serveur_dedie_linux.php LWS - Linux VPS ] - Linux VPS Hosting - Only 9.99€/month, Affordable and Secure OpenVZ VPS Servers with 99.99% up-time, web hosting control panel Included. French datacenter&lt;br /&gt;
* [http://www.ovh.co.uk/vps/ OVH VPS] linux from 3€/month, [http://www.ovh.co.uk/vps/vps-cloud.xml windows] from 12€/month.&lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [https://VPSZ.FR VPSZ] VPS Hosting in France. Starting from 2,99€, Unlimited traffic.&lt;br /&gt;
* [http://www.1euro-hosting.eu BEST EU VPS - 1€ Hosting] - Providing reliable and secure OpenVZ VPS Servers with 99.99% up-time, starting from 8€&lt;br /&gt;
* [https://www.shape.host/linux-vps/ Shape Host - Linux VPS] - OpenVZ virtual servers, Instant Linux VPS&lt;br /&gt;
* [https://www.host-stage.net/linux-vps/ HostStage - Linux VPS] - Simple, Reliable OpenVZ VPS packed with 1 GBPS port speed, RAID 10 SSD, Intel Xeon CPU from $4.95/month&lt;br /&gt;
* [https://www.yoorshop.fr/ YOORshop SAS] - High performance SSD Linux VPS within 13 countries in Europe, daily backup included. Starting from €6,95 /month&lt;br /&gt;
* [https://www.wantete.com/vps-servers.php/ WANTETE] - OpenVZ virtual servers, VPS Hosting in France Starting from  €1,99/month 10% CPU&lt;br /&gt;
&lt;br /&gt;
== Germany ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://afterburst.com Afterburst (Previously FanaticalVPS)]: affordable unmetered, unmanaged VPS servers in Germany.&lt;br /&gt;
* [http://www.b2b-hosting.de/vps/ B2B Hosting]: Professional virtual servers for business applications. Performance and reliability at a fair price. Made with OpenVZ.&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in Germany from 1.88EUR/month.&lt;br /&gt;
* [https://www.delimiter.com/dedicated-servers/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [https://galaxyhostplus.com/ovz GalaxyHostPlus] Cheap VPS Hosting based in Frankfurt with new 2016 line starts from  $2/Month&lt;br /&gt;
* [http://hostmist.com/openvz-vps-germany.html Host Mist]: features budget OpenVZ VPS hosting in Germany.&lt;br /&gt;
* [http://www.host1plus.com/ Host1Plus] Servers based in Frankfurt am Main. Offering reliable OpenVZ based VPS servers in Germany starting from $2.50 per month.&lt;br /&gt;
* [http://www.hostingjuice.com/ HostingJuice] The Superioum VPS and Web Hosting provider, low prices - Premium packages.&lt;br /&gt;
* [http://www.ingate.de/managed-server.html Ingate] offers managed servers with openVZ virtualization. located in germany, great support.&lt;br /&gt;
* [http://linevast.de/angebote/linux-openvz-vserver-mieten.html Linevast] Reliable OpenVZ based VPS with fast support, located in germany&lt;br /&gt;
* [https://cp.myvirtualserver.com/?affid=42 MyVirtualServer]: Cheap VPS (OpenVZ/KVM, 5TB Traffic, 10Gigabit), servers located in Frankfurt (best ping, starting 1.99€) good support (en/de) //New Design!&lt;br /&gt;
* [https://www.nogics.com Nogics Technologies]: Affordable VPS based in Germany. Starts from $5.96/mo.&lt;br /&gt;
* [http://www.plambee.de/vserver.php Plambee.de Webhosting]: Powerfull OpenVZ based VPS servers at low cost with hosting in Germany&lt;br /&gt;
* [http://www.serverbiz.de/vserver Serverbiz] Powerful VPS at very low prices.&lt;br /&gt;
* [http://www.synapseglobal.com/voip_vps.html SynapseGlobal.com] Elastix, Trixbox, PBX in a Flash and Asterisk VPS - OpenVZ based Asterisk VOIP servers located in Munich Germany.&lt;br /&gt;
* [http://www.vStarVPS.com vStarVPS]: Reliable VPS Hosting at lowest prices, with 99.9% uptime, Premium Unmetered Bandwidth and Custom HDD/RAM of your choice. Instant and FREE Setup. RapidLeech Allowed.&lt;br /&gt;
* [http://whynotavps.com WhyNOTaVPS]: Instant activated VPS SERVERS!!&lt;br /&gt;
* [http://squote.de/index.php?ref=1421485383 SQuote]: SQuote VPS Hosting and more. VPS 1 Core, 1.024MB RAM, 512MB RAM SWAP, 50 GB HDD, 1x IPv4. 3,89EUR/month. For the best VPS SQuote.de&lt;br /&gt;
* [http://www.vpsfast.us/germany-vps VPSFast] - VPS Provider with good prices in Germany.&lt;br /&gt;
&lt;br /&gt;
== Guatemala ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.globalnetcafe.com/gnc/menu/hospedaje.htm Global Net Cafe]: Servicios de hospedaje, reseller, vps, colocacion y servidores. Incluyendo OpenVZ.&lt;br /&gt;
&lt;br /&gt;
== Hong Kong ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [https://hostus.us HostUS] features unmanaged and managed OpenVZ VPS in Hong Kong as well as 3 USA locations. Unparalleled connectivity to the Asia Pacific. Enjoy 15% off with coupon VPS15OFF.&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides self-managed OpenVZ based SSD VPS in Hong Kong, located at the Pacnet datacenter. &lt;br /&gt;
* [http://vps.timway.com/linux_vps.html Timway VPS Hosting] - Quality, non-oversold hosting provider focused on being security conscious and offering a positive client experience.   Centos, Debian, Fedora, OpenSuse and Ubuntu Containers are available.&lt;br /&gt;
* [http://www.vpsfast.us/hong-kong-cloud-server VPSFast] - VPS Provider with good prices in Hong Kong.&lt;br /&gt;
&lt;br /&gt;
== Hungary ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://elin.hu/index.php?menu=8&amp;amp;nyelv=hu&amp;amp;cim=Virtualis-szerver Virtual server] OpenVZ server: 2xX5650 Intel Xeon, 32GB RAM, 15.000rpm SAS disks, 100Mbit/s, unlimited bandwith.&lt;br /&gt;
* [https://www.ivirtual.co/vps-hosting/ iVirtual.co ] OpenVZ Master Server: 2x Intel Xeon @ 3.0GHZ, 64 GB ECC Ram, 15k RPM SAS HDD's, 1Gbit/s Network, Unlimited bandwith.&lt;br /&gt;
&lt;br /&gt;
== Iceland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
&lt;br /&gt;
== Ireland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
== India ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://cochinwebhost.in/budget-vps-hosting/ Low Cost VPS Hosting] Fast SSD VPS Server for Hosting Solutions at budget prices with 24x7 Technical Support.&lt;br /&gt;
&lt;br /&gt;
* [http://www.datacorporate.in/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
&lt;br /&gt;
*[http://www.fastwebhost.in/vps-hosting.html fastwebhost VPS Hosting] VPS hosting offered by fastwebhost are powered by ''VPS hosting, virtual server hosting and Linux VPS hosting services''. Fully Managed VPS with control panels.&lt;br /&gt;
&lt;br /&gt;
* [http://www.Freaksol.com/ Freaksol VPS Hosting] Self reliant hosted on independent networks &amp;amp; DC low ping to India,No restrictions on file types,Unlimited resources,high ram servers&lt;br /&gt;
&lt;br /&gt;
* [https://www.geniushost.in Genius Host] Fully managed [https://www.geniushost.in SSD Web Hosting] offered by Genius Host are powered by ''OpenVZ'' With LiteSpeed Web Server &amp;amp; Mariadb.&lt;br /&gt;
&lt;br /&gt;
* [http://www.hioxindia.com/virtual-private-server.php VPS Hosting] Reliable and quality VPS Virtual Private Server Hosting&lt;br /&gt;
&lt;br /&gt;
* [https://www.hostsoch.in/windows-hosting.html HostSoch Windows Hosting] Windows hosting offered by HostSoch are powered by ''Windows 2012, ASP.NET, MVC, IIS, PHP and More''. 99.9% Uptime, 24/7 Dedicated support guaranteed. &lt;br /&gt;
&lt;br /&gt;
* [https://www.miditech.co.in/ MidiTech VPS Hosting] VPS hosting offered by MidiTech are powered by ''VMware, ''. Fully Managed VPS with control panels. &lt;br /&gt;
&lt;br /&gt;
* [http://www.milesweb.com/vps-hosting.php Milesweb VPS Hosting] VPS hosting offered by Milesweb are powered by ''VMware, OpenVZ''. Fully Managed VPS with control panels. &lt;br /&gt;
&lt;br /&gt;
* [https://www.nogics.com/web/vps-hosting/ Nogics Technologies] Instant provisioning of VPS, VPS starts from $5.96/mo. 30+ OS templates.&lt;br /&gt;
&lt;br /&gt;
* [http://overlineindia.net/vpshosting-p-62.html Overline India VPS Hosting] Fully managed cPanel Installed VPS Hosting with 24x7x365 Live Chat Tech support, powered by OpenVZ&lt;br /&gt;
&lt;br /&gt;
* [http://www.prohosterz.com/linux-vps.php ProHosterZ VPS Hosting] Reliable and quality Virtual Dedicated Servers | Virtual Private Servers | XEN VPS | OpenVZ VPS | Virtual Hosting&lt;br /&gt;
&lt;br /&gt;
* [http://pve.proxmox.com/wiki/User:Apmuthu Ap.Muthu] sponsored by [http://www.gnuacademy.org GNUAcademy], [http://www.planettel.com.sg PlaNetTel] and [http://www.sacollege.net S A College] creates OpenVZ Templates for the Open Source Community and provides hosting in datacenters of clients choice or on site.&lt;br /&gt;
&lt;br /&gt;
* [http://www.servers.co.in/vps/vps_hosting.php Server Web Hosting] Offers Fully Managed OpenVZ VPS Web hosting in India/US/UK at affordable and cheap rates with best hardware quality and customer service 24/7/365 days&lt;br /&gt;
&lt;br /&gt;
* [http://vpsbeach.com VpsBeach Managed Hosting] Fully managed cPanel Installed VPS Hosting with 24x7x365 Live Chat Tech support, powered by OpenVZ&lt;br /&gt;
&lt;br /&gt;
* [http://www.vpsfast.us/india-vps VPSFast] - VPS Provider with good prices in India.&lt;br /&gt;
&lt;br /&gt;
* [http://www.vpshostingindia.net/ VPS Hosting India, Fully Managed Server] A Committed Fully Managed VPS Server for Hosting solution in India, Complete Technical Support assistance with commitment of fast, clustered and most supportive DataCenters.&lt;br /&gt;
&lt;br /&gt;
* [http://touchstone.hosting/ Touchstone Solutions Private Limited] High-performance Enterprise VPS Hosting in India. One of the highest performing VPS Servers available with cPanel Installed.&lt;br /&gt;
&lt;br /&gt;
== Iran==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.ehost.ir EHost.ir] - OpenVZ Servers , DUAL XEON Cpus , 12 Gb Ram , 100Mbit Dedicated Connection , SAS HardDisk&lt;br /&gt;
* [http://www.vpsfa.com VPSFa.com] - OpenVZ Servers , DUAL XEON Cpus -  , 24Gb Ram , 1000Mbit Dedicated Connection , SAS HardDisk&lt;br /&gt;
&lt;br /&gt;
== Italy ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
* [http://www.hosting-italia.net hosting italia] - OpenVZ Servers and panel enduser Virtualizor Intel® Core™ i7-920 Quad-Core 48 GB DDR3 RAM - Guaranteed Bandwidth 200 Mbit/s&lt;br /&gt;
* [http://www.vpsfast.us/italy-vps VPSFast] - VPS Provider with good prices in Italy.&lt;br /&gt;
&lt;br /&gt;
== Liechtenstein ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
&lt;br /&gt;
== Lithuania ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.cloudlix.com/ CloudLix.com] - Managed and unmanaged OpenVZ virtual servers based on 2.6.32 kernel. Up to 20GHz (Intel SandyBridge) CPU and 10GB RAM. Located in Vilnius and Siauliai.&lt;br /&gt;
* [http://www.databank.lt/ databank.lt] - high-quality professional OpenVZ hosting with cloud computing solutions.&lt;br /&gt;
* [https://www.lavavps.lt/ lavavps.lt] - Professional high-quality OpenVZ containers (VPS servers) affordable for everyone. Powerful control panel for VPS management.&lt;br /&gt;
* [http://www.serveriai.lt/ Serveriai.lt] - Affordable OpenVZ containers on quality HP hardware. Wide choice of virtual dedicated servers up to 8 CPU cores and 8 GB RAM. Full management available. Located in Vilnius.&lt;br /&gt;
* [https://www.time4vps.com/ Time4VPS] - Powerful cloud technology based infrastructure will let you build custom virtual machine and pay only for what you really need. Located in Vilnius city.(0.99€/month(2Yr) 512mbRAM, 1TB Traffic// 4.5€/month(2Yr) StorageVps, 1TB, 10TB Traffic)&lt;br /&gt;
* [https://www.vpsnet.lt/en/ VPSnet.lt] - Powerful and high quality servers for a competitive price in Lithuania (Eastern Europe).&lt;br /&gt;
* [http://www.vpsfast.us/lithuania-vps VPSFast] - VPS Provider with good prices in Lithuania.&lt;br /&gt;
&lt;br /&gt;
== Latvia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.altnet.lv/ Altnet] - Hosting and colocation services. Any flawor, you name it. &lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
&lt;br /&gt;
* [http://www.vpsfast.us/latvia-vps VPSFast] - VPS Provider with good prices in Latvia.&lt;br /&gt;
&lt;br /&gt;
== Luxembourg ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.vpsfast.us/luxembourg-vps VPSFast] - VPS Provider with good prices in Luxembourg.&lt;br /&gt;
&lt;br /&gt;
== Malaysia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.cubiex.com/ Cubiex] - Malaysia Affordable Web Hosting and Domain Name. Affordable Linux VPS Hosting in Malaysia. OpenVZ based, Quad Core Xeon node. cPanel/WHM and DirectAdmin also available.&lt;br /&gt;
* [https://controlvm.com ControlVM] ControlVM Technology offering OpenVZ VPS in Singapore, Malaysia, USA and Germany.&lt;br /&gt;
&lt;br /&gt;
== Malta ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.a6it.com/ A6iT] - Stable, quality managed OpenVZ VPSs based in Malta.  Redundant network.&lt;br /&gt;
&lt;br /&gt;
== Morocco ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.belsemtech.com/ BelsemTech.CoM] BelsemTech SARL offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from 300 DH. Virtual Private Server (VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://www.hostoweb.com/ HosToWeb] is the only company providing VPS hosting in Morocco Data Center.&lt;br /&gt;
* [http://www.adk-media.com/ ADK Media] provides affordable managed and unmanaged virtual servers based on OpenVZ, Xen Paravirtualization and Xen HVM platforms. 24/7 Technical Support. Distros: Centos, Fedora, Debian, Ubuntu and more.&lt;br /&gt;
* [http://www.naja7host.com/ Naja7Host.CoM] The Naja7host SARL provides affordable VPS hosting using the OpenVZ platform. Running on Full Quality Nodes of up to 8 CPU and 16 GB RAM. . All VPS's come with Real 24/7/365  Technical Support and cPanel free (if option selected  ). Multiple choice of OS 32/64Bits (Centos, fedora, ubuntu, debian .ect ...)&lt;br /&gt;
* [http://www.lehoster.com/ Le Hoster] offers affordable Virtual Private Servers using the OpenVZ and KVM platform. Backed with our amazing customer support.&lt;br /&gt;
* [https://www.wantete.com/vps-servers.php/- WANTETE] - OpenVZ virtual servers, VPS Hosting in France Starting from  €1,99/month 10% CPU&lt;br /&gt;
&lt;br /&gt;
== Netherlands ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.avanpad.com/ Avanpad] offers OpenVZ VPS hosting with 24\7 online support. Customer can request different control panels or templates for installation on his VPS.&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in Netherlands from 1.88EUR/month.&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
* [http://www.Freaksol.com/ FreaKs VPS Hosting] Self reliant hosted on independent networks &amp;amp; DC low ping around the world,No restrictions on file types,Unlimited resources,high ram servers&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [http://www.HostSailor.com/ HostSailor] Number 1 Netherlands Provider HostSailor provides affordable &amp;amp; high quality services such as VPS (XEN, OpenVZ and KVM) Linux or Windows, Dedicated servers, SSL certificates and domain name services.&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides self-managed OpenVZ SSD VPS in Telecity AMS 5, one of the best datacenters located in the Amsterdam area.&lt;br /&gt;
* [https://iniz.com/ INIZ VPS Hosting] INIZ provides affordable VPS Hosting in Amsterdam, Netherlands with high resources at low prices.&lt;br /&gt;
* [https://www.liteserver.nl/ LiteServer] Looking for a quality and affordable VPS in the center of The Netherlands? We provide SSD, Storage and High Bandwidth VPSes, starting at only €16 per year. We operate AS60404.&lt;br /&gt;
* [https://www.mangelot-hosting.nl/ Mangelot Hosting] Mangelot Hosting, A webhosting company located in the Netherlands, offers budget OpenVZ hosting solutions for maximum scalability en performance.&lt;br /&gt;
* [http://www.osbox.nl OsBoX Dutch Network Engineering] Cheap VPS host as low as $1 per month. Very great uptime and a overall good support. Check the website for the server plans.&lt;br /&gt;
* [http://www.signet.nl/ Signet VPS Hosting] - Signet delivers VPS hosting plans based on CentOS or Debian templates, including control-panel Virtualmin.&lt;br /&gt;
* [http://simple-webhosting.eu/ Simple-webhosting.eu] - OpenVZ based web hosting starting from €0.98 per month.&lt;br /&gt;
* [https://www.seedvps.com SeedVPS] Provides Powerful &amp;amp; Reliable OVZ/KVM VPS Hosting in The Netherlands&lt;br /&gt;
* [http://www.touchvps.com/ TouchVPS] is a company who offer Support and Managed Services for OpenVZ Servers ,also offer templates for openvz ready to go with cPanel , DirectAdmin , Plesk , Games, IRC Services, Desktop and many more.&lt;br /&gt;
* [http://www.voipcomplete.com/product-overview/dedicated-vps.html VOIPcomplete] offers dedicated VPS plans based on CentOS including a VPS management interface.&lt;br /&gt;
* [https://www.waveride.at/ Waveride] Waveride, an EDIS company, offers budget full gigabit OpenVZ + solusVM VPS in Austria, USA and the Netherlands&lt;br /&gt;
* [https://www.totallyhosted.nl/ TotallyHosted] OpenVZ based Premium VPS services located in the Netherlands @ Serverius DC.&lt;br /&gt;
* [https://www.wantete.com/vps-servers.php/- WANTETE] - OpenVZ virtual servers, VPS Hosting in France Starting from  €1,99/month 10% CPU&lt;br /&gt;
* [http://www.vpsfast.us/netherlands-vps VPSFast] - VPS Provider with good prices in Netherlands.&lt;br /&gt;
&lt;br /&gt;
== Norway ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.vpsfast.us/norway-vps VPSFast] - VPS Provider with good prices in Norway.&lt;br /&gt;
&lt;br /&gt;
== Philippines ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.web.com.ph/vps.php Web.com.ph] - provides OpenVZ virtual servers in the Philippines.&lt;br /&gt;
&lt;br /&gt;
== Perú ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.hn.pe/ Hostname] Hostname offers business OpenVZ containers in Perú&lt;br /&gt;
* [https://www.inchosting.pe/ HostingINC SAC] OpenVZ virtualization solutions for business in Perú.&lt;br /&gt;
* [http://www.hostingplus.pe/ HostingPlus Internet Limitada] - High Performance Vps provider in Peru&lt;br /&gt;
* [http://www.hostingandino.pe/ Hostingandino Lima - Peru] - VPS with OpenVZ in Peru&lt;br /&gt;
* [https://www.mejorhosting.pe/ Mejor Hosting Perú] Hosting comparison for peruvian hosting providers.&lt;br /&gt;
&lt;br /&gt;
== Poland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://hosteam.pl/ HosTeam] offers OpenVZ VPS hosting from their DataCenter in Poland. Customer has choice of all major Linux distros (WARNING!!! restoring your backup is VERY expensive and they charge even if it wasn't restored correctly!), NATIVE IPV6 AVAILABLE!&lt;br /&gt;
&lt;br /&gt;
* [http://ultimahost.pl/ UltimaHost] high grade OpenVZ VPS and FreeBSD jail (DC in Łódź, Poland), brand of statnet.pl, SSD available for more expensive packets, NO IPV6 AVAILABLE (but they can load you tun module)&lt;br /&gt;
&lt;br /&gt;
* [http://budgetvps.pl/ BudgetVPS] very cheap, low end grade OpenVZ VPSes (DC in Gdańsk, Poland), brand of hitme.net.pl&lt;br /&gt;
&lt;br /&gt;
* [http://hitme.net.pl/ HitMe] high grade OpenVZ/Xen PV/Xen HVM VPSes (DC in Gdańsk, Poland), NATIVE IPV6 AVAILABLE (/64 on demand for free)!&lt;br /&gt;
&lt;br /&gt;
* [http://www.kr-cpd.pl/oferta/serwery-vps/ KR-CPD] Cracow's Center of Data Processing (DC of course in Cracow, Poland)&lt;br /&gt;
&lt;br /&gt;
* [http://livenet.pl Livenet] cheap, middle/low end OpenVZ VPSes (DC in Łódź, Poland)&lt;br /&gt;
&lt;br /&gt;
* [http://slaskdatacenter.pl/ Śląsk Data Center] high/middle grade OpenVZ VPSes (DC in Silesia province, Poland), SSD available for more expensive packets&lt;br /&gt;
&lt;br /&gt;
* [https://www.ionic.pl/ IONIC.pl] VPS OpenVZ with SolusVM control panel, own DC in Cracow&lt;br /&gt;
&lt;br /&gt;
== Portugal ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.ptservidor.pt/ PTServidor] - OpenVZ virtual servers with free management based in Portugal.&lt;br /&gt;
* [http://www.efeito.net/ Weblevel.pt] - OpenVZ virtual servers based in Portugal.&lt;br /&gt;
* [https://www.webtuga.pt/ WebTuga] - Managed/Unmanaged Virtual Private Servers hosted in a Portuguese Datacenter with lots of extras&lt;br /&gt;
* [https://www.cloudfire.pt/ CloudFire] - OpenVZ VPS at very low prices hosted in Portugal&lt;br /&gt;
* [https://www.linxisp.com/ LINXISP] - High Availability &amp;amp; Performance OpenVZ Containers&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] - Build an OpenVZ VPS in 14 locations WordWide From £2.49&lt;br /&gt;
&lt;br /&gt;
== Romania ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.intovps.com IntoVPS] - offers unmanaged OpenVZ virtual servers based in Romania, Netherlands and USA. A lot of resources for decent prices.&lt;br /&gt;
* [http://www.ename.ro/dedicated.html eName] - managed OpenVZ virtual servers in Bucharest, Romania&lt;br /&gt;
* [http://www.ch-center.com/virtual-servers Ch-center] - unmanaged OpenVZ virtual servers, based in Romania in it's own Data Center&lt;br /&gt;
* [http://www.clouds.ro/servere-virtuale/ Clouds] - OpenVZ virtual servers hosted on premium hardware, in Romania&lt;br /&gt;
* [http://www.HostSailor.com/ HostSailor] HostSailor provides affordable &amp;amp; high quality OpenVZ and KVM servers in Romania&lt;br /&gt;
* [https://www.shape.host/linux-vps/ Linux VPS] - OpenVZ virtual servers, Instant Linux VPS&lt;br /&gt;
&lt;br /&gt;
== Russia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.ihc.ru/vps.html IHC.RU] - VPS hosting in Moscow, Russia starting at $10/month with good set of precreated templates&lt;br /&gt;
* [http://mchost.ru/services/linux-vps/ McHost.ru] - Linux VDS Hosting from McHost.&lt;br /&gt;
* [http://hosting.agava.ru/vps/ AGAVA] - Linux VPS hosting based on OpenVZ.&lt;br /&gt;
* [http://vdsplanet.ru/ VDSPlanet.ru] - unmanaged VDS/VPS hosting starting at 3.99$ a month. Large variety of OS templates and free ISPmanager Lite control panel. Total automation is our goal.&lt;br /&gt;
* [http://www.demos.ru/service/datacenter/vps.html Demos-Internet] - we offer OpenVZ Virtual Private Server based on Linux.  All VPS come with ISPmanager control panel.&lt;br /&gt;
* [http://www.net.ru/service/net9/ www.net.ru] - OpenVZ virtual private servers.&lt;br /&gt;
* [http://www.eurobyte.ru/ Eurobyte.ru] - Linux VDS Hosting from Eurobyte.&lt;br /&gt;
* [http://www.telekom.ru/service/vps.html Elvis Telekom] - OpenVZ hosting with base and cpanel templates from Elvis Telekom.&lt;br /&gt;
* [http://fastvps.ru/vds/ FastVPS] - OpenVZ hosting, ISPmanager, Hetzner, MayFlower.&lt;br /&gt;
* [https://lepus.su/vps.html Lepus] - OpenVZ hosting, SSD, ISPmanager free, Hetzner.&lt;br /&gt;
* [http://www.hts.ru/vds/ HTS] - OpenVZ hosting, ISPmanager, Linux VPS hosting based on OpenVZ in Moscow.&lt;br /&gt;
* [https://selectel.ru/services/vds/ Selectel] - OpenVZ hosting.&lt;br /&gt;
* [https://galaxydata.ru/root-server/ GalaxyData] - Virtuozzo Containers in Cloud Storage.&lt;br /&gt;
* [http://hosterbox.ru/servers/ Hosterbox.ru] - Managed VPS hosting. Based on OpenVZ + SolusVM + ISPmanager.&lt;br /&gt;
&lt;br /&gt;
== Singapore ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://conceptlane.com/?t=hostingservices#ratesvps ConceptLane Pte Ltd] - OpenVZ VPS on dual octa-core AMD Opterons running Debian Wheezy 7, custom control panel with bandwidth graphs, reboot/reinit and web-based VNC access.&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [http://www.qoxy.com/vps QOXY.com] Affordable and Reliable OpenVZ VPS Hosting in a Singapore Data Center.&lt;br /&gt;
* [http://www.secureax.com/ SecureAX Pte Ltd] - Singapore Premium Internet Solution Provider&lt;br /&gt;
* [http://www.planettel.com.sg PlaNetTel] - Affordable and customised OpenVZ containers across 3 data centers - contact Thomas Festus at +65-66936881. [http://pve.proxmox.com/wiki/User:Apmuthu#Squeeze_based_Templates Sponsors OpenVZ Container Template]s for the Open Source community.&lt;br /&gt;
* [http://www.vpsfast.us/singapore-vps VPSFast] - VPS Provider with good prices in Singapore.&lt;br /&gt;
&lt;br /&gt;
== Serbia ==&lt;br /&gt;
* [https://www.skyhosting.rs/en/vps-servers SkyHosting] - Fast Linux OpenVZ VPS SSD Hosting with SolusVM control panel.&lt;br /&gt;
* [https://www.ninet.rs/en/vps-servers NiNet Company] - Linux OpenVZ VPS servers. Well known VPS hosting company from Serbia with their own data center&lt;br /&gt;
* [http://www.suonline.net SuOnline.Net ISP] - Linux OpenVZ VPS servers, Docker enabled !!!&lt;br /&gt;
&lt;br /&gt;
== South Africa ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.host1plus.com/ Host1Plus] - Local South African servers hosted in Johannesburg. OpenVZ VPS servers starting from $3.00 per month.&lt;br /&gt;
* [http://www.vps.co.za/ VPS.CO.ZA] - South Africa's oldest VPS provider. Local South African servers with SolusVM control panel. OpenVZ, Xen and OnApp Cloud.&lt;br /&gt;
* [http://247hosting.co.za/vpshosting.php 247Hosting] - OpenVZ virtual servers locally in South Africa with SolusVM control panel. cPanel option available!&lt;br /&gt;
* [http://www.SoftDux.co.za/ SoftDux] - OpenVZ virtual servers based America &amp;amp; South Africa. All VPS's come with cPanel or Plesk control panels. XEN VPS's also available.&lt;br /&gt;
* [http://www.clickworks.co.za/ Clickworks] - OpenVZ / Xen VPS servers hosted in RSA. Backed by Solusvm control panel.&lt;br /&gt;
* [http://www.elitehost.co.za/ Elite Host] - OpenVZ virtual servers based in America &amp;amp; South Africa. All VPS's come with cPanel and unlimited bandwidth.&lt;br /&gt;
* [http://www.telasera.com/ Telasera] - OpenVZ VPS servers hosted in South Africa. Supermicro Servers powered by Intel Xeon with 24/7 Support.&lt;br /&gt;
&lt;br /&gt;
== Spain ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.actiu.net/pro/ Actiu informatica]&lt;br /&gt;
* [http://www.corpresa.com/servidores-virtuales.html Corpresa Hosting] - Tiene algún proyecto entre manos y un plan de hosting no le hes sufuciente y un servidor dedicado no está dentro de su presupuesto?, una solución de VPS a medida será la que cubrirá todas sus necesidades.&amp;quot;&lt;br /&gt;
* [https://www.datomedia.es Datomedia] - Cloud alta disponibilidad powered by Virtuozzo 6 y Servidores VPS bajo openvz y kvm.&lt;br /&gt;
* [https://www.evidaliahost.com/vps/ EvidaliaHosting] - Servidores VPS totalmente configurados con panel de gestión Plesk 12.5, garantía de devolución de 30 días y posibilidad de discos SSD.&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
* [https://ginernet.com/vps-ssd.php GINERNET] - Servidores VPS alojados en España desde 1.99€/mes.&lt;br /&gt;
&lt;br /&gt;
== Sweden ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.admax.se/vps/ Admax] - Admax offers enterprise grade virtual servers with great pricing. Custom control panel, API, remote access &amp;amp; more.&lt;br /&gt;
* [https://www.acon.se/vps Acon VPS Server] - VPS Server and Dedicated server provider in Sweden.&lt;br /&gt;
* [https://www.glesys.com/vps.php GleSYS] - VPS Provider with a great control panel and good prices&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides the highest quality SSD VPS in Stockholm, Sweden. Based on completely pure SSD in RAID-10 and delivering extremely high network &amp;amp; hardware performance along with reliability.&lt;br /&gt;
* [https://www.nametyper.com NameTyper] - VPS and Shared hosting provider. Customize your own OpenVZ Container with 1-12 cores running on SSD and ECC RAM. &lt;br /&gt;
* [https://virtualcenter.se VirtualCenter] - The first Cloud provider with SSD VPS in Sweden. Offer enterprise class hardware and network infrastructure&lt;br /&gt;
* [http://www.vpsfast.us/sweden-vps VPSFast] - VPS Provider with good prices in Sweden.&lt;br /&gt;
&lt;br /&gt;
== Switzerland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
* [http://www.vpsfast.us/switzerland-vps VPSFast] - VPS Provider with good prices in Switzerland.&lt;br /&gt;
&lt;br /&gt;
== Tanzania==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.aptus.co.tz/ Aptus Solutions] - OpenVZ / SolusVM VPS Servers located in Dar es Salaam - 100meg to TIX. CentOS &amp;amp; Ubuntu.&lt;br /&gt;
&lt;br /&gt;
== UK ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.34sp.com/ 34SP.com] - We're a UK based web hosting company, bridging the gap between sophisticated hosting solutions &amp;amp; affordable prices&lt;br /&gt;
* [http://www.AceShells.com/ AceShells] - Fast, stable, high quality UK based virtual private servers from just £5 a month, operating since 2001&lt;br /&gt;
* [http://www.AtlanticServers.com/ Atlantic Servers] - Affordable VPS, stable, high quality VPS, UK based Data Centre&lt;br /&gt;
* [https://awebhosting.uk/ AWebHosting.uk] VPS hosting offered by [https://awebsolutions.uk/ AWEBSOLUTIONS LIMITED] reliable UK hosting provider located in London, UK and Hosted in UK DataCentre.&lt;br /&gt;
* [http://www.BargainVPS.co.uk/ BargainVPS] - UK / US / EU Instant setup VPS - We have some great Linux &amp;amp; Windows Bargain VPS packages on offer for you here all available Fully Managed.&lt;br /&gt;
* [http://www.cheapvps.co.uk/ CheapVPS] - CheapVPS provide cheap, UK based OpenVZ VPS servers. Hosted on high end hardware, in a top UK datacenter backed up with 24/7/365 support. Choice from a wide range of Linux distros. OpenVZ VPS managed with SolusVM.&lt;br /&gt;
* [http://www.chilliserver.com/ Chilliserver] - Affordable plans starting from just £3.99, not oversold. RHEL6 Kernel with VSwap, TUN/TAP/FUSE and ACL support enabled. SolusVM control panel with custom snapshot system and rescue system. Based in a European data Centre with UK based support.&lt;br /&gt;
* [http://www.cislondon.co.uk/virtual-private-servers/ Commercial Internet Solutions] - CIS provides premium hosting at competitive rates, focused on Small Businesses within the M25 orbital. Hosting is on Dual Quad core Intel Xeon supermicro servers in Tier 4 datacenters around London.&lt;br /&gt;
* [http://www.datacorporate.co.uk/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [http://www.DubHosting.co.uk/ DubHosting] - DubHosting started in 2004 has been providing cost effective hosting to clients world wide. Fully managed OpenVZ servers based in Europe &amp;amp; US are one of their many strong points. They can provide you with a dedicated server and install openvz allowing you to sell your own vps servers. Their servers are located at UKGrid in Manchester with 24/7/365 support&lt;br /&gt;
* [http://www.europhase.net/virtual-private-servers/ Europhase UK Limited, UK VPS] - OpenVZ VPS Hosting, Virtual Dedicated Servers, UK VPS hosted at multiple UK datacentres from £4.99&lt;br /&gt;
* [http://www.farbyte.uk/vps Farbyte UK VPS] - UK based OpenVZ VPS and shared web hosting services&lt;br /&gt;
* [http://www.fdqwholesale.co.uk FDQ Wholesale] - UK based hosting services&lt;br /&gt;
* [http://www.hadrill.org.uk Hadrill Online] - Fully managed hosting with unlimited bandwidth. Quotes available through contact form.&lt;br /&gt;
* [http://www.infrenion.com./uk_vps_hosting.html Infrenion Networks UK] Cheap, economical and reliable web hosting solutions, VPS based on the openVZ platform. You can host any YouTube Clone scripts with free FFMPEG setup on our vps servers. Also offers with a choice of selecting DataCenter.&lt;br /&gt;
* [https://www.laws-hosting.co.uk/vps-hosting.php Laws Web Hosting] - Laws Web Hosting offers OpenVZ VPS Hosting with packages starting from £5.50/m that will cater for anyone. We have OpenVZ VPS hosting solutions, and come with moderate DDoS protection.&lt;br /&gt;
* [http://www.letstalkdigital.com/index.php?option=com_content&amp;amp;view=article&amp;amp;id=73&amp;amp;Itemid=65 LetsTalkDigital VPS Hosting] - LetsTalkDigital.com offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from $14.99. Virtual Private Server(VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://www.minivps.co.uk miniVPS] miniVPS offers VPS hosting solutions with nodes located in UK, utilising openvz/solusvm with future locations of USA and UK. &lt;br /&gt;
* [https://www.first2host.co.uk First2Host Cheap VPS] - Intel Xeon E5-2630v3 OpenVZ VPS Servers. Don't be defined by a pre-made VPS plan. Create your own VPS Plan by assigning the resources that you require. SATA, SSD or NVMe storage 100 MBPS, 250 MBPS, 500 MBPS, 1GBPS speeds and free cPanel licenses.&lt;br /&gt;
* [http://www.phurix.co.uk/ Phurix] - A UK based web solutions company that provides you with reliable hosting at extremely affordable prices, VPS server virtualization using OpenVZ.&lt;br /&gt;
* [http://www.qualityservers.co.uk Quality Servers] - Affordable OpenVZ virtual servers based in the UK and USA. Choice of control panels and management options.&lt;br /&gt;
* [http://www.rshosting.co.uk/vps.html RSHosting UK] - Offering the most secure, reliable, stable and fast UK VPS Web Hosting based on OpenVZ architecture. Our Virtual Dedicated Servers are physically hosted on powerfull Quad Core servers located in multiple UK datacentres.&lt;br /&gt;
* [http://www.sharkserve.rs SharkServers] - Low Cost OpenVZ virtual servers in the UK. Choice of control panels and management options. Own Datacentre.&lt;br /&gt;
* [http://www.vpsmachine.co.uk/ vpsMachine] Quality openvz hosting platform with a large choice of customer OS templates.&lt;br /&gt;
* [https://www.webhost.uk.net/vps-hosting.html WebHostUK LTD] - Offers Cheap yet Best UK VPS Web Hosting working on OpenVZ Platform.We offers fully Managed UK VPS with true 24/7/365 days support.All our Servers are located in UK London DC.&lt;br /&gt;
* [http://www.webhostinguk.com/vps/vps-hosting.html Web Hosting UK] - Fully managed OpenVZ VPS Hosting offered on fast and reliable and affordable servers in UK &amp;amp; European datacenter with 24x7x365 days lightning fast support.&lt;br /&gt;
* [http://www.weycrest.co.uk/vps-hosting.php Weycrest VPS] - Low Cost, Stable OpenVZ and Parallels' Virtuozzo Virtual Private Server solutions. London UK Hosted at Coreix with a choice of operating systems, and root and control panel options.&lt;br /&gt;
* [http://www.xilo.net/virtual_private_servers-vps/ XILO] - UK-based hosting with UK-based support. VPS services offered with a choice of cPanel, Webmin and other useful applications, VoIP, SIP, VPN to name a few.&lt;br /&gt;
* [http://www.zxvps.co.uk/ ZxVPS VPS Hosting] - Quality, non-oversold VPS based on the openVZ platform, using SolusVM management panel, VPS from 128mb - 2gb, cpanel, direct admin, kloxo, etc.&lt;br /&gt;
* [http://www.meteorvps.com/ MeteorVPS] - Professional, Non-Oversold amazing VPS plans pretty cheap using SolusVM management, range from 512MB -&amp;gt; 16GB&lt;br /&gt;
* [http://www.chvps.com/ CHVPS] - Switzerland Based VPS, Cheap Pricing with solusVM control panel.&lt;br /&gt;
* [http://domvps.com/ domVPS] - OpenVZ Virtual Servers in the USA, Germany, France &amp;amp; the Netherlands at a low cost.&lt;br /&gt;
* [http://www.gemvps.net/ GemVPS.NET] - UK (Manchester) Based Company, OpenVZ Virtual Servers in the UK &amp;amp; France on Fast nodes.&lt;br /&gt;
* [http://www.rackburst.net/ Rackburst] - UK SSD VPS Hosting with fast UK-based Live Support available from £1.49 per month.&lt;br /&gt;
* [http://www.vpsfast.us/united-kingdom-vps VPSFast] - VPS Provider with good prices in UK.&lt;br /&gt;
&lt;br /&gt;
== Ukraine ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://ekvia.com/ Ekvia] - VDS/VPS based on OpenVZ. Free trial 14 days. Domain registration for VDS/VPS.&lt;br /&gt;
* [http://www.gelihost.com/ Geliar Hosting Solutions] - Fast virtual dedicated servers based on OpenVZ. Geliar Hosting Solutions offering many control panels and other useful services.&lt;br /&gt;
* [http://www.hostpro.ua/ Hostpro.ua] - Full managed OpenVZ servers.&lt;br /&gt;
* [http://www.vpsfast.us/ukraine-vps VPSFast] - VPS Provider with good prices in Ukraine.&lt;br /&gt;
&lt;br /&gt;
== USA ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.a2hosting.com A2 Hosting] is your high-performance [http://a2hosting.com/openvz-vps-hosting OpenVZ VPS Hosting] provider. Design your perfect [http://a2hosting.com/vps-hosting VPS Hosting] account today! Featuring SwiftServers and SSDs with page load speeds up to 300% faster compared to standard drives.&lt;br /&gt;
* [http://www.afterburst.com Afterburst] (Previously FanaticalVPS): affordable unmetered, unmanaged VPS servers in NY.&lt;br /&gt;
* [https://www.asurahosting.com/ AsuraHosting] offers powerful, reliable, and simple OpenVZ VPS to clients. AsuraHosting has a dedicated support team, and quality hosting; Pricing starts at just $5/month!&lt;br /&gt;
* [http://beyondhosting.net BeyondHosting.net] High Performance OpenVZ Virtual Private Servers (VPS)  Tier 1 US Datacenter.&lt;br /&gt;
* [http://buyvm.net BuyVM.net] DDoS Protection, three datacenter locations, Stallion control panel. Affordable quality VPS hosting since 2010!&lt;br /&gt;
* [https://www.binarycpu.com Binary Computer Solutions] has provided OpenVZ based Virtual Private Server hosting for over 5 years.  Network outages are a thing of the past, and oversold services are never heard of here.  Built on solid technology, with infrastructure to match - Binary Computer Solutions will give you hosting you need, without the cost others ask for.  Starting at $30.00/mo.&lt;br /&gt;
* [http://www.bodhost.com/ Bodhost.com] Fast, Reliable and secure web hosting service with 24*7 free customer service.&lt;br /&gt;
* [http://www.buildyourvps.com/ BuildYourVPS.com] mix ‘n’ match your VPS; choose only the bandwidth, RAM, disk capacity, type of IP connection, level server redundancy, and the support/monitoring you want. [http://www.buildyourvps.com/ BuildYourVPS] is the 1st to offer you a highly-customized VPS solution, without making you pay for unused extra features.&lt;br /&gt;
* [https://www.budgetvm.com/openvz-linux-vps.php BudgetVM.com] Each server includes our industry-leading SLA, DDoS protection, 200Gbps networks and 7 * 24-hour customer support.&lt;br /&gt;
* [http://www.byethost.com Byethost.com] offers OpenVZ based VPS Hosting as its main VPS solution, with the hypervm panel. Centos, Debian, Fedora, OpenSuse and Ubuntu Containers are available.&lt;br /&gt;
* [http://cheaperasp.net CheaperASP.Net] provides Quality web hosting on the OpenVZ platform. You also help you get best options at [http://cheaperasp.net/godaddy-1-hosting-free-domain-promo/ affordable] cost.&lt;br /&gt;
* [http://www.chhost.net/vps.htm CH Hosting VPS Hosting] CH Hosting or chhost.net offers OpenVZ based VPS Hosting. 24/7 Support. Upgrade/Downgrade your plan as needed on-the-fly without the risk of downtime. Since 2006. Non-Oversell&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in USA from 1.88EUR/month.&lt;br /&gt;
* [http://www.cloudshards.com Cloud Shards] High Performance, reliable, stable and affordable OpenVZ Virtual Private Servers (VPS) in data centers across the USA.&lt;br /&gt;
* [https://cloudgearhosting.com CloudGear Hosting] - offers OpenVZ hosting in 4 locations across the USA. Including free DDoS Protection and free SSL with cPanel.&lt;br /&gt;
* [http://www.datacorporate.com/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [https://www.delimiter.com/storage-vps/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [https://www.cheapdomainnamesdot.com Domain Host SSL] provides Reliable web hosting with OpenVZ platform Since 2003, Located New York city, Atlanta, Los Angeles. &lt;br /&gt;
* [http://www.DubHosting.com/ DubHosting] - DubHosting started in 2004 has been providing cost effective hosting to clients world wide. Fully managed OpenVZ servers based in Europe &amp;amp; US are one of their many strong points. They can provide you with a dedicated server and install openvz allowing you to sell your own vps servers.&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
* [http://www.evolucix.com/ Evolucix.com] Evolucix offers state of the art, professional, and reliable OpenVZ VPS solutions on top-notch hardware while providing quality support.&lt;br /&gt;
* [http://www.evolvedservers.com Evolvedservers.com] Openvz based vps servers. Hosted in Michigan, USA. 24/7 Support. Hosted in tier-3 and tier-4 datacenter's with multiple redundancies.&lt;br /&gt;
* [http://fastwebhost.com/vps-hosting.html Fastwebhost]: affordable cloud VPS servers using OpenVZ. &lt;br /&gt;
* [http://www.fliphost.net Fliphost.net]: Powerful, affordable instant setup VPS systems. Servers based in Phoenix Az with another location coming soon.&lt;br /&gt;
* [http://www.frontrangehosting.com Front Range Hosting]: SSD Cached KVM &amp;amp; OpenVZ VPS Hosting Prices Start at 2.00/mo, located in Colorado Springs, Colorado.&lt;br /&gt;
* [http://glesys.se GleSYS] is a hosting company specialized in serverhosting. Also offering VPS hosting mainly based on OpenVZ. GleSYS has provided access to server and Cisco hardware for developers from OpenVZ to find problem with VLAN implementation.&lt;br /&gt;
* [http://goodealhosting.com/ GOODEALHOSTING.com] Quality Hosting Solutions! Provides affordable unmanaged/managed VPS based on OpenVZ! start from $10.00, real 24/7 support.&lt;br /&gt;
* [http://gothost.net GotHost.net] Providing OpenVZ based VPS Hosting with SolusVM. All nodes are Quad Core Xeon with RAID-10 for speed and redundancy. Budget plans starting at $7.99.&lt;br /&gt;
* [http://www.greengeeks.com/ GreenGeeks Hosting] VPS Hosting. Dual Intel Xeon 64-Bit CPU's, DDR3 RAM, RAID-10 SSD Storage Arrays. 24/7 Support. cPanel/WHM + more!&lt;br /&gt;
* [http://hostarmor.com HostArmor™] - is best known for low-cost and reliable shared hosting and dedicated servers. Recently the company expanded to offer OpenVZ virtual server plans at 8 worldwide locations, five in the U.S., one in Germany, one in France, and one in the Netherlands. VPS plans start at $13.99/month.&lt;br /&gt;
* [http://www.host4geeks.com Host4Geeks] - Host4Geeks is a premium Fully Managed VPS provider with datacenters across 2 locations in US and in UK. All servers offer a free cPanel license.&lt;br /&gt;
* [http://www.host1plus.com Host1Plus] - OpenVZ based virtual servers in Chicago and Los Angeles. VPS plans start at $2.00 per month.&lt;br /&gt;
* [http://www.hostavps.com HostAVPS] - Providing Fully Managed VPS's on both the West &amp;amp; East Coast.&lt;br /&gt;
* [http://www.hostcolor.com Host Color] - OpenVZ based virtual servers hosted in a Tier 4 class data center based out of South Bend, Indiana. Juniper managed, fully-redundant network with uplinks to Level 3, Cogent and Internap.&lt;br /&gt;
* [http://www.hostigation.com Hostigation] - High resource unmanage VPS hosting solutions.&lt;br /&gt;
* [http://www.hostingrails.com Hosting Rails] offers Rails-targeted OpenVZ VPS Hosting and updated Rails-ready OS images.&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [http://www.hostmist.com Host Mist] features budget OpenVZ VPS hosting from four major cities across the US.&lt;br /&gt;
* [http://www.hostrush.com HostRush] Self managed, ssd vps for business and non business. &lt;br /&gt;
* [http://www.dailyhosting.net hostoople] We offer OpenVZ VPS hosting from Dallas Texas, Starting at $29.95/month &lt;br /&gt;
* [https://hostus.us HostUS] provides unmanaged and managed OpenVZ VPS in Atlanta, Dallas and Los Angeles with custom control panel. A large variety of Linux distros are available. Enjoy 15% off with coupon VPS15OFF.&lt;br /&gt;
* [https://www.hostwinds.com Hostwinds] Affordable managed/unmanaged VPS Solutions.&lt;br /&gt;
* [http://hostsia.com Hostsia] With HOSTSIA Web services, you can get an OpenVZ VPS for only $15.00/mo. Each OpenVZ VPS includes multiple free-of-charge bonuses and offers a 99.9% uptime guarantee. You can also use our charge-free Hepsia CP, which is available with each OS – it permits you to host an unmetered number of domains and comprises heaps of handy tools, which will help you better manage your site and your VPS web hosting account.&lt;br /&gt;
* [http://www.infrenion.com./vps_hosting.html Infrenion Networks] Cheap, reliable and secure VPS hosting solutions, based on the openVZ platform. You can host any YouTube Clone scripts with enhanced support quality round the clock.&lt;br /&gt;
* [http://iniz.com/ INIZ VPS Hosting] INIZ provides affordable VPS Hosting in Los Angeles &amp;amp; New York with high resources at low prices.&lt;br /&gt;
* [https://www.interserver.net/ InterServer Web Hosting] Fast &amp;amp; Reliable VPS - 24x7 Support. 99.9% Up-time, Hosting Since 1999!.&lt;br /&gt;
* [http://www.joinvps.com JoinVPS.com] ISPmanager OpenVZ based VPS hosting. 24/7 Technical Support. Free ISPmanager control panel.&lt;br /&gt;
* [http://www.lovevps.com LoveVPS] Budget VPS provider starting at $5.99/month located in the US with Xeon nodes.&lt;br /&gt;
* [http://www.letstalkdigital.com/index.php?option=com_content&amp;amp;view=article&amp;amp;id=73&amp;amp;Itemid=65 LetsTalkDigital VPS Hosting] LetsTalkDigital.com offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from $14.99 Virtual Private Server(VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://lylix.net LYLIX] offers affordable VPS hosting with a choice of eight different Linux distributions, dedicated VPS hosting, and specializes in Asterisk/VOIP based hosting including Trixbox, AsteriskNow, Elastix, and PBX-in-a-Flash.  Popular choice for unmanaged IP-PBX services; entire infrastructure built on a High-availability (HA) network across three regional NOCs.&lt;br /&gt;
* [http://www.micfo.com Micfo.com] offers VPS hosting services for both Linux VPS hosting and Window VPS hosting on affordable price combined with world-class 24x7x365 support.&lt;br /&gt;
* [http://www.neostreams.info/neoshop/cart.php?gid=9 nEo Stream Services] Offer's Top Quality OpenVZ Servers, Starting at $18.95 per month! SolusVM Control panel , 7 day Money Back Guarantee , 24x7 Professional Support.&lt;br /&gt;
* [http://pogiweb.com/vps/ PogiWeb LLC] Instant and free setup. Includes SolusVM control panel and free level 1 support during first month.&lt;br /&gt;
* [http://www.theserverexperts.com TheServerExperts.com] TheServerExperts VPS line is the ideal solution for clients who require the control of a dedicated server matched with the affordability and simplicity of a traditional shared hosting account.&lt;br /&gt;
* [http://thenynoc.com New York NOC] affordable Linux VPS hosting out of New York and Chicago. Plans as low as $5 a month and are backed by a redundant infrastructure and 24/7 support.&lt;br /&gt;
* [http://railsplayground.com RailsPlayground.com] Ruby on Rails VPS with ready to go Rails images with the LxAdmin control panel&lt;br /&gt;
* [http://www.raidlogic.net RaidLogic.NET] RaidLogic.NET offers OpenVZ based Linux VPS out of multiple facilities across the United States, including Miami, Los Angeles, and Chicago. Starting as low as $3.95/month.&lt;br /&gt;
* [http://www.ramhost.us RAM Host] RAM Host offers OpenVZ based Linux VPS out of multiple facilities across the United States, including Atlanta, Kansas City, and Phoenix.&lt;br /&gt;
* [http://www.reconhosting.com Recon Hosting] Recon Hosting offers affordable OpenVZ VPS solutions where you get Quality Hosting at a Fraction of the price. Instant setup with the latest Operating System templates including cPanel.&lt;br /&gt;
* [http://www.rokabear.com Rokabear] Rokabear offers OpenVZ Linux VPS, Dedicated Server, and Colocation. All Hardware setup in High Availability mode including raided drives and redudnant power and network connections. With multiple upstream providers, Rokabear's connectivity is fast and reliable! Rokabear supports LAMP, Openvpn, and Asterisk configurations. VPSes start at $7.99!&lt;br /&gt;
* [https://www.rosehosting.com RoseHosting] offers OpenVZ Linux virtual servers equipped with Enterprise Grade SSD drives. All hosting plans are fully-managed with FREE 24/7 support, FREE website migration, FREE weekly backups and FREE server monitoring included.&lt;br /&gt;
* [http://www.rshosting.com/vps.html RSHosting.com] RSHosting offers the most secure, reliable and stable VPS - Virtual Private Servers based on OpenVZ architecture, powered by the most professional and qualified 24/7 lightening fast support.&lt;br /&gt;
* [http://www.servercomplete.com Server Complete, LLC] Server Complete offers OpenVZ based Linux VPS out of multiple facilities across the United States, including Atlanta, Dallas, and Chicago.&lt;br /&gt;
* [http://www.servergrove.com ServerGrove] uses OpenVZ as the main virtualization platform for its state of the art VPS hosting services.&lt;br /&gt;
* [http://serverswarm.com ServerSwarm] provides stable, affordable, high performance OpenVZ virtual private servers.&lt;br /&gt;
* [http://Sharktech.net Sharktech] provides custom OpenVZ solutions DDOS-protected up to 100Gbps.&lt;br /&gt;
* [http://www.silverrack.com/ SilverRack VPS Hosting] - SilverRack provides affordable VPS hosting using the OpenVZ platform.&lt;br /&gt;
* [http://www.soficol.com/ Soficol] Offers Enterprise OpenVZ based VPS, hosted on a clustered infrastructure and redundant network. Easy to use user management and instant setup.&lt;br /&gt;
* [http://www.spectrohost.com/ Spectro Host] - Offers performance VPS Servers running openvz. Always the most resources and never over committing OpenVZ nodes.&lt;br /&gt;
* [http://www.budgetvds.com/ BudgetVDS] - Offers VPS Servers running openvz we've been in business for 2 years now using openvz platform.&lt;br /&gt;
* [http://www.syera.net/ Syera Networks] Unmetered VPS From $18.88/M, 24/7 Support, OpenVZ/HyperVM, Instant Setup!, Free 1Gbps Upgrade with Coupon: syera1G&lt;br /&gt;
* [http://www.synapseglobal.com/voip_vps.html SynapseGlobal.com] Elastix, Trixbox, PBX in a Flash and Asterisk VPS - OpenVZ based Asterisk VOIP servers with 14 Tier 1 premium bandwidth providers.&lt;br /&gt;
* [http://www.tektonic.net TekTonic] provides VPS hosting services using both Virtuozzo and OpenVZ technology.&lt;br /&gt;
* [http://www.tigerservers.com/ TigerServers] - Provides affordable managed VPS based on OpenVZ. Servers located in Chicago, Illinois&lt;br /&gt;
* [http://www.tocici.com/ TOCICI VPS Hosting Services] Since 1995 TOCICI has offered web hosting services, with 24/7 support commitments and a strong non-oversell policy. Our purpose-built hosting infrastructure has serviced many organizations for over a decade. Offering OpenVZ VPS, data center colocation, and equipment leasing options, visit our website for prices and more details.&lt;br /&gt;
* [http://www.ultravps.com UltraVPS] UltraVPS offers managed and unmanaged OpenVZ-based VPS hosting utilizing dual CPU hardware nodes with redundant, high-performance RAID-10 storage.  UltraVPS offers VPS servers with many popular control panel options and turn-key applications.&lt;br /&gt;
* [http://www.vpsfx.com VPSFX] VPSFX.com offers OpenVZ VPS, data center colocation, and dedicated servers.&lt;br /&gt;
* [http://www.Webhost.US.Com/linuxvps.html US Web Hosting]  Webhost.US.Com offers powerful GUI based VPS management system with full OpenVZ, Xen Paravirtualization and Xen HVM support.All our Virtual Private servers are fully Managed with 99.9% uptime and 24/7 top notch support.&lt;br /&gt;
* [http://unixservice.com Unixservice/unxsVZ] Low cost OpenVZ ONLY hosting we specialize in Mail, DNS and RADIUS multiple container hosting. At the world famous Market St. San Jose, CA Silicon Valley datacenter. Ping times from your containers to local yahoo and google sites guaranteed single digit ms times. Your containers are backed up at 4 local and 2 remote locations. Contact supportgrp at unixservice dot com.&lt;br /&gt;
* [http://www.vogenic.xyz Vogenic: Cloud Services] If you are searching for an upgrade to the shared hosting service, then you should consider our OpenVZ or KVM VPS hosting services.&lt;br /&gt;
* [http://vpslink.com VPSLink.com] provides virtual private server hosting on the OpenVZ platform.&lt;br /&gt;
* [http://www.vpsspeed.com/ VPSSpeed] - VPSSpeed provides unmanaged OpenVZ based VPS hosting with over 50 OS Templates, real 24/7/365 support and fast US servers. No overselling.&lt;br /&gt;
* [http://vpsnoc.com VPSNOC] offers unmanaged vps hosting based in the USA utilizing OpenVZ hypervisor behind an in-house VPS control panel.&lt;br /&gt;
* [https://www.waveride.at/ Waveride] Waveride, an EDIS company, offers budget full gigabit OpenVZ + solusVM VPS in Austria, USA and the Netherlands&lt;br /&gt;
* [http://www.webappcabaret.com WebAppCabaret] provides VPS solutions for hosting applications. We offer OpenVZ with cPanel or Plesk for web site management; and NGASI Universal App Manager for deploying and managing JAVA and RAILS applications.&lt;br /&gt;
* [http://www.wirenine.com/vps-hosting/ WireNine.com VPS Hosting] Low cost fully managed and unmanaged OpenVZ based VPS Hosting with SAS 15k enterprise drives in high-performance RAID-10 storage.&lt;br /&gt;
* [http://www.zoidial.com/ Zoidial Hosting and VPS] - offers VPS and Virtual Dedicated Server solutions utilizing OpenVZ.  In business since 1998, Zoidial Incorporated is a small hosting provider focused on being security conscious, proactive, and offering a positive client experience.&lt;br /&gt;
* [http://zensix.com ZenSix Hosting] Cheap OpenVZ based VPS accounts with the SolusVM control panel.&lt;br /&gt;
* [http://zigothosting.com Zigot Hosting] Affordable and Reliable OpenVZ based VPS's within the SolusVM control panel.&lt;br /&gt;
* [http://www.vpsfast.us/usa-vps VPSFast] - VPS Provider with good prices in USA (Los Angeles, New Jersey, New York, Seattle, Washington, Dallas, Chicago, Atlanta, Ashburn, Miami, Piscataway).&lt;br /&gt;
* [http://www.xarixlite.com Xarix Lite] - offers OpenVZ hosting in Charlotte, SC. OpenVZ plans starting at $2.50/mo&lt;br /&gt;
&lt;br /&gt;
== Vietnam ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://appvz.com AppVZ.com] (www.appvz.com) is a leading web solution provider offering domain, hosting, reseller and VPS hosting packages from 2009. Just recently, the company has offered discount packages where customers can avail managed and un-managed VPS for only $9.5 per month.&lt;br /&gt;
&lt;br /&gt;
= Hosting providers comparison =&lt;br /&gt;
&lt;br /&gt;
It is hard to compare all virtual private server offers provided by different hosting providers.&lt;br /&gt;
Sites below can help you with it.&lt;br /&gt;
&lt;br /&gt;
* [https://www.cheapvpsservers.co.uk/ Cheap VPS Servers]&lt;br /&gt;
* [https://www.hostingmyths.com/ Hosting Myths]&lt;br /&gt;
* [https://www.thehostbay.com/ TheHostBay]&lt;br /&gt;
* [https://www.exoticvps.com/ Exoticvps]&lt;br /&gt;
* [https://reviewsquirrel.com/web-hosting-reviews/ Review Squirrel]&lt;br /&gt;
* [http://wphostninja.com/5-websites-to-follow-to-buy-free-vps-hosting/ Freevpshosting]&lt;br /&gt;
* [http://lowendstock.com/ Lowendstock]&lt;br /&gt;
* [https://www.websitehostingrating.com/ Best Web Hosting Services]&lt;br /&gt;
* [http://serverbear.com/compare?Sort=RAM&amp;amp;Order=asc&amp;amp;Server+Type=VPS&amp;amp;Monthly+Cost=-&amp;amp;HDD=-&amp;amp;RAM=-&amp;amp;Virtualization=OpenVZ Serverbear]&lt;br /&gt;
* [http://wphostninja.com/black-friday-web-hosting-deals/ Black Friday Web Hosting]&lt;br /&gt;
* [https://www.comparethehosts.com/vps-web-hosting.htm VPS Web Hosting Reviews]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
http://vpscomp.com&lt;br /&gt;
http://reviewsignal.com/webhosting/compare/&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= See also =&lt;br /&gt;
&lt;br /&gt;
* [[Partners]]&lt;br /&gt;
* [[Download mirrors]]&lt;br /&gt;
* [[VPS vs Dedicated]]&lt;/div&gt;</summary>
		<author><name>Vvs</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.openvz.org/index.php?title=Hosting_providers&amp;diff=23309</id>
		<title>Hosting providers</title>
		<link rel="alternate" type="text/html" href="https://wiki.openvz.org/index.php?title=Hosting_providers&amp;diff=23309"/>
		<updated>2020-05-27T18:14:11Z</updated>

		<summary type="html">&lt;p&gt;Vvs: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''OpenVZ is free and open implementation of Virtuozzo containers for Linux.&lt;br /&gt;
Don't forget to keep [[testimonials|testimonial]] and [[donate]] to OpenVZ.'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
OpenVZ makes for a great hosting platform for VPS hosting. The providers below offer VPS services using OpenVZ.&lt;br /&gt;
&lt;br /&gt;
[[File:UsageLocation.svg]]&lt;br /&gt;
&lt;br /&gt;
= OpenVZ hosting providers =&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- @@@@@@@@@@@@@@@@@@@@@@@&lt;br /&gt;
&lt;br /&gt;
IF YOU EDIT THIS PAGE,  PLEASE OBEY TO THE FOLLOWING RULES:&lt;br /&gt;
&lt;br /&gt;
1. Keep your record on ONE line&lt;br /&gt;
2. Keep the list of providers alphabetically sorted, DO NOT insert your record on top.&lt;br /&gt;
3. Keep the list of countries alphabetically sorted as well.&lt;br /&gt;
&lt;br /&gt;
     @@@@@@@@@@@@@@@@@@@@@@@@ --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Andorra ==&lt;br /&gt;
* [https://www.actiu.net/pro/ Actiu informatica] amb servidors dins i fora del principat.&lt;br /&gt;
&lt;br /&gt;
== Argentina ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.fulltech.com.ar/ Full Tech Solutions] Specializes in the virtualization of OpenVZ &amp;amp; Virtuozzo containers, installed in the Full Tech Solutions Data Center located in Villa Elisa, Entre Rios Argentina.  It also offers services hosted in the United States, Netherlands and Germany&lt;br /&gt;
* [http://www.g2khosting.com/ G2K Hosting] offer OpenVZ containers with high level hardware technology from 25 US with Control Panel, various Linux Dists and full support.&lt;br /&gt;
* [https://hostingplus.com.ar/ HostingPlus Argentina] provide OpenVZ containers at our own datacenter in South America with triple internet provider. Starting from  us20/month&lt;br /&gt;
* [https://ibumu.com/ Ibumu] Best containers for wordpress starting from $5.5.&lt;br /&gt;
* [http://www.ihserver.net/ IHServer] Specialized virtualization on OpenVZ containers at Gigared datacenter. We have in Argentina one of the better fiber connection to the US, but also provides services from LSTN in Texas.&lt;br /&gt;
* [https://www.infranetworking.com.ar/ Infranetworking] All our Cloud VPS container solutions for Argentine customers are powered by the all mighty OpenVZ virtualization software.&lt;br /&gt;
* [https://www.neolo.com/ Neolo] provide OpenVZ containers at our own datacenter in South America with double internet provider. Choose your Linux OS and apps. Full support.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [http://www.wiredhosting.com.ar/ WiredHosting] offer XEN and OpenVZ containers with SSD drives, cloudflare security and weekly backups to protect your information. Phone and Helpdesk support. &lt;br /&gt;
&lt;br /&gt;
== Australia == &lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.auhost4u.com/ AUHost4u] - VPS Solutions provided from our D.C. in Sydney.&lt;br /&gt;
* [https://www.conetix.com.au/ Conetix Hosting] Specialising in business grade, fully managed Virtuozzo containers with Virtuzzo Cloud Storage. 100% Australian owned and operated. Brisbane based DC with Enterprise Dell servers.&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides self-managed OpenVZ based SSD VPS located at Equinix SY3 in Sydney, one of the best and well-connected datacenters in the region.&lt;br /&gt;
* [http://www.vpsfast.us/australia-cloud-server VPSFast] - VPS Provider with good prices in Australia.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Austria ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
* [https://kapper.net/ kapper.net] kapper.net offers OpenVZ and Virtuozzo (and other HyperVisors) based server-solutions with kind support and 24x7 maintenance.&lt;br /&gt;
* [https://mdhost.eu/vserver.php MDHost.eu] New Hosting Provider with nice Prices and many Server locations. Austria, Germany, France and more.&lt;br /&gt;
* [https://www.snb.at/ SNB] offers OpenVZ containers and support's also existing vm's in customers environment&lt;br /&gt;
* [https://www.waveride.at/ Waveride] Waveride, an EDIS company, offers budget full gigabit OpenVZ + solusVM VPS in Austria, USA and the Netherlands&lt;br /&gt;
* [http://www.vpsfast.us/austria-cloud-server VPSFast] - VPS Provider with good prices in Austria.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Brazil ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.datacorporate.com.br/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [http://www.globalmedia.com.br/ GlobalMedia] We offers OpenVZ containers hosted on a very fast network with fast setup. Ubuntu, Debian, CentOS.&lt;br /&gt;
* [http://www.host1plus.com.br/ Host1Plus] Servers hosted in São Paulo. We offering reliable and secure OpenVZ VPS Servers with 99.99% up-time, starting from $5.00 per month.&lt;br /&gt;
* [http://www.ipdeck.net/ IPDECK] VPS Linux server from R$15,00/month! Fully customizable according to your needs.&lt;br /&gt;
* [https://www.quantivehost.com.br/ QuantiveHost] VPS Linux with 99.99% uptime. Prices starting from R$ 29,35.&lt;br /&gt;
* [https://www.elevahost.com.br/ Eleva host] Server hosted in Brazil. The best support.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [https://www.ferenz.com.br/ Ferenz Networks] VPS Linux with best support. Prices starting from R$ 29,90.&lt;br /&gt;
&lt;br /&gt;
== Bulgaria ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.cloudhostinghub.com Offshore VPS Hsoting] CloudHostingHub.com is an [https://www.cloudhostinghub.com Cloud Offshore VPS Hosting] located in Buglaria. They provide both OpenVZ and KVM virtualization. CloudHostingHub.com is known for the high privacy protection , performance and stability.&lt;br /&gt;
* [https://www.cyberhour.com CyberHour.com] CyberHour.com is an [https://www.cyberhour.com offshore VPS hosting] provider located in Europe. The provide blazing fast servers and premium Bandwidth of 200Mbps. With high privacy protection.&lt;br /&gt;
* [https://www.linuxssdvps.com Bulgaria VPS] Linux SSD VPS is an [https://www.linuxssdvps.com offshore VPS hosting] provider located in Sofia, Bulgaria. Privacy is very respected and anonymous registrations are allowed, as well as payments via Bitcoin / PayPal.&lt;br /&gt;
* [http://www.webuzo.net Bulgaria VPS] Webuzo Network is an offshore SSD VPS hosting provider located in Bulgaria. Privacy is very respected and anonymous registrations are allowed, as well as payments via Bitcoin / PayPal.&lt;br /&gt;
* [https://vpsbg.eu/en Bulgaria VPS] VPSBG.eu is an offshore SSD VPS hosting provider located in Sofia, Bulgaria. Privacy is very respected and anonymous registrations are allowed, as well as payments via Bitcoin.&lt;br /&gt;
* [http://www.bul.net/ Bul.net] Provides OpenVZ based VPS, perfect user/VPS management via [http://ispsystem.com VDSManager]. Instant creation after online payment. Debian/Ubuntu/CentOS with ISPManager Control panel. Optimal price policy.&lt;br /&gt;
* [http://www.cointech.eu/vps-hosting/ CoInTech] provides OpenVZ based VPS containers, free webmin managment. Containers can be CentOS, Slackware, Ubuntu, custom or our special [http://www.mandriva.com Mandriva Linux] container with own [http://mandriva.cointech.net repository].&lt;br /&gt;
* [http://www.rax.bg/ RAX.bg] Offers OpenVZ based VPS, hosted on a clustered infrastructure and redundant network. Easy to use user management, Instant setup, CentOS (OS).&lt;br /&gt;
* [http://www.jump.bg/ Jump.bg] Provides OpenVZ VPS servers hosted on a redundant network which provides a very easy to manage platform for all clients which gain instant access to their OS ( Ubuntu, CentOS , Debian etc ... )&lt;br /&gt;
* [https://www.fitvps.com/ FitVPS.com] Offers affordable and reliable OpenVZ based VPS in Varna, Bulgaria. Own data center, own multihomed network, with SLA. Instant automatic setup, SolusVM control panel.&lt;br /&gt;
* [http://www.qhoster.com/ QHoster.com] Instant activation OpenVZ VPS in UK, USA, Germany, France and Switzerland. Both 32/64 bit OpenVZ OS VPS templates : CentOS 5/6, Debian 6/7, Ubuntu 12/13.&lt;br /&gt;
* [https://www.verdina.net Verdina.NET] Verdina.net offers dedicated hosting services, provided by powerful dell hardware. Servers are located in Telepoint Datacenter, a Tier 3 DC located in Sofia, Bulgaria.&lt;br /&gt;
* [https://www.vps.ag/ VPS.AG] Affordable and reliable OpenVZ VPS based in Sofia, Bulgaria. Instant setup and 24/7 support.&lt;br /&gt;
* [http://www.vpsfast.us/bulgaria-vps VPSFast] - VPS Provider with good prices in Bulgaria.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Canada ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://4goodhosting.com/linux-vps-hosting 4GooodHosting] - Canadian OpenVZ VPS Servers, Starting from  $18.99/month SSD,. Canada VPS hosting in three different Canadian Data Centers with nightly backups.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [https://whc.ca/canadian-cloud-servers Web Hosting Canada Cloud Servers] - Powerful Cloud servers powered by OpenVZ and located in Canadian datacenters, with fast RAID-10 storage, fully managed with cPanel.&lt;br /&gt;
* [http://compevo.com compevo Clustered VPS Server Hosting Provider] - We offer clustered VPS Servers to avoid downtime and dataloss. Our network and service is second to none and is used by businesses around the world.&lt;br /&gt;
* [http://www.datacorporate.ca/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [https://www.delimiter.com/storage-vps/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [https://www.miditech.com/ MidiTech Hosting Canada] VPS hosting offered by MidiTech Canada are powered by VMware, . Fully Managed VPS with control panels&lt;br /&gt;
* [http://www.gotekky.com Gotekky Cloud VPS Hosting] High quality Cloud VPS packages powered by our own infrastructure and network in Toronto. Scalable from our $5/mo plan all the way to your own dedicated cloud server. Based on OpenVZ and our own proprietary panel.&lt;br /&gt;
* [https://gigebox.com GIGEBOX.COM] GIGEBOX are expert providers of secure business hosting services, we operate high-performance professional servers, specially designed for businesses, powered by the Intel(R) Xeon(R) Hexa-Core CPU Processors and 128 GB DDR3 minimum RAM. Enjoy high availability, performance and security for multiple uses.&lt;br /&gt;
* [http://www.letstalkdigital.com/index.php?option=com_content&amp;amp;view=article&amp;amp;id=73&amp;amp;Itemid=65 LetsTalkDigital VPS Hosting] LetsTalkDigital.com offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from $14.99. Virtual Private Server (VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://secure.media-hosts.com/link.php?id=7 Media-Hosts.com] Provides Quality and Scalable OpenVZ based Virtual Private Servers. 100% network uptime guaranteed. Located in Montreal Quebec with 5 Tier1 upstream providers.&lt;br /&gt;
* [http://www.openvz.ca OpenVZ.ca] Canadian Budget VPS Servers on OpenVZ Platform. &lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [http://protoserver.com ProtoServer] Advanced VPS Hosting from $4.95/month. Many pre-installed VPS Templates available (CMS, E-commerce, Web development, Online community, Media streaming, etc.) No bundles or service plans - mix VPS resources as needed and change VPS configuration anytime. Also offering DNS Hosting, E-mail hosting, Domains Registration.&lt;br /&gt;
* [http://www.vistapages.com/vps Vistapages VPS] - IBM &amp;amp; Dell Hardware. MCI/Verizon Backbone. Distros: Centos, Fedora, Debian &amp;amp; more. Full management available. Located in Toronto.&lt;br /&gt;
* [http://vpsville.ca/ VPSVille] - Good network. Good CPU. Good choice of distros: Centos, Fedora, Debian, Ubuntu, Slackware, Gentoo, OpenSUSE, CERN. My favorite OpenVZ provider. [mailto:jak@isp2dial.com John Kelly]&lt;br /&gt;
* [http://solib.ca/services-offerts/hebergement-haute-vitesse/serveurs-vps/ SOLIB Logiciel Libre Québec] Our company offers DDoS protected server solutions including OpenVZ containers. Very high availability and reliability, all our VPS are located in Quebec, Canada.&lt;br /&gt;
* [https://www.host-stage.net/linux-vps/ HostStage - Linux VPS] - Simple, Reliable OpenVZ VPS packed with 1 GBPS port speed, RAID 10 SSD, Intel Xeon CPU, DDoS Protection from $4.95/month&lt;br /&gt;
* [https://undergroundprivate.com/russiaoffshorevps.html  UndergroundPrivate.com] - OpenVZ with highly privacy, offshore , DMCA ignored , high confidence, SolusVM and cPanel, managed and non managed service.&lt;br /&gt;
* [http://www.vpsfast.us/canada-vps VPSFast] - VPS Provider with good prices in Canada.&lt;br /&gt;
* [https://websavers.ca/canadian-vps-hosting Websavers Inc in Halifax] - VZ containers priced by the resource. Resource changes entirely client-level.&lt;br /&gt;
* [https://www.yoorshop.fr/hosting-ssd-vps-usa-canada.php YOORshop SAS] - High performance NVMe SSD Linux VPS in Canada, daily backup included. Starting from €7,49 /month&lt;br /&gt;
&lt;br /&gt;
== Colombia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.datacorporate.co/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [http://www.soficol.com/ Soficol] Offers Enterprise OpenVZ based VPS, hosted on a clustered infrastructure and redundant network. Easy to use user management and instant setup.&lt;br /&gt;
* [https://www.hostingplus.com.co/ Hosting Plus Colombia] provide OpenVZ containers at our own datacenter in South America with triple internet provider. Starting from  us20/month&lt;br /&gt;
* [https://ibumu.com/ Ibumu] Best containers for wordpress starting from $5.5.&lt;br /&gt;
&lt;br /&gt;
== Czech Republic ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://4smart.cz 4Smart.cz] - prepaid, you are charged only by the system resources you use, therefore you can run a VPS for as little as  1 EUR a month if your vps is not resource hungry. Even if you pay  0,50 EUR  month, you still have 3 GB of RAM and 8 cores available to you VPS.&lt;br /&gt;
* [http://www.freecloud.cz FREECLOUD.CZ] - Free OpenVZ VPS Server - own IP, 800Mhz CPU, 512MB RAM, 50Mbits LAN, 10GB HDD, 100GB Traffic - Debian, Ubuntu, Gentoo, Slackware, Fedora, Centos&lt;br /&gt;
* [http://www.hukot.cz Hukot.cz] - OpenVZ VPS Servers starting from 2.92 €, XEON, 1 Gbps uplink, unlimited traffic. Debian, Ubuntu, CentOS, Scientific, SuSe, Fedora, Elastix.&lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [http://www.ultimatehosting.eu UltimateHosting.eu] - OpenVZ VPS Servers starting from $8 with custom configuration - up to 100 GB HDD, 2048 MB RAM, 2 GHz CPU, and unlimited traffic.&lt;br /&gt;
* [http://www.mujhost.net MUJHOST.NET] - OpenVZ VPS Servers starting from 160 Kč, 100Mbps / 1 Gbps uplink, unlimited traffic. Debian, Ubuntu, CentOS ...&lt;br /&gt;
&lt;br /&gt;
== Chile ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.1h.cl/ 1h.cl Vps - Chile] - VPS High Performance with OpenVZ in Chile&lt;br /&gt;
* [http://www.1hosting.cl/ 1hosting Virtual servers - Chile] - VPS Professional with OpenVZ&lt;br /&gt;
* [http://www.dch.cl/ DCH] - DCH.cl Hosting Chile - High Performance VPS Servers with OpenVZ &lt;br /&gt;
* [https://www.dominioweb.net/ Dominioweb] - Premium Hosting and domain registration&lt;br /&gt;
* [http://ecohosting.cl/ EcoHosting.cl Santiago - Chile] - VPS with OpenVZ in Chile&lt;br /&gt;
* [http://www.host.cl/ Host.cl] - Cloud Computing&lt;br /&gt;
* [https://www.hostingplus.cl/ HostingPlus Internet Limitada] - High Performance Vps provider in Chile&lt;br /&gt;
* [https://www.hostname.cl/ Hostname Ltda] - VPS Hosting with Datacenter in Chile&lt;br /&gt;
* [https://www.inc.cl/ INC Internet Limitada] - VPS Hosting provider in Chile&lt;br /&gt;
&lt;br /&gt;
== Denmark ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.vpsfast.us/denmark-cloud-server VPSFast] - VPS Provider with good prices in Denmark.&lt;br /&gt;
&lt;br /&gt;
== Ecuador ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.dedi.space/ DediSpace Telecom] - VPS Servers in Ecuador - USA, France, Germany, Ecuador Datacenter.&lt;br /&gt;
&lt;br /&gt;
== France ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.BargainVPS.co.uk/ BargainVPS] - UK / US / EU Instant setup VPS - We have some great Linux &amp;amp; Windows Bargain VPS packages on offer for you here all available Fully Managed.&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in France from 1.88EUR/month.&lt;br /&gt;
* [http://www.fixweb.com Fixweb] Great managed hosting provider with strong anti ddos solution - openvz only - leader in managed openvz solution with horizontal scaling and high availability&lt;br /&gt;
* [http://www.Freaksol.com/ FreaKs VPS Hosting] Self reliant hosted on independent networks &amp;amp; DC low ping,No restrictions on file types,Unlimited resources,high ram servers &lt;br /&gt;
* [https://galaxyhostplus.com/ovz GalaxyHostPlus] Cheap VPS Hosting based in Roubaix with new 2016 line starts from $2/Month &lt;br /&gt;
* [http://www.harmony-hosting.com Harmony-Hosting] A high performance VPS hosting - The leader in France&lt;br /&gt;
* [https://www.delimiter.com/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [http://www.lws.fr/serveur_dedie_linux.php LWS - Linux VPS ] - Linux VPS Hosting - Only 9.99€/month, Affordable and Secure OpenVZ VPS Servers with 99.99% up-time, web hosting control panel Included. French datacenter&lt;br /&gt;
* [http://www.ovh.co.uk/vps/ OVH VPS] linux from 3€/month, [http://www.ovh.co.uk/vps/vps-cloud.xml windows] from 12€/month.&lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [https://VPSZ.FR VPSZ] VPS Hosting in France. Starting from 2,99€, Unlimited traffic.&lt;br /&gt;
* [http://www.1euro-hosting.eu BEST EU VPS - 1€ Hosting] - Providing reliable and secure OpenVZ VPS Servers with 99.99% up-time, starting from 8€&lt;br /&gt;
* [https://www.shape.host/linux-vps/ Shape Host - Linux VPS] - OpenVZ virtual servers, Instant Linux VPS&lt;br /&gt;
* [https://undergroundprivate.com/russiaoffshorevps.html  UndergroundPrivate.com] - OpenVZ with highly privacy, offshore , DMCA ignored , high confidence, SolusVM and cPanel, managed and non managed service.&lt;br /&gt;
* [https://www.host-stage.net/linux-vps/ HostStage - Linux VPS] - Simple, Reliable OpenVZ VPS packed with 1 GBPS port speed, RAID 10 SSD, Intel Xeon CPU from $4.95/month&lt;br /&gt;
* [https://www.yoorshop.hosting/hosting-vps-ssd-europe.php YOORshop SAS] - High performance NVMe SSD OpenVZ 7 VPS within 13 countries in Europe, Canada and Singapore. Daily backup included. From €7,49 /month&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Germany ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://afterburst.com Afterburst (Previously FanaticalVPS)]: affordable unmetered, unmanaged VPS servers in Germany.&lt;br /&gt;
* [http://www.b2b-hosting.de/vps/ B2B Hosting]: Professional virtual servers for business applications. Performance and reliability at a fair price. Made with OpenVZ.&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in Germany from 1.88EUR/month.&lt;br /&gt;
* [https://www.delimiter.com/dedicated-servers/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [https://galaxyhostplus.com/ovz GalaxyHostPlus] Cheap VPS Hosting based in Frankfurt with new 2016 line starts from  $2/Month&lt;br /&gt;
* [http://hostmist.com/openvz-vps-germany.html Host Mist]: features budget OpenVZ VPS hosting in Germany.&lt;br /&gt;
* [http://www.host1plus.com/ Host1Plus] Servers based in Frankfurt am Main. Offering reliable OpenVZ based VPS servers in Germany starting from $2.50 per month.&lt;br /&gt;
* [http://www.hostingjuice.com/ HostingJuice] The Superioum VPS and Web Hosting provider, low prices - Premium packages.&lt;br /&gt;
* [http://www.ingate.de/managed-server.html Ingate] offers managed servers with openVZ virtualization. located in germany, great support.&lt;br /&gt;
* [http://linevast.de/angebote/linux-openvz-vserver-mieten.html Linevast] Reliable OpenVZ based VPS with fast support, located in germany&lt;br /&gt;
* [https://cp.myvirtualserver.com/?affid=42 MyVirtualServer]: Cheap VPS (OpenVZ/KVM, 5TB Traffic, 10Gigabit), servers located in Frankfurt (best ping, starting 1.99€) good support (en/de) //New Design!&lt;br /&gt;
* [https://www.nogics.com Nogics Technologies]: Affordable VPS based in Germany. Starts from $5.96/mo.&lt;br /&gt;
* [http://www.plambee.de/vserver.php Plambee.de Webhosting]: Powerfull OpenVZ based VPS servers at low cost with hosting in Germany&lt;br /&gt;
* [https://rackset.com/ Rackset Hosting] Managed Dedicated / VPS and Website Hosting services since 2004.&lt;br /&gt;
* [http://www.serverbiz.de/vserver Serverbiz] Powerful VPS at very low prices.&lt;br /&gt;
* [http://www.synapseglobal.com/voip_vps.html SynapseGlobal.com] Elastix, Trixbox, PBX in a Flash and Asterisk VPS - OpenVZ based Asterisk VOIP servers located in Munich Germany.&lt;br /&gt;
* [http://www.vStarVPS.com vStarVPS]: Reliable VPS Hosting at lowest prices, with 99.9% uptime, Premium Unmetered Bandwidth and Custom HDD/RAM of your choice. Instant and FREE Setup. RapidLeech Allowed.&lt;br /&gt;
* [http://whynotavps.com WhyNOTaVPS]: Instant activated VPS SERVERS!!&lt;br /&gt;
* [http://squote.de/index.php?ref=1421485383 SQuote]: SQuote VPS Hosting and more. VPS 1 Core, 1.024MB RAM, 512MB RAM SWAP, 50 GB HDD, 1x IPv4. 3,89EUR/month. For the best VPS SQuote.de&lt;br /&gt;
* [http://www.vpsfast.us/germany-vps VPSFast] - VPS Provider with good prices in Germany.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Guatemala ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.globalnetcafe.com/gnc/menu/hospedaje.htm Global Net Cafe]: Servicios de hospedaje, reseller, vps, colocacion y servidores. Incluyendo OpenVZ.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Hong Kong ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [https://hostus.us HostUS] features unmanaged and managed OpenVZ VPS in Hong Kong as well as 3 USA locations. Unparalleled connectivity to the Asia Pacific. Enjoy 15% off with coupon VPS15OFF.&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides self-managed OpenVZ based SSD VPS in Hong Kong, located at the Pacnet datacenter. &lt;br /&gt;
* [http://vps.timway.com/linux_vps.html Timway VPS Hosting] - Quality, non-oversold hosting provider focused on being security conscious and offering a positive client experience.   Centos, Debian, Fedora, OpenSuse and Ubuntu Containers are available.&lt;br /&gt;
* [http://www.vpsfast.us/hong-kong-cloud-server VPSFast] - VPS Provider with good prices in Hong Kong.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Hungary ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://elin.hu/index.php?menu=8&amp;amp;nyelv=hu&amp;amp;cim=Virtualis-szerver Virtual server] OpenVZ server: 2xX5650 Intel Xeon, 32GB RAM, 15.000rpm SAS disks, 100Mbit/s, unlimited bandwith.&lt;br /&gt;
* [https://www.ivirtual.co/vps-hosting/ iVirtual.co ] OpenVZ Master Server: 2x Intel Xeon @ 3.0GHZ, 64 GB ECC Ram, 15k RPM SAS HDD's, 1Gbit/s Network, Unlimited bandwith.&lt;br /&gt;
&lt;br /&gt;
== Iceland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
&lt;br /&gt;
== Ireland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== India ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://cochinwebhost.in/budget-vps-hosting/ Low Cost VPS Hosting] Fast SSD VPS Server for Hosting Solutions at budget prices with 24x7 Technical Support.&lt;br /&gt;
&lt;br /&gt;
* [http://www.datacorporate.in/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
&lt;br /&gt;
*[http://www.fastwebhost.in/vps-hosting.html fastwebhost VPS Hosting] VPS hosting offered by fastwebhost are powered by ''VPS hosting, virtual server hosting and Linux VPS hosting services''. Fully Managed VPS with control panels.&lt;br /&gt;
&lt;br /&gt;
* [http://www.Freaksol.com/ Freaksol VPS Hosting] Self reliant hosted on independent networks &amp;amp; DC low ping to India,No restrictions on file types,Unlimited resources,high ram servers&lt;br /&gt;
&lt;br /&gt;
* [https://www.geniushost.in Genius Host] Fully managed [https://www.geniushost.in SSD Web Hosting] offered by Genius Host are powered by ''OpenVZ'' With LiteSpeed Web Server &amp;amp; Mariadb.&lt;br /&gt;
&lt;br /&gt;
* [http://www.hioxindia.com/virtual-private-server.php VPS Hosting] Reliable and quality VPS Virtual Private Server Hosting&lt;br /&gt;
&lt;br /&gt;
* [https://www.hostnamaste.com HostNamaste] is your high-performance [https://www.hostnamaste.com/openvz-vps.php OpenVZ VPS Hosting] Provider. Get your perfect [https://www.hostnamaste.com/openvz-vps.php VPS Hosting] account today! Available in [https://www.hostnamaste.com/datacenter-losangeles.php Los Angeles], [https://www.hostnamaste.com/datacenter-dallas.php Dallas], [https://www.hostnamaste.com/datacenter-jacksonville.php Jacksonville], USA,  [https://www.hostnamaste.com/datacenter-france.php France], Europe, [https://www.hostnamaste.com/datacenter-mumbai-pune.php Mumbai], India and [https://www.hostnamaste.com/openvz-vps-moscow-russia.php Moscow], Russia.&lt;br /&gt;
&lt;br /&gt;
* [https://www.hostsoch.in/windows-hosting.html HostSoch Windows Hosting] Windows hosting offered by HostSoch are powered by ''Windows 2012, ASP.NET, MVC, IIS, PHP and More''. 99.9% Uptime, 24/7 Dedicated support guaranteed. &lt;br /&gt;
&lt;br /&gt;
* [https://www.miditech.co.in/ MidiTech VPS Hosting] VPS hosting offered by MidiTech are powered by ''VMware, ''. Fully Managed VPS with control panels. &lt;br /&gt;
&lt;br /&gt;
* [http://www.milesweb.com/vps-hosting.php Milesweb VPS Hosting] VPS hosting offered by Milesweb are powered by ''VMware, OpenVZ''. Fully Managed VPS with control panels. &lt;br /&gt;
&lt;br /&gt;
* [https://www.nogics.com/web/vps-hosting/ Nogics Technologies] Instant provisioning of VPS, VPS starts from $5.96/mo. 30+ OS templates.&lt;br /&gt;
&lt;br /&gt;
* [http://overlineindia.net/vpshosting-p-62.html Overline India VPS Hosting] Fully managed cPanel Installed VPS Hosting with 24x7x365 Live Chat Tech support, powered by OpenVZ&lt;br /&gt;
&lt;br /&gt;
* [http://www.prohosterz.com/linux-vps.php ProHosterZ VPS Hosting] Reliable and quality Virtual Dedicated Servers | Virtual Private Servers | XEN VPS | OpenVZ VPS | Virtual Hosting&lt;br /&gt;
&lt;br /&gt;
* [http://pve.proxmox.com/wiki/User:Apmuthu Ap.Muthu] sponsored by [http://www.gnuacademy.org GNUAcademy], [http://www.planettel.com.sg PlaNetTel] and [http://www.sacollege.net S A College] creates OpenVZ Templates for the Open Source Community and provides hosting in datacenters of clients choice or on site.&lt;br /&gt;
&lt;br /&gt;
* [http://www.servers.co.in/vps/vps_hosting.php Server Web Hosting] Offers Fully Managed OpenVZ VPS Web hosting in India/US/UK at affordable and cheap rates with best hardware quality and customer service 24/7/365 days&lt;br /&gt;
&lt;br /&gt;
* [http://vpsbeach.com VpsBeach Managed Hosting] Fully managed cPanel Installed VPS Hosting with 24x7x365 Live Chat Tech support, powered by OpenVZ&lt;br /&gt;
&lt;br /&gt;
* [http://www.vpsfast.us/india-vps VPSFast] - VPS Provider with good prices in India.&lt;br /&gt;
&lt;br /&gt;
* [http://www.vpshostingindia.net/ VPS Hosting India, Fully Managed Server] A Committed Fully Managed VPS Server for Hosting solution in India, Complete Technical Support assistance with commitment of fast, clustered and most supportive DataCenters.&lt;br /&gt;
* [http://touchstone.hosting/ Touchstone Solutions Private Limited] High-performance Enterprise VPS Hosting in India. One of the highest performing VPS Servers available with cPanel Installed.&lt;br /&gt;
* [http://www.hostitsmart.com/ Host IT Smart] - One of the best VPS Hosting Provider in India with 24X7X365 Customer support.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Indonesia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.herza.id/vps-murah/ Herza.ID] Low Cost OpenVZ Virtual Server, starting from IDR 50.000 / Month with RAID 10 SSD, Unlimited Bandwidth with 1 Gbps IIX &amp;amp; OIXP Connection, and 24/7 Technical Support.&lt;br /&gt;
&lt;br /&gt;
== Iran==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.ehost.ir EHost.ir] - OpenVZ Servers , DUAL XEON Cpus , 12 Gb Ram , 100Mbit Dedicated Connection , SAS HardDisk&lt;br /&gt;
* [http://www.vpsfa.com VPSFa.com] - OpenVZ Servers , DUAL XEON Cpus -  , 24Gb Ram , 1000Mbit Dedicated Connection , SAS HardDisk&lt;br /&gt;
* [https://webramz.com Webramz Host] - With more than 15 years experience in Managed Hosting, Webramz was first vps provider in Iran which used to setup OpenVZ servers. Nowadays we provide wide range of services including CloudLinux based OpenVZ and Managed Vps Servers.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Italy ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
* [http://www.hosting-italia.net hosting italia] - OpenVZ Servers and panel enduser Virtualizor Intel® Core™ i7-920 Quad-Core 48 GB DDR3 RAM - Guaranteed Bandwidth 200 Mbit/s&lt;br /&gt;
* [http://www.vpsfast.us/italy-vps VPSFast] - VPS Provider with good prices in Italy.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Liechtenstein ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
&lt;br /&gt;
== Lithuania ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.cloudlix.com/ CloudLix.com] - Managed and unmanaged OpenVZ virtual servers based on 2.6.32 kernel. Up to 20GHz (Intel SandyBridge) CPU and 10GB RAM. Located in Vilnius and Siauliai.&lt;br /&gt;
* [http://www.databank.lt/ databank.lt] - high-quality professional OpenVZ hosting with cloud computing solutions.&lt;br /&gt;
* [https://www.hostens.com Hostens] - Fast and reliable OpenVZ servers in Lithuania.&lt;br /&gt;
* [https://www.lavavps.lt/ lavavps.lt] - Professional high-quality OpenVZ containers (VPS servers) affordable for everyone. Powerful control panel for VPS management.&lt;br /&gt;
* [https://monovm.com/ monovm.com] - High Quality VPS Hosting Provider&lt;br /&gt;
* [http://www.serveriai.lt/ Serveriai.lt] - Affordable OpenVZ containers on quality HP hardware. Wide choice of virtual dedicated servers up to 8 CPU cores and 8 GB RAM. Full management available. Located in Vilnius.&lt;br /&gt;
* [https://billing.time4vps.eu/?affid=1359 Time4VPS.EU] - Powerful cloud technology based infrastructure will let you build custom virtual machine and pay only for what you really need. Located in Vilnius city.(0.99€/month(2Yr) 512mbRAM, 1TB Traffic// 4.5€/month(2Yr) StorageVps, 1TB, 10TB Traffic)&lt;br /&gt;
* [https://www.vpsnet.lt/en/ VPSnet.lt] - Powerful and high quality servers for a competitive price in Lithuania (Eastern Europe).&lt;br /&gt;
* [http://www.vpsfast.us/lithuania-vps VPSFast] - VPS Provider with good prices in Lithuania.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Latvia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.altnet.lv/ Altnet] - Hosting and colocation services. Any flawor, you name it. &lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
&lt;br /&gt;
* [http://www.vpsfast.us/latvia-vps VPSFast] - VPS Provider with good prices in Latvia.&lt;br /&gt;
&lt;br /&gt;
== Luxembourg ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.vpsfast.us/luxembourg-vps VPSFast] - VPS Provider with good prices in Luxembourg.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Malaysia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.cubiex.com/ Cubiex] - Malaysia Affordable Web Hosting and Domain Name. Affordable Linux VPS Hosting in Malaysia. OpenVZ based, Quad Core Xeon node. cPanel/WHM and DirectAdmin also available.&lt;br /&gt;
* [https://controlvm.com ControlVM] ControlVM Sdn. Bhd. offering OpenVZ VPS in Singapore, Malaysia, USA and Germany.&lt;br /&gt;
* [https://www.yoorshop.fr/hosting-ssd-vps-singapore-asia.php YOORshop SAS] - High performance SSD Linux VPS In Singapore with daily backup included. Starting from €7,49 /month&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Malta ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.a6it.com/ A6iT] - Stable, quality managed OpenVZ VPSs based in Malta.  Redundant network.&lt;br /&gt;
&lt;br /&gt;
== Morocco ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.belsemtech.com/ BelsemTech.CoM] BelsemTech SARL offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from 300 DH. Virtual Private Server (VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://www.hostoweb.com/ HosToWeb] is the only company providing VPS hosting in Morocco Data Center.&lt;br /&gt;
* [http://www.adk-media.com/ ADK Media] provides affordable managed and unmanaged virtual servers based on OpenVZ, Xen Paravirtualization and Xen HVM platforms. 24/7 Technical Support. Distros: Centos, Fedora, Debian, Ubuntu and more.&lt;br /&gt;
* [http://www.naja7host.com/ Naja7Host.CoM] The Naja7host SARL provides affordable VPS hosting using the OpenVZ platform. Running on Full Quality Nodes of up to 8 CPU and 16 GB RAM. . All VPS's come with Real 24/7/365  Technical Support and cPanel free (if option selected  ). Multiple choice of OS 32/64Bits (Centos, fedora, ubuntu, debian .ect ...)&lt;br /&gt;
* [http://www.lehoster.com/ Le Hoster] offers affordable Virtual Private Servers using the OpenVZ and KVM platform. Backed with our amazing customer support.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Netherlands ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.avanpad.com/ Avanpad] offers OpenVZ VPS hosting with 24\7 online support. Customer can request different control panels or templates for installation on his VPS.&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in Netherlands from 1.88EUR/month.&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
* [http://www.Freaksol.com/ FreaKs VPS Hosting] Self reliant hosted on independent networks &amp;amp; DC low ping around the world,No restrictions on file types,Unlimited resources,high ram servers&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [http://www.HostSailor.com/ HostSailor] Number 1 Netherlands Provider HostSailor provides affordable &amp;amp; high quality services such as VPS (XEN, OpenVZ and KVM) Linux or Windows, Dedicated servers, SSL certificates and domain name services.&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides self-managed OpenVZ SSD VPS in Telecity AMS 5, one of the best datacenters located in the Amsterdam area.&lt;br /&gt;
* [https://iniz.com/ INIZ VPS Hosting] INIZ provides affordable VPS Hosting in Amsterdam, Netherlands with high resources at low prices.&lt;br /&gt;
* [https://www.liteserver.nl/ LiteServer] Looking for a quality and affordable VPS in the center of The Netherlands? We provide SSD, Storage and High Bandwidth VPSes, starting at only €16 per year. We operate AS60404.&lt;br /&gt;
* [https://www.mangelot-hosting.nl/ Mangelot Hosting] Mangelot Hosting, A webhosting company located in the Netherlands, offers budget OpenVZ hosting solutions for maximum scalability en performance.&lt;br /&gt;
* [http://www.osbox.nl OsBoX Dutch Network Engineering] Cheap VPS host as low as $1 per month. Very great uptime and a overall good support. Check the website for the server plans.&lt;br /&gt;
* [http://www.signet.nl/ Signet VPS Hosting] - Signet delivers VPS hosting plans based on CentOS or Debian templates, including control-panel Virtualmin.&lt;br /&gt;
* [http://simple-webhosting.eu/ Simple-webhosting.eu] - OpenVZ based web hosting starting from €0.98 per month.&lt;br /&gt;
* [https://www.seedvps.com SeedVPS] Provides Powerful &amp;amp; Reliable OVZ/KVM VPS Hosting in The Netherlands&lt;br /&gt;
* [http://www.touchvps.com/ TouchVPS] is a company who offer Support and Managed Services for OpenVZ Servers ,also offer templates for openvz ready to go with cPanel , DirectAdmin , Plesk , Games, IRC Services, Desktop and many more.&lt;br /&gt;
* [http://www.voipcomplete.com/product-overview/dedicated-vps.html VOIPcomplete] offers dedicated VPS plans based on CentOS including a VPS management interface.&lt;br /&gt;
* [https://www.waveride.at/ Waveride] Waveride, an EDIS company, offers budget full gigabit OpenVZ + solusVM VPS in Austria, USA and the Netherlands&lt;br /&gt;
* [https://undergroundprivate.com/russiaoffshorevps.html  UndergroundPrivate.com] - OpenVZ with highly privacy, offshore , DMCA ignored , high confidence, SolusVM and cPanel, managed and non managed service.&lt;br /&gt;
* [https://www.totallyhosted.nl/ TotallyHosted] OpenVZ based Premium VPS services located in the Netherlands @ Serverius DC.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [http://www.vpsfast.us/netherlands-vps VPSFast] - VPS Provider with good prices in Netherlands.&lt;br /&gt;
&lt;br /&gt;
== Norway ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.vpsfast.us/norway-vps VPSFast] - VPS Provider with good prices in Norway.&lt;br /&gt;
&lt;br /&gt;
== Pakistan ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://vimzaa.com/ Vimzaa] The best hosting in Pakistan.&lt;br /&gt;
&lt;br /&gt;
== Philippines ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.web.com.ph/vps.php Web.com.ph] - provides OpenVZ virtual servers in the Philippines.&lt;br /&gt;
&lt;br /&gt;
== Perú ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.hn.pe/ Hostname] Hostname offers business OpenVZ containers in Perú&lt;br /&gt;
* [http://www.hostingandino.pe/ Hostingandino Lima - Peru] - VPS with OpenVZ in Peru&lt;br /&gt;
* [http://www.hostingplus.pe/ HostingPlus Internet Limitada] - High Performance Vps provider in Peru&lt;br /&gt;
* [https://www.hostingroup.com/ Hostingroup] Web hosting for small businness in Perú.&lt;br /&gt;
* [https://hostingweb.pe/ Hosting Web] The best hosting in PERU.&lt;br /&gt;
* [https://www.inchosting.pe/ HostingINC SAC] OpenVZ virtualization solutions for business in Perú.&lt;br /&gt;
* [https://www.mejorhosting.pe/ Mejor Hosting Perú] Hosting comparison for peruvian hosting providers.&lt;br /&gt;
* [https://webuniversal.pe/ Web Universal] The best hosting in PERU in the World.&lt;br /&gt;
&lt;br /&gt;
== Poland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://hosteam.pl/ HosTeam] offers OpenVZ VPS hosting from their DataCenter in Poland. Customer has choice of all major Linux distros (WARNING!!! restoring your backup is VERY expensive and they charge even if it wasn't restored correctly!), NATIVE IPV6 AVAILABLE!&lt;br /&gt;
&lt;br /&gt;
* [http://ultimahost.pl/ UltimaHost] high grade OpenVZ VPS and FreeBSD jail (DC in Łódź, Poland), brand of statnet.pl, SSD available for more expensive packets, NO IPV6 AVAILABLE (but they can load you tun module)&lt;br /&gt;
&lt;br /&gt;
* [http://budgetvps.pl/ BudgetVPS] very cheap, low end grade OpenVZ VPSes (DC in Gdańsk, Poland), brand of HitMe.pl&lt;br /&gt;
&lt;br /&gt;
* [https://hitme.pl/ HitMe.pl] high grade OpenVZ/Xen PV/Xen HVM VPSes, Virtuozzo (DC in Gdańsk, Poland), NATIVE IPV6 AVAILABLE (/64 on demand for free)!&lt;br /&gt;
&lt;br /&gt;
* [http://www.kr-cpd.pl/oferta/serwery-vps/ KR-CPD] Cracow's Center of Data Processing (DC of course in Cracow, Poland)&lt;br /&gt;
&lt;br /&gt;
* [http://livenet.pl Livenet] cheap, middle/low end OpenVZ VPSes (DC in Łódź, Poland)&lt;br /&gt;
&lt;br /&gt;
* [http://slaskdatacenter.pl/ Śląsk Data Center] high/middle grade OpenVZ VPSes (DC in Silesia province, Poland), SSD available for more expensive packets&lt;br /&gt;
&lt;br /&gt;
* [https://www.ionic.pl/ IONIC.pl] VPS OpenVZ with SolusVM control panel, own DC in Cracow&lt;br /&gt;
&lt;br /&gt;
* [https://microvps.pl/ MicroVPS.pl] Middle And low end OpenVZv7 VPS plans. SSD for regular VPS and HHD for storage plans (up to 1TB)&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Portugal ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.ptservidor.pt/ PTServidor] - OpenVZ virtual servers with free management based in Portugal.&lt;br /&gt;
* [http://www.efeito.net/ Weblevel.pt] - OpenVZ virtual servers based in Portugal.&lt;br /&gt;
* [https://www.webtuga.pt/ WebTuga] - Managed/Unmanaged Virtual Private Servers hosted in a Portuguese Datacenter with lots of extras&lt;br /&gt;
* [https://www.cloudfire.pt/ CloudFire] - OpenVZ VPS at very low prices hosted in Portugal&lt;br /&gt;
* [https://www.linxisp.com/ LINXISP] - High Availability &amp;amp; Performance OpenVZ Containers&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] - Build an OpenVZ VPS in 14 locations WordWide From £2.49&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Romania ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.intovps.com IntoVPS] - offers unmanaged OpenVZ virtual servers based in Romania, Netherlands and USA. A lot of resources for decent prices.&lt;br /&gt;
* [http://www.ename.ro/dedicated.html eName] - managed OpenVZ virtual servers in Bucharest, Romania&lt;br /&gt;
* [http://www.ch-center.com/virtual-servers Ch-center] - unmanaged OpenVZ virtual servers, based in Romania in it's own Data Center&lt;br /&gt;
* [http://www.clouds.ro/servere-virtuale/ Clouds] - OpenVZ virtual servers hosted on premium hardware, in Romania&lt;br /&gt;
* [http://www.HostSailor.com/ HostSailor] HostSailor provides affordable &amp;amp; high quality OpenVZ and KVM servers in Romania&lt;br /&gt;
* [https://www.shape.host/linux-vps/ Linux VPS] - OpenVZ virtual servers, Instant Linux VPS&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Russia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.internoc24.host Internoc24.HOST] is an international [https://www.www.internoc24.host Offshore VPS ] provider with reliable SSD VPS in Moscow, Russia. Focus ist on high privacy protection so they accept several Cryptocurrencies like Bitcoin, Ethereum and others for anonymous payments.&lt;br /&gt;
* [http://www.ihc.ru/vps.html IHC.RU] - VPS hosting in Moscow, Russia starting at $10/month with good set of precreated templates&lt;br /&gt;
* [http://mchost.ru/services/linux-vps/ McHost.ru] - Linux VDS Hosting from McHost.&lt;br /&gt;
* [http://hosting.agava.ru/vps/ AGAVA] - Linux VPS hosting based on OpenVZ.&lt;br /&gt;
* [http://vdsplanet.ru/ VDSPlanet.ru] - unmanaged VDS/VPS hosting starting at 3.99$ a month. Large variety of OS templates and free ISPmanager Lite control panel. Total automation is our goal.&lt;br /&gt;
* [http://www.demos.ru/service/datacenter/vps.html Demos-Internet] - we offer OpenVZ Virtual Private Server based on Linux.  All VPS come with ISPmanager control panel.&lt;br /&gt;
* [http://www.net.ru/service/net9/ www.net.ru] - OpenVZ virtual private servers.&lt;br /&gt;
* [http://www.eurobyte.ru/ Eurobyte.ru] - Linux VDS Hosting from Eurobyte.&lt;br /&gt;
* [https://undergroundprivate.com/russiaoffshorevps.html  UndergroundPrivate.com] - OpenVZ with highly privacy, offshore , DMCA ignored , high confidence, SolusVM and cPanel, managed and non managed service.&lt;br /&gt;
* [http://www.telekom.ru/service/vps.html Elvis Telekom] - OpenVZ hosting with base and cpanel templates from Elvis Telekom.&lt;br /&gt;
* [http://fastvps.ru/vds/ FastVPS] - OpenVZ hosting, ISPmanager, Hetzner, MayFlower.&lt;br /&gt;
* [https://lepus.su/vps.html Lepus] - OpenVZ hosting, SSD, ISPmanager free, Hetzner.&lt;br /&gt;
* [http://www.hts.ru/vds/ HTS] - OpenVZ hosting, ISPmanager, Linux VPS hosting based on OpenVZ in Moscow.&lt;br /&gt;
* [https://selectel.ru/services/vds/ Selectel] - OpenVZ hosting.&lt;br /&gt;
* [https://galaxydata.ru/root-server/ GalaxyData] - Virtuozzo Containers in Cloud Storage.&lt;br /&gt;
* [http://hosterbox.ru/servers/ Hosterbox.ru] - Managed VPS hosting. Based on OpenVZ + SolusVM + ISPmanager.&lt;br /&gt;
* [https://firstvds.ru FirstVDS.ru] - One of the leading hosting companies providing virtual private servers.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Singapore ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://conceptlane.com/?t=hostingservices#ratesvps ConceptLane Pte Ltd] - OpenVZ VPS on dual octa-core AMD Opterons running Debian Wheezy 7, custom control panel with bandwidth graphs, reboot/reinit and web-based VNC access.&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [http://www.qoxy.com/vps QOXY.com] Affordable and Reliable OpenVZ VPS Hosting in a Singapore Data Center.&lt;br /&gt;
* [http://www.secureax.com/ SecureAX Pte Ltd] - Singapore Premium Internet Solution Provider&lt;br /&gt;
* [http://www.planettel.com.sg PlaNetTel] - Affordable and customised OpenVZ containers across 3 data centers - contact Thomas Festus at +65-66936881. [http://pve.proxmox.com/wiki/User:Apmuthu#Squeeze_based_Templates Sponsors OpenVZ Container Template]s for the Open Source community.&lt;br /&gt;
* [http://www.vpsfast.us/singapore-vps VPSFast] - VPS Provider with good prices in Singapore.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Serbia ==&lt;br /&gt;
* [https://www.skyhosting.rs/en/vps-servers SkyHosting] - Fast Linux OpenVZ VPS SSD Hosting with SolusVM control panel.&lt;br /&gt;
* [https://www.ninet.rs/en/vps-servers NiNet Company] - Linux OpenVZ VPS servers. Well known VPS hosting company from Serbia with their own data center&lt;br /&gt;
* [http://www.suonline.net SuOnline.Net ISP] - Linux OpenVZ VPS servers, Docker enabled !!!&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== South Africa ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.host1plus.com/ Host1Plus] - Local South African servers hosted in Johannesburg. OpenVZ VPS servers starting from $3.00 per month.&lt;br /&gt;
* [http://www.vps.co.za/ VPS.CO.ZA] - South Africa's oldest VPS provider. Local South African servers with SolusVM control panel. OpenVZ, Xen and OnApp Cloud.&lt;br /&gt;
* [http://247hosting.co.za/vpshosting.php 247Hosting] - OpenVZ virtual servers locally in South Africa with SolusVM control panel. cPanel option available!&lt;br /&gt;
* [http://www.SoftDux.co.za/ SoftDux] - OpenVZ virtual servers based America &amp;amp; South Africa. All VPS's come with cPanel or Plesk control panels. XEN VPS's also available.&lt;br /&gt;
* [http://www.clickworks.co.za/ Clickworks] - OpenVZ / Xen VPS servers hosted in RSA. Backed by Solusvm control panel.&lt;br /&gt;
* [http://www.elitehost.co.za/ Elite Host] - OpenVZ virtual servers based in America &amp;amp; South Africa. All VPS's come with cPanel and unlimited bandwidth.&lt;br /&gt;
* [http://www.telasera.com/ Telasera] - OpenVZ VPS servers hosted in South Africa. Supermicro Servers powered by Intel Xeon with 24/7 Support.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Spain ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.actiu.net/pro/ Actiu informatica]&lt;br /&gt;
* [http://www.corpresa.com/servidores-virtuales.html Corpresa Hosting] - Tiene algún proyecto entre manos y un plan de hosting no le hes sufuciente y un servidor dedicado no está dentro de su presupuesto?, una solución de VPS a medida será la que cubrirá todas sus necesidades.&amp;quot;&lt;br /&gt;
* [https://www.datomedia.es Datomedia] - Cloud alta disponibilidad powered by Virtuozzo 6 y Servidores VPS bajo openvz y kvm.&lt;br /&gt;
* [https://www.evidaliahost.com/vps/ EvidaliaHosting] - Servidores VPS totalmente configurados con panel de gestión Plesk 12.5, garantía de devolución de 30 días y posibilidad de discos SSD.&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
* [https://ginernet.com/vps-ssd.php GINERNET] - Servidores VPS alojados en España desde 1.99€/mes.&lt;br /&gt;
* [https://www.hostingplus.com.es Hosting Plus España] provide OpenVZ containers at our own datacenter. Starting from us20/month RAID 10 SSD.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Sweden ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.admax.se/vps/ Admax] - Admax offers enterprise grade virtual servers with great pricing. Custom control panel, API, remote access &amp;amp; more.&lt;br /&gt;
* [https://www.acon.se/vps Acon VPS Server] - VPS Server and Dedicated server provider in Sweden.&lt;br /&gt;
* [https://www.glesys.com/vps.php GleSYS] - VPS Provider with a great control panel and good prices&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides the highest quality SSD VPS in Stockholm, Sweden. Based on completely pure SSD in RAID-10 and delivering extremely high network &amp;amp; hardware performance along with reliability.&lt;br /&gt;
* [https://www.nametyper.com NameTyper] - VPS and Shared hosting provider. Customize your own OpenVZ Container with 1-12 cores running on SSD and ECC RAM. &lt;br /&gt;
* [https://virtualcenter.se VirtualCenter] - The first Cloud provider with SSD VPS in Sweden. Offer enterprise class hardware and network infrastructure&lt;br /&gt;
* [http://www.vpsfast.us/sweden-vps VPSFast] - VPS Provider with good prices in Sweden.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Switzerland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
* [http://www.vpsfast.us/switzerland-vps VPSFast] - VPS Provider with good prices in Switzerland.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Tanzania==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.aptus.co.tz/ Aptus Solutions] - OpenVZ / SolusVM VPS Servers located in Dar es Salaam - 100meg to TIX. CentOS &amp;amp; Ubuntu.&lt;br /&gt;
&lt;br /&gt;
== UK ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.34sp.com/ 34SP.com] - We're a UK based web hosting company, bridging the gap between sophisticated hosting solutions &amp;amp; affordable prices&lt;br /&gt;
* [http://www.AceShells.com/ AceShells] - Fast, stable, high quality UK based virtual private servers from just £5 a month, operating since 2001&lt;br /&gt;
* [http://www.AtlanticServers.com/ Atlantic Servers] - Affordable VPS, stable, high quality VPS, UK based Data Centre&lt;br /&gt;
* [https://awebhosting.uk/ AWebHosting.uk] VPS hosting offered by [https://awebsolutions.uk/ AWEBSOLUTIONS LIMITED] reliable UK hosting provider located in London, UK and Hosted in UK DataCentre.* [http://www.BargainVPS.co.uk/ BargainVPS] - UK / US / EU Instant setup VPS - We have some great Linux &amp;amp; Windows Bargain VPS packages on offer for you here all available Fully Managed.&lt;br /&gt;
* [http://www.cheapvps.co.uk/ CheapVPS] - CheapVPS provide cheap, UK based OpenVZ VPS servers. Hosted on high end hardware, in a top UK datacenter backed up with 24/7/365 support. Choice from a wide range of Linux distros. OpenVZ VPS managed with SolusVM.&lt;br /&gt;
* [http://www.chilliserver.com/ Chilliserver] - Affordable plans starting from just £3.99, not oversold. RHEL6 Kernel with VSwap, TUN/TAP/FUSE and ACL support enabled. SolusVM control panel with custom snapshot system and rescue system. Based in a European data Centre with UK based support.&lt;br /&gt;
* [http://www.chvps.com/ CHVPS] - Switzerland Based VPS, Cheap Pricing with solusVM control panel.&lt;br /&gt;
* [http://www.cislondon.co.uk/virtual-private-servers/ Commercial Internet Solutions] - CIS provides premium hosting at competitive rates, focused on Small Businesses within the M25 orbital. Hosting is on Dual Quad core Intel Xeon supermicro servers in Tier 4 datacenters around London.&lt;br /&gt;
* [http://www.datacorporate.co.uk/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [http://domvps.com/ domVPS] - OpenVZ Virtual Servers in the USA, Germany, France &amp;amp; the Netherlands at a low cost.&lt;br /&gt;
* [http://www.DubHosting.co.uk/ DubHosting] - DubHosting started in 2004 has been providing cost effective hosting to clients world wide. Fully managed OpenVZ servers based in Europe &amp;amp; US are one of their many strong points. They can provide you with a dedicated server and install openvz allowing you to sell your own vps servers. Their servers are located at UKGrid in Manchester with 24/7/365 support&lt;br /&gt;
* [http://www.europhase.net/virtual-private-servers/ Europhase UK Limited, UK VPS] - OpenVZ VPS Hosting, Virtual Dedicated Servers, UK VPS hosted at multiple UK datacentres from £4.99&lt;br /&gt;
* [https://farbyte.uk/vps Farbyte VPS] - UK based OpenVZ VPS and shared web hosting services&lt;br /&gt;
* [http://www.fdqwholesale.co.uk FDQ Wholesale] - UK based hosting services&lt;br /&gt;
* [http://www.gemvps.net/ GemVPS.NET] - UK (Manchester) Based Company, OpenVZ Virtual Servers in the UK &amp;amp; France on Fast nodes.&lt;br /&gt;
* [http://www.hadrill.org.uk Hadrill Online] - Fully managed hosting with unlimited bandwidth. Quotes available through contact form.&lt;br /&gt;
* [http://www.infrenion.com./uk_vps_hosting.html Infrenion Networks UK] Cheap, economical and reliable web hosting solutions, VPS based on the openVZ platform. You can host any YouTube Clone scripts with free FFMPEG setup on our vps servers. Also offers with a choice of selecting DataCenter.&lt;br /&gt;
* [https://www.laws-hosting.co.uk/vps-hosting.php Laws Web Hosting] - Laws Web Hosting offers OpenVZ VPS Hosting with packages starting from £5.50/m that will cater for anyone. We have OpenVZ VPS hosting solutions, and come with moderate DDoS protection.&lt;br /&gt;
* [http://www.letstalkdigital.com/index.php?option=com_content&amp;amp;view=article&amp;amp;id=73&amp;amp;Itemid=65 LetsTalkDigital VPS Hosting] - LetsTalkDigital.com offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from $14.99. Virtual Private Server(VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://www.meteorvps.com/ MeteorVPS] - Professional, Non-Oversold amazing VPS plans pretty cheap using SolusVM management, range from 512MB -&amp;gt; 16GB&lt;br /&gt;
* [http://www.minivps.co.uk miniVPS] miniVPS offers VPS hosting solutions with nodes located in UK, utilising openvz/solusvm with future locations of USA and UK. &lt;br /&gt;
* [https://www.first2host.co.uk First2Host Cheap VPS] - Intel Xeon E5-2630v3 OpenVZ VPS Servers. Don't be defined by a pre-made VPS plan. Create your own VPS Plan by assigning the resources that you require. SATA, SSD or NVMe storage 100 MBPS, 250 MBPS, 500 MBPS, 1GBPS speeds and free cPanel licenses.&lt;br /&gt;
* [http://www.phurix.co.uk/ Phurix] - A UK based web solutions company that provides you with reliable hosting at extremely affordable prices, VPS server virtualization using OpenVZ.&lt;br /&gt;
* [http://www.qualityservers.co.uk Quality Servers] - Affordable OpenVZ virtual servers based in the UK and USA. Choice of control panels and management options.&lt;br /&gt;
* [http://www.rackburst.net/ Rackburst] - UK SSD VPS Hosting with fast UK-based Live Support available from £1.49 per month.&lt;br /&gt;
* [http://www.rshosting.co.uk/vps.html RSHosting UK] - Offering the most secure, reliable, stable and fast UK VPS Web Hosting based on OpenVZ architecture. Our Virtual Dedicated Servers are physically hosted on powerfull Quad Core servers located in multiple UK datacentres.&lt;br /&gt;
* [http://www.sharkserve.rs SharkServers] - Low Cost OpenVZ virtual servers in the UK. Choice of control panels and management options. Own Datacentre.&lt;br /&gt;
* [https://www.ukhost4u.com/ UKHost4u] - A leading provider of VPS solutions for over 19 years!&lt;br /&gt;
* [http://www.vpsfast.us/united-kingdom-vps VPSFast] - VPS Provider with good prices in UK.&lt;br /&gt;
* [http://www.vpsmachine.co.uk/ vpsMachine] Quality openvz hosting platform with a large choice of customer OS templates.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [https://www.webhostuk.co.uk/vps-hosting.html WebHostUK LTD] - Offers Cheap yet Best UK VPS Web Hosting working on OpenVZ Platform.We offers fully Managed UK VPS with true 24/7/365 days support.All our Servers are located in UK London DC.&lt;br /&gt;
* [http://www.webhostinguk.com/vps/vps-hosting.html Web Hosting UK] - Fully managed OpenVZ VPS Hosting offered on fast and reliable and affordable servers in UK &amp;amp; European datacenter with 24x7x365 days lightning fast support.&lt;br /&gt;
* [http://www.weycrest.co.uk/vps-hosting.php Weycrest VPS] - Low Cost, Stable OpenVZ and Parallels' Virtuozzo Virtual Private Server solutions. London UK Hosted at Coreix with a choice of operating systems, and root and control panel options.&lt;br /&gt;
* [http://www.xilo.net/virtual_private_servers-vps/ XILO] - UK-based hosting with UK-based support. VPS services offered with a choice of cPanel, Webmin and other useful applications, VoIP, SIP, VPN to name a few.&lt;br /&gt;
* [http://www.zxvps.co.uk/ ZxVPS VPS Hosting] - Quality, non-oversold VPS based on the openVZ platform, using SolusVM management panel, VPS from 128mb - 2gb, cpanel, direct admin, kloxo, etc.&lt;br /&gt;
&lt;br /&gt;
== Ukraine ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://ekvia.com/ Ekvia] - VDS/VPS based on OpenVZ. Free trial 14 days. Domain registration for VDS/VPS.&lt;br /&gt;
* [http://www.gelihost.com/ Geliar Hosting Solutions] - Fast virtual dedicated servers based on OpenVZ. Geliar Hosting Solutions offering many control panels and other useful services.&lt;br /&gt;
* [http://www.hostpro.ua/ Hostpro.ua] - Full managed OpenVZ servers.&lt;br /&gt;
* [http://www.vpsfast.us/ukraine-vps VPSFast] - VPS Provider with good prices in Ukraine.&lt;br /&gt;
&lt;br /&gt;
== USA ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.a2hosting.com A2 Hosting] is your high-performance [http://a2hosting.com/openvz-vps-hosting OpenVZ VPS Hosting] provider. Design your perfect [http://a2hosting.com/vps-hosting VPS Hosting] account today! Featuring SwiftServers and SSDs with page load speeds up to 300% faster compared to standard drives.&lt;br /&gt;
* [http://www.afterburst.com Afterburst] (Previously FanaticalVPS): affordable unmetered, unmanaged VPS servers in NY.&lt;br /&gt;
* [https://www.asurahosting.com/ AsuraHosting] offers powerful, reliable, and simple OpenVZ VPS to clients. AsuraHosting has a dedicated support team, and quality hosting; Pricing starts at just $5/month!&lt;br /&gt;
* [http://beyondhosting.net BeyondHosting.net] High Performance OpenVZ Virtual Private Servers (VPS)  Tier 1 US Datacenter.&lt;br /&gt;
* [http://buyvm.net BuyVM.net] DDoS Protection, three datacenter locations, Stallion control panel. Affordable quality VPS hosting since 2010!&lt;br /&gt;
* [https://www.binarycpu.com Binary Computer Solutions] has provided OpenVZ based Virtual Private Server hosting for over 5 years.  Network outages are a thing of the past, and oversold services are never heard of here.  Built on solid technology, with infrastructure to match - Binary Computer Solutions will give you hosting you need, without the cost others ask for.  Starting at $30.00/mo.&lt;br /&gt;
* [http://www.bodhost.com/ Bodhost.com] Fast, Reliable and secure web hosting service with 24*7 free customer service.&lt;br /&gt;
* [http://www.buildyourvps.com/ BuildYourVPS.com] mix ‘n’ match your VPS; choose only the bandwidth, RAM, disk capacity, type of IP connection, level server redundancy, and the support/monitoring you want. [http://www.buildyourvps.com/ BuildYourVPS] is the 1st to offer you a highly-customized VPS solution, without making you pay for unused extra features.&lt;br /&gt;
* [https://www.budgetvm.com/openvz-linux-vps.php BudgetVM.com] Each server includes our industry-leading SLA, DDoS protection, 200Gbps networks and 7 * 24-hour customer support.&lt;br /&gt;
* [http://www.byethost.com Byethost.com] offers OpenVZ based VPS Hosting as its main VPS solution, with the hypervm panel. Centos, Debian, Fedora, OpenSuse and Ubuntu Containers are available.&lt;br /&gt;
* [http://cheaperasp.net CheaperASP.Net] provides Quality web hosting on the OpenVZ platform. You also help you get best options at [http://cheaperasp.net/godaddy-1-hosting-free-domain-promo/ affordable] cost.&lt;br /&gt;
* [http://www.chhost.net/vps.htm CH Hosting VPS Hosting] CH Hosting or chhost.net offers OpenVZ based VPS Hosting. 24/7 Support. Upgrade/Downgrade your plan as needed on-the-fly without the risk of downtime. Since 2006. Non-Oversell&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in USA from 1.88EUR/month.&lt;br /&gt;
* [http://www.cloudshards.com Cloud Shards] High Performance, reliable, stable and affordable OpenVZ Virtual Private Servers (VPS) in data centers across the USA.&lt;br /&gt;
* [https://cloudgearhosting.com CloudGear Hosting] - offers OpenVZ hosting in 4 locations across the USA. Including free DDoS Protection and free SSL with cPanel.&lt;br /&gt;
* [http://www.datacorporate.com/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [https://www.delimiter.com/storage-vps/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [https://www.cheapdomainnamesdot.com Domain Host SSL] provides Reliable web hosting with OpenVZ platform Since 2003, Located New York city, Atlanta, Los Angeles. &lt;br /&gt;
* [http://www.DubHosting.com/ DubHosting] - DubHosting started in 2004 has been providing cost effective hosting to clients world wide. Fully managed OpenVZ servers based in Europe &amp;amp; US are one of their many strong points. They can provide you with a dedicated server and install openvz allowing you to sell your own vps servers.&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
* [http://www.ethernetservers.com/ Ethernet Servers] A leading provider of OpenVZ Virtual Servers in Los Angeles, Miami and Buffalo with SolusVM.&lt;br /&gt;
* [http://www.evolucix.com/ Evolucix.com] Evolucix offers state of the art, professional, and reliable OpenVZ VPS solutions on top-notch hardware while providing quality support.&lt;br /&gt;
* [http://www.evolvedservers.com Evolvedservers.com] Openvz based vps servers. Hosted in Michigan, USA. 24/7 Support. Hosted in tier-3 and tier-4 datacenter's with multiple redundancies.&lt;br /&gt;
* [http://fastwebhost.com/vps-hosting.html Fastwebhost]: affordable cloud VPS servers using OpenVZ. &lt;br /&gt;
* [http://www.fliphost.net Fliphost.net]: Powerful, affordable instant setup VPS systems. Servers based in Phoenix Az with another location coming soon.&lt;br /&gt;
* [http://www.frontrangehosting.com Front Range Hosting]: SSD Cached KVM &amp;amp; OpenVZ VPS Hosting Prices Start at 2.00/mo, located in Colorado Springs, Colorado.&lt;br /&gt;
* [http://glesys.se GleSYS] is a hosting company specialized in serverhosting. Also offering VPS hosting mainly based on OpenVZ. GleSYS has provided access to server and Cisco hardware for developers from OpenVZ to find problem with VLAN implementation.&lt;br /&gt;
* [http://goodealhosting.com/ GOODEALHOSTING.com] Quality Hosting Solutions! Provides affordable unmanaged/managed VPS based on OpenVZ! start from $10.00, real 24/7 support.&lt;br /&gt;
* [http://gothost.net GotHost.net] Providing OpenVZ based VPS Hosting with SolusVM. All nodes are Quad Core Xeon with RAID-10 for speed and redundancy. Budget plans starting at $7.99.&lt;br /&gt;
* [http://www.greengeeks.com/ GreenGeeks Hosting] VPS Hosting. Dual Intel Xeon 64-Bit CPU's, DDR3 RAM, RAID-10 SSD Storage Arrays. 24/7 Support. cPanel/WHM + more!&lt;br /&gt;
* [http://hostarmor.com HostArmor™] - is best known for low-cost and reliable shared hosting and dedicated servers. Recently the company expanded to offer OpenVZ virtual server plans at 8 worldwide locations, five in the U.S., one in Germany, one in France, and one in the Netherlands. VPS plans start at $13.99/month.&lt;br /&gt;
* [http://www.host4geeks.com Host4Geeks] - Host4Geeks is a premium Fully Managed VPS provider with datacenters across 2 locations in US and in UK. All servers offer a free cPanel license.&lt;br /&gt;
* [http://www.host1plus.com Host1Plus] - OpenVZ based virtual servers in Chicago and Los Angeles. VPS plans start at $2.00 per month.&lt;br /&gt;
* [http://www.hostavps.com HostAVPS] - Providing Fully Managed VPS's on both the West &amp;amp; East Coast.&lt;br /&gt;
* [https://www.hostcapitol.com Host Capitol] offers fast and reliable web hosting services, including OpenVZ VPS Hosting, to clients ranging from small businesses to corporations. Located in Piscataway, New Jersey.&lt;br /&gt;
* [http://www.hostcolor.com Host Color] - OpenVZ based virtual servers hosted in a Tier 4 class data center based out of South Bend, Indiana. Juniper managed, fully-redundant network with uplinks to Level 3, Cogent and Internap.&lt;br /&gt;
* [https://www.hostgalaxy.com HostGalaxy] - OpenVZ based virtual servers. The fastest hosting in the Galaxy!&lt;br /&gt;
* [http://www.hostigation.com Hostigation] - High resource unmanage VPS hosting solutions.&lt;br /&gt;
* [http://www.hostingrails.com Hosting Rails] offers Rails-targeted OpenVZ VPS Hosting and updated Rails-ready OS images.&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [http://www.hostmist.com Host Mist] features budget OpenVZ VPS hosting from four major cities across the US.&lt;br /&gt;
* [http://www.hostrush.com HostRush] Self managed, ssd vps for business and non business. &lt;br /&gt;
* [http://www.dailyhosting.net hostoople] We offer OpenVZ VPS hosting from Dallas Texas, Starting at $29.95/month &lt;br /&gt;
* [https://hostus.us HostUS] provides unmanaged and managed OpenVZ VPS in Atlanta, Dallas and Los Angeles with custom control panel. A large variety of Linux distros are available. Enjoy 15% off with coupon VPS15OFF.&lt;br /&gt;
* [https://www.hostwinds.com Hostwinds] Affordable managed/unmanaged VPS Solutions.&lt;br /&gt;
* [http://hostsia.com Hostsia] With HOSTSIA Web services, you can get an OpenVZ VPS for only $15.00/mo. Each OpenVZ VPS includes multiple free-of-charge bonuses and offers a 99.9% uptime guarantee. You can also use our charge-free Hepsia CP, which is available with each OS – it permits you to host an unmetered number of domains and comprises heaps of handy tools, which will help you better manage your site and your VPS web hosting account.&lt;br /&gt;
* [http://www.infrenion.com./vps_hosting.html Infrenion Networks] Cheap, reliable and secure VPS hosting solutions, based on the openVZ platform. You can host any YouTube Clone scripts with enhanced support quality round the clock.&lt;br /&gt;
* [http://iniz.com/ INIZ VPS Hosting] INIZ provides affordable VPS Hosting in Los Angeles &amp;amp; New York with high resources at low prices.&lt;br /&gt;
* [https://www.interserver.net/ InterServer Web Hosting] Fast &amp;amp; Reliable VPS - 24x7 Support. 99.9% Up-time, Hosting Since 1999!.&lt;br /&gt;
* [http://www.joinvps.com JoinVPS.com] ISPmanager OpenVZ based VPS hosting. 24/7 Technical Support. Free ISPmanager control panel.&lt;br /&gt;
* [http://www.lovevps.com LoveVPS] Budget VPS provider starting at $5.99/month located in the US with Xeon nodes.&lt;br /&gt;
* [http://www.letstalkdigital.com/index.php?option=com_content&amp;amp;view=article&amp;amp;id=73&amp;amp;Itemid=65 LetsTalkDigital VPS Hosting] LetsTalkDigital.com offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from $14.99 Virtual Private Server(VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://lylix.net LYLIX] offers affordable VPS hosting with a choice of eight different Linux distributions, dedicated VPS hosting, and specializes in Asterisk/VOIP based hosting including Trixbox, AsteriskNow, Elastix, and PBX-in-a-Flash.  Popular choice for unmanaged IP-PBX services; entire infrastructure built on a High-availability (HA) network across three regional NOCs.&lt;br /&gt;
* [http://www.micfo.com Micfo.com] offers VPS hosting services for both Linux VPS hosting and Window VPS hosting on affordable price combined with world-class 24x7x365 support.&lt;br /&gt;
* [http://www.neostreams.info/neoshop/cart.php?gid=9 nEo Stream Services] Offer's Top Quality OpenVZ Servers, Starting at $18.95 per month! SolusVM Control panel , 7 day Money Back Guarantee , 24x7 Professional Support.&lt;br /&gt;
* [http://pogiweb.com/vps/ PogiWeb LLC] Instant and free setup. Includes SolusVM control panel and free level 1 support during first month.&lt;br /&gt;
* [http://www.theserverexperts.com TheServerExperts.com] TheServerExperts VPS line is the ideal solution for clients who require the control of a dedicated server matched with the affordability and simplicity of a traditional shared hosting account.&lt;br /&gt;
* [http://thenynoc.com New York NOC] affordable Linux VPS hosting out of New York and Chicago. Plans as low as $5 a month and are backed by a redundant infrastructure and 24/7 support.&lt;br /&gt;
* [http://railsplayground.com RailsPlayground.com] Ruby on Rails VPS with ready to go Rails images with the LxAdmin control panel&lt;br /&gt;
* [http://www.raidlogic.net RaidLogic.NET] RaidLogic.NET offers OpenVZ based Linux VPS out of multiple facilities across the United States, including Miami, Los Angeles, and Chicago. Starting as low as $3.95/month.&lt;br /&gt;
* [http://www.ramhost.us RAM Host] RAM Host offers OpenVZ based Linux VPS out of multiple facilities across the United States, including Atlanta, Kansas City, and Phoenix.&lt;br /&gt;
* [http://www.reconhosting.com Recon Hosting] Recon Hosting offers affordable OpenVZ VPS solutions where you get Quality Hosting at a Fraction of the price. Instant setup with the latest Operating System templates including cPanel.&lt;br /&gt;
* [http://www.rokabear.com Rokabear] Rokabear offers OpenVZ Linux VPS, Dedicated Server, and Colocation. All Hardware setup in High Availability mode including raided drives and redudnant power and network connections. With multiple upstream providers, Rokabear's connectivity is fast and reliable! Rokabear supports LAMP, Openvpn, and Asterisk configurations. VPSes start at $7.99!&lt;br /&gt;
* [https://www.rosehosting.com RoseHosting] offers OpenVZ Linux virtual servers equipped with Enterprise Grade SSD drives. All hosting plans are fully-managed with FREE 24/7 support, FREE website migration, FREE weekly backups and FREE server monitoring included.&lt;br /&gt;
* [http://www.rshosting.com/vps.html RSHosting.com] RSHosting offers the most secure, reliable and stable VPS - Virtual Private Servers based on OpenVZ architecture, powered by the most professional and qualified 24/7 lightening fast support.&lt;br /&gt;
* [http://www.servercomplete.com Server Complete, LLC] Server Complete offers OpenVZ based Linux VPS out of multiple facilities across the United States, including Atlanta, Dallas, and Chicago.&lt;br /&gt;
* [http://www.servergrove.com ServerGrove] uses OpenVZ as the main virtualization platform for its state of the art VPS hosting services.&lt;br /&gt;
* [http://serverswarm.com ServerSwarm] provides stable, affordable, high performance OpenVZ virtual private servers.&lt;br /&gt;
* [http://Sharktech.net Sharktech] provides custom OpenVZ solutions DDOS-protected up to 100Gbps.&lt;br /&gt;
* [http://www.silverrack.com/ SilverRack VPS Hosting] - SilverRack provides affordable VPS hosting using the OpenVZ platform.&lt;br /&gt;
* [http://www.soficol.com/ Soficol] Offers Enterprise OpenVZ based VPS, hosted on a clustered infrastructure and redundant network. Easy to use user management and instant setup.&lt;br /&gt;
* [http://www.spectrohost.com/ Spectro Host] - Offers performance VPS Servers running openvz. Always the most resources and never over committing OpenVZ nodes.&lt;br /&gt;
* [http://www.budgetvds.com/ BudgetVDS] - Offers VPS Servers running openvz we've been in business for 2 years now using openvz platform.&lt;br /&gt;
* [http://www.syera.net/ Syera Networks] Unmetered VPS From $18.88/M, 24/7 Support, OpenVZ/HyperVM, Instant Setup!, Free 1Gbps Upgrade with Coupon: syera1G&lt;br /&gt;
* [http://www.synapseglobal.com/voip_vps.html SynapseGlobal.com] Elastix, Trixbox, PBX in a Flash and Asterisk VPS - OpenVZ based Asterisk VOIP servers with 14 Tier 1 premium bandwidth providers.&lt;br /&gt;
* [http://www.tektonic.net TekTonic] provides VPS hosting services using both Virtuozzo and OpenVZ technology.&lt;br /&gt;
* [http://www.tigerservers.com/ TigerServers] - Provides affordable managed VPS based on OpenVZ. Servers located in Chicago, Illinois&lt;br /&gt;
* [http://www.tocici.com/ TOCICI VPS Hosting Services] Since 1995 TOCICI has offered web hosting services, with 24/7 support commitments and a strong non-oversell policy. Our purpose-built hosting infrastructure has serviced many organizations for over a decade. Offering OpenVZ VPS, data center colocation, and equipment leasing options, visit our website for prices and more details.&lt;br /&gt;
* [http://www.ultravps.com UltraVPS] UltraVPS offers managed and unmanaged OpenVZ-based VPS hosting utilizing dual CPU hardware nodes with redundant, high-performance RAID-10 storage.  UltraVPS offers VPS servers with many popular control panel options and turn-key applications.&lt;br /&gt;
* [http://www.vpsfx.com VPSFX] VPSFX.com offers OpenVZ VPS, data center colocation, and dedicated servers.&lt;br /&gt;
* [http://www.Webhost.US.Com/linuxvps.html US Web Hosting]  Webhost.US.Com offers powerful GUI based VPS management system with full OpenVZ, Xen Paravirtualization and Xen HVM support.All our Virtual Private servers are fully Managed with 99.9% uptime and 24/7 top notch support.&lt;br /&gt;
* [http://unixservice.com Unixservice/unxsVZ] Low cost OpenVZ ONLY hosting we specialize in Mail, DNS and RADIUS multiple container hosting. At the world famous Market St. San Jose, CA Silicon Valley datacenter. Ping times from your containers to local yahoo and google sites guaranteed single digit ms times. Your containers are backed up at 4 local and 2 remote locations. Contact supportgrp at unixservice dot com.&lt;br /&gt;
* [http://www.vogenic.xyz Vogenic: Cloud Services] If you are searching for an upgrade to the shared hosting service, then you should consider our OpenVZ or KVM VPS hosting services.&lt;br /&gt;
* [http://vpslink.com VPSLink.com] provides virtual private server hosting on the OpenVZ platform.&lt;br /&gt;
* [http://www.vpsspeed.com/ VPSSpeed] - VPSSpeed provides unmanaged OpenVZ based VPS hosting with over 50 OS Templates, real 24/7/365 support and fast US servers. No overselling.&lt;br /&gt;
* [http://vpsnoc.com VPSNOC] offers unmanaged vps hosting based in the USA utilizing OpenVZ hypervisor behind an in-house VPS control panel.&lt;br /&gt;
* [https://www.waveride.at/ Waveride] Waveride, an EDIS company, offers budget full gigabit OpenVZ + solusVM VPS in Austria, USA and the Netherlands&lt;br /&gt;
* [http://www.webappcabaret.com WebAppCabaret] provides VPS solutions for hosting applications. We offer OpenVZ with cPanel or Plesk for web site management; and NGASI Universal App Manager for deploying and managing JAVA and RAILS applications.&lt;br /&gt;
* [http://www.wirenine.com/vps-hosting/ WireNine.com VPS Hosting] Low cost fully managed and unmanaged OpenVZ based VPS Hosting with SAS 15k enterprise drives in high-performance RAID-10 storage.&lt;br /&gt;
* [http://www.zoidial.com/ Zoidial Hosting and VPS] - offers VPS and Virtual Dedicated Server solutions utilizing OpenVZ.  In business since 1998, Zoidial Incorporated is a small hosting provider focused on being security conscious, proactive, and offering a positive client experience.&lt;br /&gt;
* [http://zensix.com ZenSix Hosting] Cheap OpenVZ based VPS accounts with the SolusVM control panel.&lt;br /&gt;
* [http://zigothosting.com Zigot Hosting] Affordable and Reliable OpenVZ based VPS's within the SolusVM control panel.&lt;br /&gt;
* [http://www.vpsfast.us/usa-vps VPSFast] - VPS Provider with good prices in USA (Los Angeles, New Jersey, New York, Seattle, Washington, Dallas, Chicago, Atlanta, Ashburn, Miami, Piscataway).&lt;br /&gt;
* [http://www.xarixlite.com Xarix Lite] - offers OpenVZ hosting in Charlotte, SC. OpenVZ plans starting at $2.50/mo&lt;br /&gt;
* [https://www.yourlasthost.com YourLastHost] is your high-performance [https://www.yourlasthost.com/openvz-vps.php OpenVZ VPS Hosting] Provider. Get your perfect [https://www.yourlasthost.com/openvz-vps.php VPS Hosting] account today! Available in Los Angeles, Dallas, Jacksonville, USA and France, Europe.&lt;br /&gt;
&lt;br /&gt;
== Vietnam ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://appvz.com AppVZ.com] (www.appvz.com) is a leading web solution provider offering domain, hosting, reseller and VPS hosting packages from 2009. Just recently, the company has offered discount packages where customers can avail managed and un-managed VPS for only $9.5 per month.&lt;br /&gt;
&lt;br /&gt;
= Hosting providers comparison =&lt;br /&gt;
&lt;br /&gt;
It is hard to compare all virtual private server offers provided by different hosting providers.&lt;br /&gt;
Sites below can help you with it.&lt;br /&gt;
&lt;br /&gt;
* [https://www.cheapvpsservers.co.uk/ Cheap VPS Servers]&lt;br /&gt;
* [https://www.hostingmyths.com/ Hosting Myths]&lt;br /&gt;
* [https://cheapwebhosting.review/ VPS servers comparison]&lt;br /&gt;
* [https://reviewsquirrel.com/web-hosting-reviews/ Review Squirrel]&lt;br /&gt;
* [http://lowendstock.com/ Lowendstock]&lt;br /&gt;
* [https://www.websitehostingrating.com/ Best Web Hosting Services]&lt;br /&gt;
* [http://serverbear.com/compare?Sort=RAM&amp;amp;Order=asc&amp;amp;Server+Type=VPS&amp;amp;Monthly+Cost=-&amp;amp;HDD=-&amp;amp;RAM=-&amp;amp;Virtualization=OpenVZ Serverbear]&lt;br /&gt;
* [https://www.comparethehosts.com/vps-web-hosting.htm VPS Web Hosting Reviews]&lt;br /&gt;
* [https://thishosting.rocks/best-cheap-managed-vps/ ThisHosting.Rocks - Managed VPS Providers Comparison]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
http://vpscomp.com&lt;br /&gt;
http://reviewsignal.com/webhosting/compare/&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= See also =&lt;br /&gt;
&lt;br /&gt;
* [[Partners]]&lt;br /&gt;
* [[Download mirrors]]&lt;br /&gt;
* [[VPS vs Dedicated]]&lt;/div&gt;</summary>
		<author><name>Vvs</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.openvz.org/index.php?title=Hosting_providers&amp;diff=23308</id>
		<title>Hosting providers</title>
		<link rel="alternate" type="text/html" href="https://wiki.openvz.org/index.php?title=Hosting_providers&amp;diff=23308"/>
		<updated>2020-05-27T18:12:27Z</updated>

		<summary type="html">&lt;p&gt;Vvs: Undo revision 23305 by 200.24.13.248 (talk)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''OpenVZ is free and open implementation of Virtuozzo containers for Linux.&lt;br /&gt;
Don't forget to keep [[testimonials|testimonial]] and [[donate]] to OpenVZ.'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
OpenVZ makes for a great hosting platform for VPS hosting. The providers below offer VPS services using OpenVZ.&lt;br /&gt;
&lt;br /&gt;
[[File:UsageLocation.svg]]&lt;br /&gt;
&lt;br /&gt;
= OpenVZ hosting providers =&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- @@@@@@@@@@@@@@@@@@@@@@@&lt;br /&gt;
&lt;br /&gt;
IF YOU EDIT THIS PAGE,  PLEASE OBEY TO THE FOLLOWING RULES:&lt;br /&gt;
&lt;br /&gt;
1. Keep your record on ONE line&lt;br /&gt;
2. Keep the list of providers alphabetically sorted, DO NOT insert your record on top.&lt;br /&gt;
3. Keep the list of countries alphabetically sorted as well.&lt;br /&gt;
&lt;br /&gt;
     @@@@@@@@@@@@@@@@@@@@@@@@ --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Andorra ==&lt;br /&gt;
* [https://www.actiu.net/pro/ Actiu informatica] amb servidors dins i fora del principat.&lt;br /&gt;
&lt;br /&gt;
== Argentina ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.fulltech.com.ar/ Full Tech Solutions] Specializes in the virtualization of OpenVZ &amp;amp; Virtuozzo containers, installed in the Full Tech Solutions Data Center located in Villa Elisa, Entre Rios Argentina.  It also offers services hosted in the United States, Netherlands and Germany&lt;br /&gt;
* [http://www.g2khosting.com/ G2K Hosting] offer OpenVZ containers with high level hardware technology from 25 US with Control Panel, various Linux Dists and full support.&lt;br /&gt;
* [https://hostingplus.com.ar/ HostingPlus Argentina] provide OpenVZ containers at our own datacenter in South America with triple internet provider. Starting from  us20/month&lt;br /&gt;
* [https://ibumu.com/ Ibumu] Best containers for wordpress starting from $5.5.&lt;br /&gt;
* [http://www.ihserver.net/ IHServer] Specialized virtualization on OpenVZ containers at Gigared datacenter. We have in Argentina one of the better fiber connection to the US, but also provides services from LSTN in Texas.&lt;br /&gt;
* [https://www.infranetworking.com.ar/ Infranetworking] All our Cloud VPS container solutions for Argentine customers are powered by the all mighty OpenVZ virtualization software.&lt;br /&gt;
* [https://www.neolo.com/ Neolo] provide OpenVZ containers at our own datacenter in South America with double internet provider. Choose your Linux OS and apps. Full support.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [http://www.wiredhosting.com.ar/ WiredHosting] offer XEN and OpenVZ containers with SSD drives, cloudflare security and weekly backups to protect your information. Phone and Helpdesk support. &lt;br /&gt;
&lt;br /&gt;
== Australia == &lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.auhost4u.com/ AUHost4u] - VPS Solutions provided from our D.C. in Sydney.&lt;br /&gt;
* [https://www.conetix.com.au/ Conetix Hosting] Specialising in business grade, fully managed Virtuozzo containers with Virtuzzo Cloud Storage. 100% Australian owned and operated. Brisbane based DC with Enterprise Dell servers.&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides self-managed OpenVZ based SSD VPS located at Equinix SY3 in Sydney, one of the best and well-connected datacenters in the region.&lt;br /&gt;
* [http://www.vpsfast.us/australia-cloud-server VPSFast] - VPS Provider with good prices in Australia.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Austria ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
* [https://kapper.net/ kapper.net] kapper.net offers OpenVZ and Virtuozzo (and other HyperVisors) based server-solutions with kind support and 24x7 maintenance.&lt;br /&gt;
* [https://mdhost.eu/vserver.php MDHost.eu] New Hosting Provider with nice Prices and many Server locations. Austria, Germany, France and more.&lt;br /&gt;
* [https://www.snb.at/ SNB] offers OpenVZ containers and support's also existing vm's in customers environment&lt;br /&gt;
* [https://www.waveride.at/ Waveride] Waveride, an EDIS company, offers budget full gigabit OpenVZ + solusVM VPS in Austria, USA and the Netherlands&lt;br /&gt;
* [http://www.vpsfast.us/austria-cloud-server VPSFast] - VPS Provider with good prices in Austria.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Brazil ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.datacorporate.com.br/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [http://www.globalmedia.com.br/ GlobalMedia] We offers OpenVZ containers hosted on a very fast network with fast setup. Ubuntu, Debian, CentOS.&lt;br /&gt;
* [http://www.host1plus.com.br/ Host1Plus] Servers hosted in São Paulo. We offering reliable and secure OpenVZ VPS Servers with 99.99% up-time, starting from $5.00 per month.&lt;br /&gt;
* [http://www.ipdeck.net/ IPDECK] VPS Linux server from R$15,00/month! Fully customizable according to your needs.&lt;br /&gt;
* [https://www.quantivehost.com.br/ QuantiveHost] VPS Linux with 99.99% uptime. Prices starting from R$ 29,35.&lt;br /&gt;
* [https://www.elevahost.com.br/ Eleva host] Server hosted in Brazil. The best support.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [https://www.ferenz.com.br/ Ferenz Networks] VPS Linux with best support. Prices starting from R$ 29,90.&lt;br /&gt;
&lt;br /&gt;
== Bulgaria ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.cloudhostinghub.com Offshore VPS Hsoting] CloudHostingHub.com is an [https://www.cloudhostinghub.com Cloud Offshore VPS Hosting] located in Buglaria. They provide both OpenVZ and KVM virtualization. CloudHostingHub.com is known for the high privacy protection , performance and stability.&lt;br /&gt;
* [https://www.cyberhour.com CyberHour.com] CyberHour.com is an [https://www.cyberhour.com offshore VPS hosting] provider located in Europe. The provide blazing fast servers and premium Bandwidth of 200Mbps. With high privacy protection.&lt;br /&gt;
* [https://www.linuxssdvps.com Bulgaria VPS] Linux SSD VPS is an [https://www.linuxssdvps.com offshore VPS hosting] provider located in Sofia, Bulgaria. Privacy is very respected and anonymous registrations are allowed, as well as payments via Bitcoin / PayPal.&lt;br /&gt;
* [http://www.webuzo.net Bulgaria VPS] Webuzo Network is an offshore SSD VPS hosting provider located in Bulgaria. Privacy is very respected and anonymous registrations are allowed, as well as payments via Bitcoin / PayPal.&lt;br /&gt;
* [https://vpsbg.eu/en Bulgaria VPS] VPSBG.eu is an offshore SSD VPS hosting provider located in Sofia, Bulgaria. Privacy is very respected and anonymous registrations are allowed, as well as payments via Bitcoin.&lt;br /&gt;
* [http://www.bul.net/ Bul.net] Provides OpenVZ based VPS, perfect user/VPS management via [http://ispsystem.com VDSManager]. Instant creation after online payment. Debian/Ubuntu/CentOS with ISPManager Control panel. Optimal price policy.&lt;br /&gt;
* [http://www.cointech.eu/vps-hosting/ CoInTech] provides OpenVZ based VPS containers, free webmin managment. Containers can be CentOS, Slackware, Ubuntu, custom or our special [http://www.mandriva.com Mandriva Linux] container with own [http://mandriva.cointech.net repository].&lt;br /&gt;
* [http://www.rax.bg/ RAX.bg] Offers OpenVZ based VPS, hosted on a clustered infrastructure and redundant network. Easy to use user management, Instant setup, CentOS (OS).&lt;br /&gt;
* [http://www.jump.bg/ Jump.bg] Provides OpenVZ VPS servers hosted on a redundant network which provides a very easy to manage platform for all clients which gain instant access to their OS ( Ubuntu, CentOS , Debian etc ... )&lt;br /&gt;
* [https://www.fitvps.com/ FitVPS.com] Offers affordable and reliable OpenVZ based VPS in Varna, Bulgaria. Own data center, own multihomed network, with SLA. Instant automatic setup, SolusVM control panel.&lt;br /&gt;
* [http://www.qhoster.com/ QHoster.com] Instant activation OpenVZ VPS in UK, USA, Germany, France and Switzerland. Both 32/64 bit OpenVZ OS VPS templates : CentOS 5/6, Debian 6/7, Ubuntu 12/13.&lt;br /&gt;
* [https://www.verdina.net Verdina.NET] Verdina.net offers dedicated hosting services, provided by powerful dell hardware. Servers are located in Telepoint Datacenter, a Tier 3 DC located in Sofia, Bulgaria.&lt;br /&gt;
* [https://www.vps.ag/ VPS.AG] Affordable and reliable OpenVZ VPS based in Sofia, Bulgaria. Instant setup and 24/7 support.&lt;br /&gt;
* [http://www.vpsfast.us/bulgaria-vps VPSFast] - VPS Provider with good prices in Bulgaria.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Canada ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://4goodhosting.com/linux-vps-hosting 4GooodHosting] - Canadian OpenVZ VPS Servers, Starting from  $18.99/month SSD,. Canada VPS hosting in three different Canadian Data Centers with nightly backups.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [https://whc.ca/canadian-cloud-servers Web Hosting Canada Cloud Servers] - Powerful Cloud servers powered by OpenVZ and located in Canadian datacenters, with fast RAID-10 storage, fully managed with cPanel.&lt;br /&gt;
* [http://compevo.com compevo Clustered VPS Server Hosting Provider] - We offer clustered VPS Servers to avoid downtime and dataloss. Our network and service is second to none and is used by businesses around the world.&lt;br /&gt;
* [http://www.datacorporate.ca/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [https://www.delimiter.com/storage-vps/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [https://www.miditech.com/ MidiTech Hosting Canada] VPS hosting offered by MidiTech Canada are powered by VMware, . Fully Managed VPS with control panels&lt;br /&gt;
* [http://www.gotekky.com Gotekky Cloud VPS Hosting] High quality Cloud VPS packages powered by our own infrastructure and network in Toronto. Scalable from our $5/mo plan all the way to your own dedicated cloud server. Based on OpenVZ and our own proprietary panel.&lt;br /&gt;
* [https://gigebox.com GIGEBOX.COM] GIGEBOX are expert providers of secure business hosting services, we operate high-performance professional servers, specially designed for businesses, powered by the Intel(R) Xeon(R) Hexa-Core CPU Processors and 128 GB DDR3 minimum RAM. Enjoy high availability, performance and security for multiple uses.&lt;br /&gt;
* [http://www.letstalkdigital.com/index.php?option=com_content&amp;amp;view=article&amp;amp;id=73&amp;amp;Itemid=65 LetsTalkDigital VPS Hosting] LetsTalkDigital.com offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from $14.99. Virtual Private Server (VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://secure.media-hosts.com/link.php?id=7 Media-Hosts.com] Provides Quality and Scalable OpenVZ based Virtual Private Servers. 100% network uptime guaranteed. Located in Montreal Quebec with 5 Tier1 upstream providers.&lt;br /&gt;
* [http://www.openvz.ca OpenVZ.ca] Canadian Budget VPS Servers on OpenVZ Platform. &lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [http://protoserver.com ProtoServer] Advanced VPS Hosting from $4.95/month. Many pre-installed VPS Templates available (CMS, E-commerce, Web development, Online community, Media streaming, etc.) No bundles or service plans - mix VPS resources as needed and change VPS configuration anytime. Also offering DNS Hosting, E-mail hosting, Domains Registration.&lt;br /&gt;
* [http://www.vistapages.com/vps Vistapages VPS] - IBM &amp;amp; Dell Hardware. MCI/Verizon Backbone. Distros: Centos, Fedora, Debian &amp;amp; more. Full management available. Located in Toronto.&lt;br /&gt;
* [http://vpsville.ca/ VPSVille] - Good network. Good CPU. Good choice of distros: Centos, Fedora, Debian, Ubuntu, Slackware, Gentoo, OpenSUSE, CERN. My favorite OpenVZ provider. [mailto:jak@isp2dial.com John Kelly]&lt;br /&gt;
* [http://solib.ca/services-offerts/hebergement-haute-vitesse/serveurs-vps/ SOLIB Logiciel Libre Québec] Our company offers DDoS protected server solutions including OpenVZ containers. Very high availability and reliability, all our VPS are located in Quebec, Canada.&lt;br /&gt;
* [https://www.host-stage.net/linux-vps/ HostStage - Linux VPS] - Simple, Reliable OpenVZ VPS packed with 1 GBPS port speed, RAID 10 SSD, Intel Xeon CPU, DDoS Protection from $4.95/month&lt;br /&gt;
* [https://undergroundprivate.com/russiaoffshorevps.html  UndergroundPrivate.com] - OpenVZ with highly privacy, offshore , DMCA ignored , high confidence, SolusVM and cPanel, managed and non managed service.&lt;br /&gt;
* [http://www.vpsfast.us/canada-vps VPSFast] - VPS Provider with good prices in Canada.&lt;br /&gt;
* [https://websavers.ca/canadian-vps-hosting Websavers Inc in Halifax] - VZ containers priced by the resource. Resource changes entirely client-level.&lt;br /&gt;
* [https://www.yoorshop.fr/hosting-ssd-vps-usa-canada.php YOORshop SAS] - High performance NVMe SSD Linux VPS in Canada, daily backup included. Starting from €7,49 /month&lt;br /&gt;
&lt;br /&gt;
== Colombia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.datacorporate.co/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [http://www.soficol.com/ Soficol] Offers Enterprise OpenVZ based VPS, hosted on a clustered infrastructure and redundant network. Easy to use user management and instant setup.&lt;br /&gt;
* [https://www.hostingplus.com.co/ Hosting Plus Colombia] provide OpenVZ containers at our own datacenter in South America with triple internet provider. Starting from  us20/month&lt;br /&gt;
* [https://ibumu.com/ Ibumu] Best containers for wordpress starting from $5.5.&lt;br /&gt;
&lt;br /&gt;
== Czech Republic ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://4smart.cz 4Smart.cz] - prepaid, you are charged only by the system resources you use, therefore you can run a VPS for as little as  1 EUR a month if your vps is not resource hungry. Even if you pay  0,50 EUR  month, you still have 3 GB of RAM and 8 cores available to you VPS.&lt;br /&gt;
* [http://www.freecloud.cz FREECLOUD.CZ] - Free OpenVZ VPS Server - own IP, 800Mhz CPU, 512MB RAM, 50Mbits LAN, 10GB HDD, 100GB Traffic - Debian, Ubuntu, Gentoo, Slackware, Fedora, Centos&lt;br /&gt;
* [http://www.hukot.cz Hukot.cz] - OpenVZ VPS Servers starting from 2.92 €, XEON, 1 Gbps uplink, unlimited traffic. Debian, Ubuntu, CentOS, Scientific, SuSe, Fedora, Elastix.&lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [http://www.ultimatehosting.eu UltimateHosting.eu] - OpenVZ VPS Servers starting from $8 with custom configuration - up to 100 GB HDD, 2048 MB RAM, 2 GHz CPU, and unlimited traffic.&lt;br /&gt;
* [http://www.mujhost.net MUJHOST.NET] - OpenVZ VPS Servers starting from 160 Kč, 100Mbps / 1 Gbps uplink, unlimited traffic. Debian, Ubuntu, CentOS ...&lt;br /&gt;
&lt;br /&gt;
== Chile ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.1h.cl/ 1h.cl Vps - Chile] - VPS High Performance with OpenVZ in Chile&lt;br /&gt;
* [http://www.1hosting.cl/ 1hosting Virtual servers - Chile] - VPS Professional with OpenVZ&lt;br /&gt;
* [http://www.dch.cl/ DCH] - DCH.cl Hosting Chile - High Performance VPS Servers with OpenVZ &lt;br /&gt;
* [http://ecohosting.cl/ EcoHosting.cl Santiago - Chile] - VPS with OpenVZ in Chile&lt;br /&gt;
* [http://www.host.cl/ Host.cl] - Cloud Computing&lt;br /&gt;
* [http://www.hostingplus.cl/ HostingPlus Internet Limitada] - High Performance Vps provider in Chile&lt;br /&gt;
* [http://www.hostname.cl/ Hostname Ltda] - VPS Hosting with Datacenter in Chile&lt;br /&gt;
* [http://www.inc.cl/ INC Internet Limitada] - VPS Hosting provider in Chile&lt;br /&gt;
&lt;br /&gt;
== Denmark ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.vpsfast.us/denmark-cloud-server VPSFast] - VPS Provider with good prices in Denmark.&lt;br /&gt;
&lt;br /&gt;
== Ecuador ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.dedi.space/ DediSpace Telecom] - VPS Servers in Ecuador - USA, France, Germany, Ecuador Datacenter.&lt;br /&gt;
&lt;br /&gt;
== France ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.BargainVPS.co.uk/ BargainVPS] - UK / US / EU Instant setup VPS - We have some great Linux &amp;amp; Windows Bargain VPS packages on offer for you here all available Fully Managed.&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in France from 1.88EUR/month.&lt;br /&gt;
* [http://www.fixweb.com Fixweb] Great managed hosting provider with strong anti ddos solution - openvz only - leader in managed openvz solution with horizontal scaling and high availability&lt;br /&gt;
* [http://www.Freaksol.com/ FreaKs VPS Hosting] Self reliant hosted on independent networks &amp;amp; DC low ping,No restrictions on file types,Unlimited resources,high ram servers &lt;br /&gt;
* [https://galaxyhostplus.com/ovz GalaxyHostPlus] Cheap VPS Hosting based in Roubaix with new 2016 line starts from $2/Month &lt;br /&gt;
* [http://www.harmony-hosting.com Harmony-Hosting] A high performance VPS hosting - The leader in France&lt;br /&gt;
* [https://www.delimiter.com/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [http://www.lws.fr/serveur_dedie_linux.php LWS - Linux VPS ] - Linux VPS Hosting - Only 9.99€/month, Affordable and Secure OpenVZ VPS Servers with 99.99% up-time, web hosting control panel Included. French datacenter&lt;br /&gt;
* [http://www.ovh.co.uk/vps/ OVH VPS] linux from 3€/month, [http://www.ovh.co.uk/vps/vps-cloud.xml windows] from 12€/month.&lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [https://VPSZ.FR VPSZ] VPS Hosting in France. Starting from 2,99€, Unlimited traffic.&lt;br /&gt;
* [http://www.1euro-hosting.eu BEST EU VPS - 1€ Hosting] - Providing reliable and secure OpenVZ VPS Servers with 99.99% up-time, starting from 8€&lt;br /&gt;
* [https://www.shape.host/linux-vps/ Shape Host - Linux VPS] - OpenVZ virtual servers, Instant Linux VPS&lt;br /&gt;
* [https://undergroundprivate.com/russiaoffshorevps.html  UndergroundPrivate.com] - OpenVZ with highly privacy, offshore , DMCA ignored , high confidence, SolusVM and cPanel, managed and non managed service.&lt;br /&gt;
* [https://www.host-stage.net/linux-vps/ HostStage - Linux VPS] - Simple, Reliable OpenVZ VPS packed with 1 GBPS port speed, RAID 10 SSD, Intel Xeon CPU from $4.95/month&lt;br /&gt;
* [https://www.yoorshop.hosting/hosting-vps-ssd-europe.php YOORshop SAS] - High performance NVMe SSD OpenVZ 7 VPS within 13 countries in Europe, Canada and Singapore. Daily backup included. From €7,49 /month&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Germany ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://afterburst.com Afterburst (Previously FanaticalVPS)]: affordable unmetered, unmanaged VPS servers in Germany.&lt;br /&gt;
* [http://www.b2b-hosting.de/vps/ B2B Hosting]: Professional virtual servers for business applications. Performance and reliability at a fair price. Made with OpenVZ.&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in Germany from 1.88EUR/month.&lt;br /&gt;
* [https://www.delimiter.com/dedicated-servers/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [https://galaxyhostplus.com/ovz GalaxyHostPlus] Cheap VPS Hosting based in Frankfurt with new 2016 line starts from  $2/Month&lt;br /&gt;
* [http://hostmist.com/openvz-vps-germany.html Host Mist]: features budget OpenVZ VPS hosting in Germany.&lt;br /&gt;
* [http://www.host1plus.com/ Host1Plus] Servers based in Frankfurt am Main. Offering reliable OpenVZ based VPS servers in Germany starting from $2.50 per month.&lt;br /&gt;
* [http://www.hostingjuice.com/ HostingJuice] The Superioum VPS and Web Hosting provider, low prices - Premium packages.&lt;br /&gt;
* [http://www.ingate.de/managed-server.html Ingate] offers managed servers with openVZ virtualization. located in germany, great support.&lt;br /&gt;
* [http://linevast.de/angebote/linux-openvz-vserver-mieten.html Linevast] Reliable OpenVZ based VPS with fast support, located in germany&lt;br /&gt;
* [https://cp.myvirtualserver.com/?affid=42 MyVirtualServer]: Cheap VPS (OpenVZ/KVM, 5TB Traffic, 10Gigabit), servers located in Frankfurt (best ping, starting 1.99€) good support (en/de) //New Design!&lt;br /&gt;
* [https://www.nogics.com Nogics Technologies]: Affordable VPS based in Germany. Starts from $5.96/mo.&lt;br /&gt;
* [http://www.plambee.de/vserver.php Plambee.de Webhosting]: Powerfull OpenVZ based VPS servers at low cost with hosting in Germany&lt;br /&gt;
* [https://rackset.com/ Rackset Hosting] Managed Dedicated / VPS and Website Hosting services since 2004.&lt;br /&gt;
* [http://www.serverbiz.de/vserver Serverbiz] Powerful VPS at very low prices.&lt;br /&gt;
* [http://www.synapseglobal.com/voip_vps.html SynapseGlobal.com] Elastix, Trixbox, PBX in a Flash and Asterisk VPS - OpenVZ based Asterisk VOIP servers located in Munich Germany.&lt;br /&gt;
* [http://www.vStarVPS.com vStarVPS]: Reliable VPS Hosting at lowest prices, with 99.9% uptime, Premium Unmetered Bandwidth and Custom HDD/RAM of your choice. Instant and FREE Setup. RapidLeech Allowed.&lt;br /&gt;
* [http://whynotavps.com WhyNOTaVPS]: Instant activated VPS SERVERS!!&lt;br /&gt;
* [http://squote.de/index.php?ref=1421485383 SQuote]: SQuote VPS Hosting and more. VPS 1 Core, 1.024MB RAM, 512MB RAM SWAP, 50 GB HDD, 1x IPv4. 3,89EUR/month. For the best VPS SQuote.de&lt;br /&gt;
* [http://www.vpsfast.us/germany-vps VPSFast] - VPS Provider with good prices in Germany.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Guatemala ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.globalnetcafe.com/gnc/menu/hospedaje.htm Global Net Cafe]: Servicios de hospedaje, reseller, vps, colocacion y servidores. Incluyendo OpenVZ.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Hong Kong ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [https://hostus.us HostUS] features unmanaged and managed OpenVZ VPS in Hong Kong as well as 3 USA locations. Unparalleled connectivity to the Asia Pacific. Enjoy 15% off with coupon VPS15OFF.&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides self-managed OpenVZ based SSD VPS in Hong Kong, located at the Pacnet datacenter. &lt;br /&gt;
* [http://vps.timway.com/linux_vps.html Timway VPS Hosting] - Quality, non-oversold hosting provider focused on being security conscious and offering a positive client experience.   Centos, Debian, Fedora, OpenSuse and Ubuntu Containers are available.&lt;br /&gt;
* [http://www.vpsfast.us/hong-kong-cloud-server VPSFast] - VPS Provider with good prices in Hong Kong.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Hungary ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://elin.hu/index.php?menu=8&amp;amp;nyelv=hu&amp;amp;cim=Virtualis-szerver Virtual server] OpenVZ server: 2xX5650 Intel Xeon, 32GB RAM, 15.000rpm SAS disks, 100Mbit/s, unlimited bandwith.&lt;br /&gt;
* [https://www.ivirtual.co/vps-hosting/ iVirtual.co ] OpenVZ Master Server: 2x Intel Xeon @ 3.0GHZ, 64 GB ECC Ram, 15k RPM SAS HDD's, 1Gbit/s Network, Unlimited bandwith.&lt;br /&gt;
&lt;br /&gt;
== Iceland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
&lt;br /&gt;
== Ireland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== India ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://cochinwebhost.in/budget-vps-hosting/ Low Cost VPS Hosting] Fast SSD VPS Server for Hosting Solutions at budget prices with 24x7 Technical Support.&lt;br /&gt;
&lt;br /&gt;
* [http://www.datacorporate.in/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
&lt;br /&gt;
*[http://www.fastwebhost.in/vps-hosting.html fastwebhost VPS Hosting] VPS hosting offered by fastwebhost are powered by ''VPS hosting, virtual server hosting and Linux VPS hosting services''. Fully Managed VPS with control panels.&lt;br /&gt;
&lt;br /&gt;
* [http://www.Freaksol.com/ Freaksol VPS Hosting] Self reliant hosted on independent networks &amp;amp; DC low ping to India,No restrictions on file types,Unlimited resources,high ram servers&lt;br /&gt;
&lt;br /&gt;
* [https://www.geniushost.in Genius Host] Fully managed [https://www.geniushost.in SSD Web Hosting] offered by Genius Host are powered by ''OpenVZ'' With LiteSpeed Web Server &amp;amp; Mariadb.&lt;br /&gt;
&lt;br /&gt;
* [http://www.hioxindia.com/virtual-private-server.php VPS Hosting] Reliable and quality VPS Virtual Private Server Hosting&lt;br /&gt;
&lt;br /&gt;
* [https://www.hostnamaste.com HostNamaste] is your high-performance [https://www.hostnamaste.com/openvz-vps.php OpenVZ VPS Hosting] Provider. Get your perfect [https://www.hostnamaste.com/openvz-vps.php VPS Hosting] account today! Available in [https://www.hostnamaste.com/datacenter-losangeles.php Los Angeles], [https://www.hostnamaste.com/datacenter-dallas.php Dallas], [https://www.hostnamaste.com/datacenter-jacksonville.php Jacksonville], USA,  [https://www.hostnamaste.com/datacenter-france.php France], Europe, [https://www.hostnamaste.com/datacenter-mumbai-pune.php Mumbai], India and [https://www.hostnamaste.com/openvz-vps-moscow-russia.php Moscow], Russia.&lt;br /&gt;
&lt;br /&gt;
* [https://www.hostsoch.in/windows-hosting.html HostSoch Windows Hosting] Windows hosting offered by HostSoch are powered by ''Windows 2012, ASP.NET, MVC, IIS, PHP and More''. 99.9% Uptime, 24/7 Dedicated support guaranteed. &lt;br /&gt;
&lt;br /&gt;
* [https://www.miditech.co.in/ MidiTech VPS Hosting] VPS hosting offered by MidiTech are powered by ''VMware, ''. Fully Managed VPS with control panels. &lt;br /&gt;
&lt;br /&gt;
* [http://www.milesweb.com/vps-hosting.php Milesweb VPS Hosting] VPS hosting offered by Milesweb are powered by ''VMware, OpenVZ''. Fully Managed VPS with control panels. &lt;br /&gt;
&lt;br /&gt;
* [https://www.nogics.com/web/vps-hosting/ Nogics Technologies] Instant provisioning of VPS, VPS starts from $5.96/mo. 30+ OS templates.&lt;br /&gt;
&lt;br /&gt;
* [http://overlineindia.net/vpshosting-p-62.html Overline India VPS Hosting] Fully managed cPanel Installed VPS Hosting with 24x7x365 Live Chat Tech support, powered by OpenVZ&lt;br /&gt;
&lt;br /&gt;
* [http://www.prohosterz.com/linux-vps.php ProHosterZ VPS Hosting] Reliable and quality Virtual Dedicated Servers | Virtual Private Servers | XEN VPS | OpenVZ VPS | Virtual Hosting&lt;br /&gt;
&lt;br /&gt;
* [http://pve.proxmox.com/wiki/User:Apmuthu Ap.Muthu] sponsored by [http://www.gnuacademy.org GNUAcademy], [http://www.planettel.com.sg PlaNetTel] and [http://www.sacollege.net S A College] creates OpenVZ Templates for the Open Source Community and provides hosting in datacenters of clients choice or on site.&lt;br /&gt;
&lt;br /&gt;
* [http://www.servers.co.in/vps/vps_hosting.php Server Web Hosting] Offers Fully Managed OpenVZ VPS Web hosting in India/US/UK at affordable and cheap rates with best hardware quality and customer service 24/7/365 days&lt;br /&gt;
&lt;br /&gt;
* [http://vpsbeach.com VpsBeach Managed Hosting] Fully managed cPanel Installed VPS Hosting with 24x7x365 Live Chat Tech support, powered by OpenVZ&lt;br /&gt;
&lt;br /&gt;
* [http://www.vpsfast.us/india-vps VPSFast] - VPS Provider with good prices in India.&lt;br /&gt;
&lt;br /&gt;
* [http://www.vpshostingindia.net/ VPS Hosting India, Fully Managed Server] A Committed Fully Managed VPS Server for Hosting solution in India, Complete Technical Support assistance with commitment of fast, clustered and most supportive DataCenters.&lt;br /&gt;
* [http://touchstone.hosting/ Touchstone Solutions Private Limited] High-performance Enterprise VPS Hosting in India. One of the highest performing VPS Servers available with cPanel Installed.&lt;br /&gt;
* [http://www.hostitsmart.com/ Host IT Smart] - One of the best VPS Hosting Provider in India with 24X7X365 Customer support.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Indonesia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.herza.id/vps-murah/ Herza.ID] Low Cost OpenVZ Virtual Server, starting from IDR 50.000 / Month with RAID 10 SSD, Unlimited Bandwidth with 1 Gbps IIX &amp;amp; OIXP Connection, and 24/7 Technical Support.&lt;br /&gt;
&lt;br /&gt;
== Iran==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.ehost.ir EHost.ir] - OpenVZ Servers , DUAL XEON Cpus , 12 Gb Ram , 100Mbit Dedicated Connection , SAS HardDisk&lt;br /&gt;
* [http://www.vpsfa.com VPSFa.com] - OpenVZ Servers , DUAL XEON Cpus -  , 24Gb Ram , 1000Mbit Dedicated Connection , SAS HardDisk&lt;br /&gt;
* [https://webramz.com Webramz Host] - With more than 15 years experience in Managed Hosting, Webramz was first vps provider in Iran which used to setup OpenVZ servers. Nowadays we provide wide range of services including CloudLinux based OpenVZ and Managed Vps Servers.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Italy ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
* [http://www.hosting-italia.net hosting italia] - OpenVZ Servers and panel enduser Virtualizor Intel® Core™ i7-920 Quad-Core 48 GB DDR3 RAM - Guaranteed Bandwidth 200 Mbit/s&lt;br /&gt;
* [http://www.vpsfast.us/italy-vps VPSFast] - VPS Provider with good prices in Italy.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Liechtenstein ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
&lt;br /&gt;
== Lithuania ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.cloudlix.com/ CloudLix.com] - Managed and unmanaged OpenVZ virtual servers based on 2.6.32 kernel. Up to 20GHz (Intel SandyBridge) CPU and 10GB RAM. Located in Vilnius and Siauliai.&lt;br /&gt;
* [http://www.databank.lt/ databank.lt] - high-quality professional OpenVZ hosting with cloud computing solutions.&lt;br /&gt;
* [https://www.hostens.com Hostens] - Fast and reliable OpenVZ servers in Lithuania.&lt;br /&gt;
* [https://www.lavavps.lt/ lavavps.lt] - Professional high-quality OpenVZ containers (VPS servers) affordable for everyone. Powerful control panel for VPS management.&lt;br /&gt;
* [https://monovm.com/ monovm.com] - High Quality VPS Hosting Provider&lt;br /&gt;
* [http://www.serveriai.lt/ Serveriai.lt] - Affordable OpenVZ containers on quality HP hardware. Wide choice of virtual dedicated servers up to 8 CPU cores and 8 GB RAM. Full management available. Located in Vilnius.&lt;br /&gt;
* [https://billing.time4vps.eu/?affid=1359 Time4VPS.EU] - Powerful cloud technology based infrastructure will let you build custom virtual machine and pay only for what you really need. Located in Vilnius city.(0.99€/month(2Yr) 512mbRAM, 1TB Traffic// 4.5€/month(2Yr) StorageVps, 1TB, 10TB Traffic)&lt;br /&gt;
* [https://www.vpsnet.lt/en/ VPSnet.lt] - Powerful and high quality servers for a competitive price in Lithuania (Eastern Europe).&lt;br /&gt;
* [http://www.vpsfast.us/lithuania-vps VPSFast] - VPS Provider with good prices in Lithuania.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Latvia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.altnet.lv/ Altnet] - Hosting and colocation services. Any flawor, you name it. &lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
&lt;br /&gt;
* [http://www.vpsfast.us/latvia-vps VPSFast] - VPS Provider with good prices in Latvia.&lt;br /&gt;
&lt;br /&gt;
== Luxembourg ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.vpsfast.us/luxembourg-vps VPSFast] - VPS Provider with good prices in Luxembourg.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Malaysia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.cubiex.com/ Cubiex] - Malaysia Affordable Web Hosting and Domain Name. Affordable Linux VPS Hosting in Malaysia. OpenVZ based, Quad Core Xeon node. cPanel/WHM and DirectAdmin also available.&lt;br /&gt;
* [https://controlvm.com ControlVM] ControlVM Sdn. Bhd. offering OpenVZ VPS in Singapore, Malaysia, USA and Germany.&lt;br /&gt;
* [https://www.yoorshop.fr/hosting-ssd-vps-singapore-asia.php YOORshop SAS] - High performance SSD Linux VPS In Singapore with daily backup included. Starting from €7,49 /month&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Malta ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.a6it.com/ A6iT] - Stable, quality managed OpenVZ VPSs based in Malta.  Redundant network.&lt;br /&gt;
&lt;br /&gt;
== Morocco ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.belsemtech.com/ BelsemTech.CoM] BelsemTech SARL offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from 300 DH. Virtual Private Server (VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://www.hostoweb.com/ HosToWeb] is the only company providing VPS hosting in Morocco Data Center.&lt;br /&gt;
* [http://www.adk-media.com/ ADK Media] provides affordable managed and unmanaged virtual servers based on OpenVZ, Xen Paravirtualization and Xen HVM platforms. 24/7 Technical Support. Distros: Centos, Fedora, Debian, Ubuntu and more.&lt;br /&gt;
* [http://www.naja7host.com/ Naja7Host.CoM] The Naja7host SARL provides affordable VPS hosting using the OpenVZ platform. Running on Full Quality Nodes of up to 8 CPU and 16 GB RAM. . All VPS's come with Real 24/7/365  Technical Support and cPanel free (if option selected  ). Multiple choice of OS 32/64Bits (Centos, fedora, ubuntu, debian .ect ...)&lt;br /&gt;
* [http://www.lehoster.com/ Le Hoster] offers affordable Virtual Private Servers using the OpenVZ and KVM platform. Backed with our amazing customer support.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Netherlands ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.avanpad.com/ Avanpad] offers OpenVZ VPS hosting with 24\7 online support. Customer can request different control panels or templates for installation on his VPS.&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in Netherlands from 1.88EUR/month.&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
* [http://www.Freaksol.com/ FreaKs VPS Hosting] Self reliant hosted on independent networks &amp;amp; DC low ping around the world,No restrictions on file types,Unlimited resources,high ram servers&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [http://www.HostSailor.com/ HostSailor] Number 1 Netherlands Provider HostSailor provides affordable &amp;amp; high quality services such as VPS (XEN, OpenVZ and KVM) Linux or Windows, Dedicated servers, SSL certificates and domain name services.&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides self-managed OpenVZ SSD VPS in Telecity AMS 5, one of the best datacenters located in the Amsterdam area.&lt;br /&gt;
* [https://iniz.com/ INIZ VPS Hosting] INIZ provides affordable VPS Hosting in Amsterdam, Netherlands with high resources at low prices.&lt;br /&gt;
* [https://www.liteserver.nl/ LiteServer] Looking for a quality and affordable VPS in the center of The Netherlands? We provide SSD, Storage and High Bandwidth VPSes, starting at only €16 per year. We operate AS60404.&lt;br /&gt;
* [https://www.mangelot-hosting.nl/ Mangelot Hosting] Mangelot Hosting, A webhosting company located in the Netherlands, offers budget OpenVZ hosting solutions for maximum scalability en performance.&lt;br /&gt;
* [http://www.osbox.nl OsBoX Dutch Network Engineering] Cheap VPS host as low as $1 per month. Very great uptime and a overall good support. Check the website for the server plans.&lt;br /&gt;
* [http://www.signet.nl/ Signet VPS Hosting] - Signet delivers VPS hosting plans based on CentOS or Debian templates, including control-panel Virtualmin.&lt;br /&gt;
* [http://simple-webhosting.eu/ Simple-webhosting.eu] - OpenVZ based web hosting starting from €0.98 per month.&lt;br /&gt;
* [https://www.seedvps.com SeedVPS] Provides Powerful &amp;amp; Reliable OVZ/KVM VPS Hosting in The Netherlands&lt;br /&gt;
* [http://www.touchvps.com/ TouchVPS] is a company who offer Support and Managed Services for OpenVZ Servers ,also offer templates for openvz ready to go with cPanel , DirectAdmin , Plesk , Games, IRC Services, Desktop and many more.&lt;br /&gt;
* [http://www.voipcomplete.com/product-overview/dedicated-vps.html VOIPcomplete] offers dedicated VPS plans based on CentOS including a VPS management interface.&lt;br /&gt;
* [https://www.waveride.at/ Waveride] Waveride, an EDIS company, offers budget full gigabit OpenVZ + solusVM VPS in Austria, USA and the Netherlands&lt;br /&gt;
* [https://undergroundprivate.com/russiaoffshorevps.html  UndergroundPrivate.com] - OpenVZ with highly privacy, offshore , DMCA ignored , high confidence, SolusVM and cPanel, managed and non managed service.&lt;br /&gt;
* [https://www.totallyhosted.nl/ TotallyHosted] OpenVZ based Premium VPS services located in the Netherlands @ Serverius DC.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [http://www.vpsfast.us/netherlands-vps VPSFast] - VPS Provider with good prices in Netherlands.&lt;br /&gt;
&lt;br /&gt;
== Norway ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.vpsfast.us/norway-vps VPSFast] - VPS Provider with good prices in Norway.&lt;br /&gt;
&lt;br /&gt;
== Pakistan ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://vimzaa.com/ Vimzaa] The best hosting in Pakistan.&lt;br /&gt;
&lt;br /&gt;
== Philippines ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.web.com.ph/vps.php Web.com.ph] - provides OpenVZ virtual servers in the Philippines.&lt;br /&gt;
&lt;br /&gt;
== Perú ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.hn.pe/ Hostname] Hostname offers business OpenVZ containers in Perú&lt;br /&gt;
* [http://www.hostingandino.pe/ Hostingandino Lima - Peru] - VPS with OpenVZ in Peru&lt;br /&gt;
* [http://www.hostingplus.pe/ HostingPlus Internet Limitada] - High Performance Vps provider in Peru&lt;br /&gt;
* [https://www.hostingroup.com/ Hostingroup] Web hosting for small businness in Perú.&lt;br /&gt;
* [https://hostingweb.pe/ Hosting Web] The best hosting in PERU.&lt;br /&gt;
* [https://www.inchosting.pe/ HostingINC SAC] OpenVZ virtualization solutions for business in Perú.&lt;br /&gt;
* [https://www.mejorhosting.pe/ Mejor Hosting Perú] Hosting comparison for peruvian hosting providers.&lt;br /&gt;
* [https://webuniversal.pe/ Web Universal] The best hosting in PERU in the World.&lt;br /&gt;
&lt;br /&gt;
== Poland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://hosteam.pl/ HosTeam] offers OpenVZ VPS hosting from their DataCenter in Poland. Customer has choice of all major Linux distros (WARNING!!! restoring your backup is VERY expensive and they charge even if it wasn't restored correctly!), NATIVE IPV6 AVAILABLE!&lt;br /&gt;
&lt;br /&gt;
* [http://ultimahost.pl/ UltimaHost] high grade OpenVZ VPS and FreeBSD jail (DC in Łódź, Poland), brand of statnet.pl, SSD available for more expensive packets, NO IPV6 AVAILABLE (but they can load you tun module)&lt;br /&gt;
&lt;br /&gt;
* [http://budgetvps.pl/ BudgetVPS] very cheap, low end grade OpenVZ VPSes (DC in Gdańsk, Poland), brand of HitMe.pl&lt;br /&gt;
&lt;br /&gt;
* [https://hitme.pl/ HitMe.pl] high grade OpenVZ/Xen PV/Xen HVM VPSes, Virtuozzo (DC in Gdańsk, Poland), NATIVE IPV6 AVAILABLE (/64 on demand for free)!&lt;br /&gt;
&lt;br /&gt;
* [http://www.kr-cpd.pl/oferta/serwery-vps/ KR-CPD] Cracow's Center of Data Processing (DC of course in Cracow, Poland)&lt;br /&gt;
&lt;br /&gt;
* [http://livenet.pl Livenet] cheap, middle/low end OpenVZ VPSes (DC in Łódź, Poland)&lt;br /&gt;
&lt;br /&gt;
* [http://slaskdatacenter.pl/ Śląsk Data Center] high/middle grade OpenVZ VPSes (DC in Silesia province, Poland), SSD available for more expensive packets&lt;br /&gt;
&lt;br /&gt;
* [https://www.ionic.pl/ IONIC.pl] VPS OpenVZ with SolusVM control panel, own DC in Cracow&lt;br /&gt;
&lt;br /&gt;
* [https://microvps.pl/ MicroVPS.pl] Middle And low end OpenVZv7 VPS plans. SSD for regular VPS and HHD for storage plans (up to 1TB)&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Portugal ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.ptservidor.pt/ PTServidor] - OpenVZ virtual servers with free management based in Portugal.&lt;br /&gt;
* [http://www.efeito.net/ Weblevel.pt] - OpenVZ virtual servers based in Portugal.&lt;br /&gt;
* [https://www.webtuga.pt/ WebTuga] - Managed/Unmanaged Virtual Private Servers hosted in a Portuguese Datacenter with lots of extras&lt;br /&gt;
* [https://www.cloudfire.pt/ CloudFire] - OpenVZ VPS at very low prices hosted in Portugal&lt;br /&gt;
* [https://www.linxisp.com/ LINXISP] - High Availability &amp;amp; Performance OpenVZ Containers&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] - Build an OpenVZ VPS in 14 locations WordWide From £2.49&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Romania ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.intovps.com IntoVPS] - offers unmanaged OpenVZ virtual servers based in Romania, Netherlands and USA. A lot of resources for decent prices.&lt;br /&gt;
* [http://www.ename.ro/dedicated.html eName] - managed OpenVZ virtual servers in Bucharest, Romania&lt;br /&gt;
* [http://www.ch-center.com/virtual-servers Ch-center] - unmanaged OpenVZ virtual servers, based in Romania in it's own Data Center&lt;br /&gt;
* [http://www.clouds.ro/servere-virtuale/ Clouds] - OpenVZ virtual servers hosted on premium hardware, in Romania&lt;br /&gt;
* [http://www.HostSailor.com/ HostSailor] HostSailor provides affordable &amp;amp; high quality OpenVZ and KVM servers in Romania&lt;br /&gt;
* [https://www.shape.host/linux-vps/ Linux VPS] - OpenVZ virtual servers, Instant Linux VPS&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Russia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.internoc24.host Internoc24.HOST] is an international [https://www.www.internoc24.host Offshore VPS ] provider with reliable SSD VPS in Moscow, Russia. Focus ist on high privacy protection so they accept several Cryptocurrencies like Bitcoin, Ethereum and others for anonymous payments.&lt;br /&gt;
* [http://www.ihc.ru/vps.html IHC.RU] - VPS hosting in Moscow, Russia starting at $10/month with good set of precreated templates&lt;br /&gt;
* [http://mchost.ru/services/linux-vps/ McHost.ru] - Linux VDS Hosting from McHost.&lt;br /&gt;
* [http://hosting.agava.ru/vps/ AGAVA] - Linux VPS hosting based on OpenVZ.&lt;br /&gt;
* [http://vdsplanet.ru/ VDSPlanet.ru] - unmanaged VDS/VPS hosting starting at 3.99$ a month. Large variety of OS templates and free ISPmanager Lite control panel. Total automation is our goal.&lt;br /&gt;
* [http://www.demos.ru/service/datacenter/vps.html Demos-Internet] - we offer OpenVZ Virtual Private Server based on Linux.  All VPS come with ISPmanager control panel.&lt;br /&gt;
* [http://www.net.ru/service/net9/ www.net.ru] - OpenVZ virtual private servers.&lt;br /&gt;
* [http://www.eurobyte.ru/ Eurobyte.ru] - Linux VDS Hosting from Eurobyte.&lt;br /&gt;
* [https://undergroundprivate.com/russiaoffshorevps.html  UndergroundPrivate.com] - OpenVZ with highly privacy, offshore , DMCA ignored , high confidence, SolusVM and cPanel, managed and non managed service.&lt;br /&gt;
* [http://www.telekom.ru/service/vps.html Elvis Telekom] - OpenVZ hosting with base and cpanel templates from Elvis Telekom.&lt;br /&gt;
* [http://fastvps.ru/vds/ FastVPS] - OpenVZ hosting, ISPmanager, Hetzner, MayFlower.&lt;br /&gt;
* [https://lepus.su/vps.html Lepus] - OpenVZ hosting, SSD, ISPmanager free, Hetzner.&lt;br /&gt;
* [http://www.hts.ru/vds/ HTS] - OpenVZ hosting, ISPmanager, Linux VPS hosting based on OpenVZ in Moscow.&lt;br /&gt;
* [https://selectel.ru/services/vds/ Selectel] - OpenVZ hosting.&lt;br /&gt;
* [https://galaxydata.ru/root-server/ GalaxyData] - Virtuozzo Containers in Cloud Storage.&lt;br /&gt;
* [http://hosterbox.ru/servers/ Hosterbox.ru] - Managed VPS hosting. Based on OpenVZ + SolusVM + ISPmanager.&lt;br /&gt;
* [https://firstvds.ru FirstVDS.ru] - One of the leading hosting companies providing virtual private servers.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Singapore ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://conceptlane.com/?t=hostingservices#ratesvps ConceptLane Pte Ltd] - OpenVZ VPS on dual octa-core AMD Opterons running Debian Wheezy 7, custom control panel with bandwidth graphs, reboot/reinit and web-based VNC access.&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [http://www.qoxy.com/vps QOXY.com] Affordable and Reliable OpenVZ VPS Hosting in a Singapore Data Center.&lt;br /&gt;
* [http://www.secureax.com/ SecureAX Pte Ltd] - Singapore Premium Internet Solution Provider&lt;br /&gt;
* [http://www.planettel.com.sg PlaNetTel] - Affordable and customised OpenVZ containers across 3 data centers - contact Thomas Festus at +65-66936881. [http://pve.proxmox.com/wiki/User:Apmuthu#Squeeze_based_Templates Sponsors OpenVZ Container Template]s for the Open Source community.&lt;br /&gt;
* [http://www.vpsfast.us/singapore-vps VPSFast] - VPS Provider with good prices in Singapore.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Serbia ==&lt;br /&gt;
* [https://www.skyhosting.rs/en/vps-servers SkyHosting] - Fast Linux OpenVZ VPS SSD Hosting with SolusVM control panel.&lt;br /&gt;
* [https://www.ninet.rs/en/vps-servers NiNet Company] - Linux OpenVZ VPS servers. Well known VPS hosting company from Serbia with their own data center&lt;br /&gt;
* [http://www.suonline.net SuOnline.Net ISP] - Linux OpenVZ VPS servers, Docker enabled !!!&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== South Africa ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.host1plus.com/ Host1Plus] - Local South African servers hosted in Johannesburg. OpenVZ VPS servers starting from $3.00 per month.&lt;br /&gt;
* [http://www.vps.co.za/ VPS.CO.ZA] - South Africa's oldest VPS provider. Local South African servers with SolusVM control panel. OpenVZ, Xen and OnApp Cloud.&lt;br /&gt;
* [http://247hosting.co.za/vpshosting.php 247Hosting] - OpenVZ virtual servers locally in South Africa with SolusVM control panel. cPanel option available!&lt;br /&gt;
* [http://www.SoftDux.co.za/ SoftDux] - OpenVZ virtual servers based America &amp;amp; South Africa. All VPS's come with cPanel or Plesk control panels. XEN VPS's also available.&lt;br /&gt;
* [http://www.clickworks.co.za/ Clickworks] - OpenVZ / Xen VPS servers hosted in RSA. Backed by Solusvm control panel.&lt;br /&gt;
* [http://www.elitehost.co.za/ Elite Host] - OpenVZ virtual servers based in America &amp;amp; South Africa. All VPS's come with cPanel and unlimited bandwidth.&lt;br /&gt;
* [http://www.telasera.com/ Telasera] - OpenVZ VPS servers hosted in South Africa. Supermicro Servers powered by Intel Xeon with 24/7 Support.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Spain ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.actiu.net/pro/ Actiu informatica]&lt;br /&gt;
* [http://www.corpresa.com/servidores-virtuales.html Corpresa Hosting] - Tiene algún proyecto entre manos y un plan de hosting no le hes sufuciente y un servidor dedicado no está dentro de su presupuesto?, una solución de VPS a medida será la que cubrirá todas sus necesidades.&amp;quot;&lt;br /&gt;
* [https://www.datomedia.es Datomedia] - Cloud alta disponibilidad powered by Virtuozzo 6 y Servidores VPS bajo openvz y kvm.&lt;br /&gt;
* [https://www.evidaliahost.com/vps/ EvidaliaHosting] - Servidores VPS totalmente configurados con panel de gestión Plesk 12.5, garantía de devolución de 30 días y posibilidad de discos SSD.&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
* [https://ginernet.com/vps-ssd.php GINERNET] - Servidores VPS alojados en España desde 1.99€/mes.&lt;br /&gt;
* [https://www.hostingplus.com.es Hosting Plus España] provide OpenVZ containers at our own datacenter. Starting from us20/month RAID 10 SSD.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Sweden ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.admax.se/vps/ Admax] - Admax offers enterprise grade virtual servers with great pricing. Custom control panel, API, remote access &amp;amp; more.&lt;br /&gt;
* [https://www.acon.se/vps Acon VPS Server] - VPS Server and Dedicated server provider in Sweden.&lt;br /&gt;
* [https://www.glesys.com/vps.php GleSYS] - VPS Provider with a great control panel and good prices&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides the highest quality SSD VPS in Stockholm, Sweden. Based on completely pure SSD in RAID-10 and delivering extremely high network &amp;amp; hardware performance along with reliability.&lt;br /&gt;
* [https://www.nametyper.com NameTyper] - VPS and Shared hosting provider. Customize your own OpenVZ Container with 1-12 cores running on SSD and ECC RAM. &lt;br /&gt;
* [https://virtualcenter.se VirtualCenter] - The first Cloud provider with SSD VPS in Sweden. Offer enterprise class hardware and network infrastructure&lt;br /&gt;
* [http://www.vpsfast.us/sweden-vps VPSFast] - VPS Provider with good prices in Sweden.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Switzerland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
* [http://www.vpsfast.us/switzerland-vps VPSFast] - VPS Provider with good prices in Switzerland.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Tanzania==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.aptus.co.tz/ Aptus Solutions] - OpenVZ / SolusVM VPS Servers located in Dar es Salaam - 100meg to TIX. CentOS &amp;amp; Ubuntu.&lt;br /&gt;
&lt;br /&gt;
== UK ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.34sp.com/ 34SP.com] - We're a UK based web hosting company, bridging the gap between sophisticated hosting solutions &amp;amp; affordable prices&lt;br /&gt;
* [http://www.AceShells.com/ AceShells] - Fast, stable, high quality UK based virtual private servers from just £5 a month, operating since 2001&lt;br /&gt;
* [http://www.AtlanticServers.com/ Atlantic Servers] - Affordable VPS, stable, high quality VPS, UK based Data Centre&lt;br /&gt;
* [https://awebhosting.uk/ AWebHosting.uk] VPS hosting offered by [https://awebsolutions.uk/ AWEBSOLUTIONS LIMITED] reliable UK hosting provider located in London, UK and Hosted in UK DataCentre.* [http://www.BargainVPS.co.uk/ BargainVPS] - UK / US / EU Instant setup VPS - We have some great Linux &amp;amp; Windows Bargain VPS packages on offer for you here all available Fully Managed.&lt;br /&gt;
* [http://www.cheapvps.co.uk/ CheapVPS] - CheapVPS provide cheap, UK based OpenVZ VPS servers. Hosted on high end hardware, in a top UK datacenter backed up with 24/7/365 support. Choice from a wide range of Linux distros. OpenVZ VPS managed with SolusVM.&lt;br /&gt;
* [http://www.chilliserver.com/ Chilliserver] - Affordable plans starting from just £3.99, not oversold. RHEL6 Kernel with VSwap, TUN/TAP/FUSE and ACL support enabled. SolusVM control panel with custom snapshot system and rescue system. Based in a European data Centre with UK based support.&lt;br /&gt;
* [http://www.chvps.com/ CHVPS] - Switzerland Based VPS, Cheap Pricing with solusVM control panel.&lt;br /&gt;
* [http://www.cislondon.co.uk/virtual-private-servers/ Commercial Internet Solutions] - CIS provides premium hosting at competitive rates, focused on Small Businesses within the M25 orbital. Hosting is on Dual Quad core Intel Xeon supermicro servers in Tier 4 datacenters around London.&lt;br /&gt;
* [http://www.datacorporate.co.uk/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [http://domvps.com/ domVPS] - OpenVZ Virtual Servers in the USA, Germany, France &amp;amp; the Netherlands at a low cost.&lt;br /&gt;
* [http://www.DubHosting.co.uk/ DubHosting] - DubHosting started in 2004 has been providing cost effective hosting to clients world wide. Fully managed OpenVZ servers based in Europe &amp;amp; US are one of their many strong points. They can provide you with a dedicated server and install openvz allowing you to sell your own vps servers. Their servers are located at UKGrid in Manchester with 24/7/365 support&lt;br /&gt;
* [http://www.europhase.net/virtual-private-servers/ Europhase UK Limited, UK VPS] - OpenVZ VPS Hosting, Virtual Dedicated Servers, UK VPS hosted at multiple UK datacentres from £4.99&lt;br /&gt;
* [https://farbyte.uk/vps Farbyte VPS] - UK based OpenVZ VPS and shared web hosting services&lt;br /&gt;
* [http://www.fdqwholesale.co.uk FDQ Wholesale] - UK based hosting services&lt;br /&gt;
* [http://www.gemvps.net/ GemVPS.NET] - UK (Manchester) Based Company, OpenVZ Virtual Servers in the UK &amp;amp; France on Fast nodes.&lt;br /&gt;
* [http://www.hadrill.org.uk Hadrill Online] - Fully managed hosting with unlimited bandwidth. Quotes available through contact form.&lt;br /&gt;
* [http://www.infrenion.com./uk_vps_hosting.html Infrenion Networks UK] Cheap, economical and reliable web hosting solutions, VPS based on the openVZ platform. You can host any YouTube Clone scripts with free FFMPEG setup on our vps servers. Also offers with a choice of selecting DataCenter.&lt;br /&gt;
* [https://www.laws-hosting.co.uk/vps-hosting.php Laws Web Hosting] - Laws Web Hosting offers OpenVZ VPS Hosting with packages starting from £5.50/m that will cater for anyone. We have OpenVZ VPS hosting solutions, and come with moderate DDoS protection.&lt;br /&gt;
* [http://www.letstalkdigital.com/index.php?option=com_content&amp;amp;view=article&amp;amp;id=73&amp;amp;Itemid=65 LetsTalkDigital VPS Hosting] - LetsTalkDigital.com offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from $14.99. Virtual Private Server(VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://www.meteorvps.com/ MeteorVPS] - Professional, Non-Oversold amazing VPS plans pretty cheap using SolusVM management, range from 512MB -&amp;gt; 16GB&lt;br /&gt;
* [http://www.minivps.co.uk miniVPS] miniVPS offers VPS hosting solutions with nodes located in UK, utilising openvz/solusvm with future locations of USA and UK. &lt;br /&gt;
* [https://www.first2host.co.uk First2Host Cheap VPS] - Intel Xeon E5-2630v3 OpenVZ VPS Servers. Don't be defined by a pre-made VPS plan. Create your own VPS Plan by assigning the resources that you require. SATA, SSD or NVMe storage 100 MBPS, 250 MBPS, 500 MBPS, 1GBPS speeds and free cPanel licenses.&lt;br /&gt;
* [http://www.phurix.co.uk/ Phurix] - A UK based web solutions company that provides you with reliable hosting at extremely affordable prices, VPS server virtualization using OpenVZ.&lt;br /&gt;
* [http://www.qualityservers.co.uk Quality Servers] - Affordable OpenVZ virtual servers based in the UK and USA. Choice of control panels and management options.&lt;br /&gt;
* [http://www.rackburst.net/ Rackburst] - UK SSD VPS Hosting with fast UK-based Live Support available from £1.49 per month.&lt;br /&gt;
* [http://www.rshosting.co.uk/vps.html RSHosting UK] - Offering the most secure, reliable, stable and fast UK VPS Web Hosting based on OpenVZ architecture. Our Virtual Dedicated Servers are physically hosted on powerfull Quad Core servers located in multiple UK datacentres.&lt;br /&gt;
* [http://www.sharkserve.rs SharkServers] - Low Cost OpenVZ virtual servers in the UK. Choice of control panels and management options. Own Datacentre.&lt;br /&gt;
* [https://www.ukhost4u.com/ UKHost4u] - A leading provider of VPS solutions for over 19 years!&lt;br /&gt;
* [http://www.vpsfast.us/united-kingdom-vps VPSFast] - VPS Provider with good prices in UK.&lt;br /&gt;
* [http://www.vpsmachine.co.uk/ vpsMachine] Quality openvz hosting platform with a large choice of customer OS templates.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [https://www.webhostuk.co.uk/vps-hosting.html WebHostUK LTD] - Offers Cheap yet Best UK VPS Web Hosting working on OpenVZ Platform.We offers fully Managed UK VPS with true 24/7/365 days support.All our Servers are located in UK London DC.&lt;br /&gt;
* [http://www.webhostinguk.com/vps/vps-hosting.html Web Hosting UK] - Fully managed OpenVZ VPS Hosting offered on fast and reliable and affordable servers in UK &amp;amp; European datacenter with 24x7x365 days lightning fast support.&lt;br /&gt;
* [http://www.weycrest.co.uk/vps-hosting.php Weycrest VPS] - Low Cost, Stable OpenVZ and Parallels' Virtuozzo Virtual Private Server solutions. London UK Hosted at Coreix with a choice of operating systems, and root and control panel options.&lt;br /&gt;
* [http://www.xilo.net/virtual_private_servers-vps/ XILO] - UK-based hosting with UK-based support. VPS services offered with a choice of cPanel, Webmin and other useful applications, VoIP, SIP, VPN to name a few.&lt;br /&gt;
* [http://www.zxvps.co.uk/ ZxVPS VPS Hosting] - Quality, non-oversold VPS based on the openVZ platform, using SolusVM management panel, VPS from 128mb - 2gb, cpanel, direct admin, kloxo, etc.&lt;br /&gt;
&lt;br /&gt;
== Ukraine ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://ekvia.com/ Ekvia] - VDS/VPS based on OpenVZ. Free trial 14 days. Domain registration for VDS/VPS.&lt;br /&gt;
* [http://www.gelihost.com/ Geliar Hosting Solutions] - Fast virtual dedicated servers based on OpenVZ. Geliar Hosting Solutions offering many control panels and other useful services.&lt;br /&gt;
* [http://www.hostpro.ua/ Hostpro.ua] - Full managed OpenVZ servers.&lt;br /&gt;
* [http://www.vpsfast.us/ukraine-vps VPSFast] - VPS Provider with good prices in Ukraine.&lt;br /&gt;
&lt;br /&gt;
== USA ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.a2hosting.com A2 Hosting] is your high-performance [http://a2hosting.com/openvz-vps-hosting OpenVZ VPS Hosting] provider. Design your perfect [http://a2hosting.com/vps-hosting VPS Hosting] account today! Featuring SwiftServers and SSDs with page load speeds up to 300% faster compared to standard drives.&lt;br /&gt;
* [http://www.afterburst.com Afterburst] (Previously FanaticalVPS): affordable unmetered, unmanaged VPS servers in NY.&lt;br /&gt;
* [https://www.asurahosting.com/ AsuraHosting] offers powerful, reliable, and simple OpenVZ VPS to clients. AsuraHosting has a dedicated support team, and quality hosting; Pricing starts at just $5/month!&lt;br /&gt;
* [http://beyondhosting.net BeyondHosting.net] High Performance OpenVZ Virtual Private Servers (VPS)  Tier 1 US Datacenter.&lt;br /&gt;
* [http://buyvm.net BuyVM.net] DDoS Protection, three datacenter locations, Stallion control panel. Affordable quality VPS hosting since 2010!&lt;br /&gt;
* [https://www.binarycpu.com Binary Computer Solutions] has provided OpenVZ based Virtual Private Server hosting for over 5 years.  Network outages are a thing of the past, and oversold services are never heard of here.  Built on solid technology, with infrastructure to match - Binary Computer Solutions will give you hosting you need, without the cost others ask for.  Starting at $30.00/mo.&lt;br /&gt;
* [http://www.bodhost.com/ Bodhost.com] Fast, Reliable and secure web hosting service with 24*7 free customer service.&lt;br /&gt;
* [http://www.buildyourvps.com/ BuildYourVPS.com] mix ‘n’ match your VPS; choose only the bandwidth, RAM, disk capacity, type of IP connection, level server redundancy, and the support/monitoring you want. [http://www.buildyourvps.com/ BuildYourVPS] is the 1st to offer you a highly-customized VPS solution, without making you pay for unused extra features.&lt;br /&gt;
* [https://www.budgetvm.com/openvz-linux-vps.php BudgetVM.com] Each server includes our industry-leading SLA, DDoS protection, 200Gbps networks and 7 * 24-hour customer support.&lt;br /&gt;
* [http://www.byethost.com Byethost.com] offers OpenVZ based VPS Hosting as its main VPS solution, with the hypervm panel. Centos, Debian, Fedora, OpenSuse and Ubuntu Containers are available.&lt;br /&gt;
* [http://cheaperasp.net CheaperASP.Net] provides Quality web hosting on the OpenVZ platform. You also help you get best options at [http://cheaperasp.net/godaddy-1-hosting-free-domain-promo/ affordable] cost.&lt;br /&gt;
* [http://www.chhost.net/vps.htm CH Hosting VPS Hosting] CH Hosting or chhost.net offers OpenVZ based VPS Hosting. 24/7 Support. Upgrade/Downgrade your plan as needed on-the-fly without the risk of downtime. Since 2006. Non-Oversell&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in USA from 1.88EUR/month.&lt;br /&gt;
* [http://www.cloudshards.com Cloud Shards] High Performance, reliable, stable and affordable OpenVZ Virtual Private Servers (VPS) in data centers across the USA.&lt;br /&gt;
* [https://cloudgearhosting.com CloudGear Hosting] - offers OpenVZ hosting in 4 locations across the USA. Including free DDoS Protection and free SSL with cPanel.&lt;br /&gt;
* [http://www.datacorporate.com/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [https://www.delimiter.com/storage-vps/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [https://www.cheapdomainnamesdot.com Domain Host SSL] provides Reliable web hosting with OpenVZ platform Since 2003, Located New York city, Atlanta, Los Angeles. &lt;br /&gt;
* [http://www.DubHosting.com/ DubHosting] - DubHosting started in 2004 has been providing cost effective hosting to clients world wide. Fully managed OpenVZ servers based in Europe &amp;amp; US are one of their many strong points. They can provide you with a dedicated server and install openvz allowing you to sell your own vps servers.&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
* [http://www.ethernetservers.com/ Ethernet Servers] A leading provider of OpenVZ Virtual Servers in Los Angeles, Miami and Buffalo with SolusVM.&lt;br /&gt;
* [http://www.evolucix.com/ Evolucix.com] Evolucix offers state of the art, professional, and reliable OpenVZ VPS solutions on top-notch hardware while providing quality support.&lt;br /&gt;
* [http://www.evolvedservers.com Evolvedservers.com] Openvz based vps servers. Hosted in Michigan, USA. 24/7 Support. Hosted in tier-3 and tier-4 datacenter's with multiple redundancies.&lt;br /&gt;
* [http://fastwebhost.com/vps-hosting.html Fastwebhost]: affordable cloud VPS servers using OpenVZ. &lt;br /&gt;
* [http://www.fliphost.net Fliphost.net]: Powerful, affordable instant setup VPS systems. Servers based in Phoenix Az with another location coming soon.&lt;br /&gt;
* [http://www.frontrangehosting.com Front Range Hosting]: SSD Cached KVM &amp;amp; OpenVZ VPS Hosting Prices Start at 2.00/mo, located in Colorado Springs, Colorado.&lt;br /&gt;
* [http://glesys.se GleSYS] is a hosting company specialized in serverhosting. Also offering VPS hosting mainly based on OpenVZ. GleSYS has provided access to server and Cisco hardware for developers from OpenVZ to find problem with VLAN implementation.&lt;br /&gt;
* [http://goodealhosting.com/ GOODEALHOSTING.com] Quality Hosting Solutions! Provides affordable unmanaged/managed VPS based on OpenVZ! start from $10.00, real 24/7 support.&lt;br /&gt;
* [http://gothost.net GotHost.net] Providing OpenVZ based VPS Hosting with SolusVM. All nodes are Quad Core Xeon with RAID-10 for speed and redundancy. Budget plans starting at $7.99.&lt;br /&gt;
* [http://www.greengeeks.com/ GreenGeeks Hosting] VPS Hosting. Dual Intel Xeon 64-Bit CPU's, DDR3 RAM, RAID-10 SSD Storage Arrays. 24/7 Support. cPanel/WHM + more!&lt;br /&gt;
* [http://hostarmor.com HostArmor™] - is best known for low-cost and reliable shared hosting and dedicated servers. Recently the company expanded to offer OpenVZ virtual server plans at 8 worldwide locations, five in the U.S., one in Germany, one in France, and one in the Netherlands. VPS plans start at $13.99/month.&lt;br /&gt;
* [http://www.host4geeks.com Host4Geeks] - Host4Geeks is a premium Fully Managed VPS provider with datacenters across 2 locations in US and in UK. All servers offer a free cPanel license.&lt;br /&gt;
* [http://www.host1plus.com Host1Plus] - OpenVZ based virtual servers in Chicago and Los Angeles. VPS plans start at $2.00 per month.&lt;br /&gt;
* [http://www.hostavps.com HostAVPS] - Providing Fully Managed VPS's on both the West &amp;amp; East Coast.&lt;br /&gt;
* [https://www.hostcapitol.com Host Capitol] offers fast and reliable web hosting services, including OpenVZ VPS Hosting, to clients ranging from small businesses to corporations. Located in Piscataway, New Jersey.&lt;br /&gt;
* [http://www.hostcolor.com Host Color] - OpenVZ based virtual servers hosted in a Tier 4 class data center based out of South Bend, Indiana. Juniper managed, fully-redundant network with uplinks to Level 3, Cogent and Internap.&lt;br /&gt;
* [https://www.hostgalaxy.com HostGalaxy] - OpenVZ based virtual servers. The fastest hosting in the Galaxy!&lt;br /&gt;
* [http://www.hostigation.com Hostigation] - High resource unmanage VPS hosting solutions.&lt;br /&gt;
* [http://www.hostingrails.com Hosting Rails] offers Rails-targeted OpenVZ VPS Hosting and updated Rails-ready OS images.&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [http://www.hostmist.com Host Mist] features budget OpenVZ VPS hosting from four major cities across the US.&lt;br /&gt;
* [http://www.hostrush.com HostRush] Self managed, ssd vps for business and non business. &lt;br /&gt;
* [http://www.dailyhosting.net hostoople] We offer OpenVZ VPS hosting from Dallas Texas, Starting at $29.95/month &lt;br /&gt;
* [https://hostus.us HostUS] provides unmanaged and managed OpenVZ VPS in Atlanta, Dallas and Los Angeles with custom control panel. A large variety of Linux distros are available. Enjoy 15% off with coupon VPS15OFF.&lt;br /&gt;
* [https://www.hostwinds.com Hostwinds] Affordable managed/unmanaged VPS Solutions.&lt;br /&gt;
* [http://hostsia.com Hostsia] With HOSTSIA Web services, you can get an OpenVZ VPS for only $15.00/mo. Each OpenVZ VPS includes multiple free-of-charge bonuses and offers a 99.9% uptime guarantee. You can also use our charge-free Hepsia CP, which is available with each OS – it permits you to host an unmetered number of domains and comprises heaps of handy tools, which will help you better manage your site and your VPS web hosting account.&lt;br /&gt;
* [http://www.infrenion.com./vps_hosting.html Infrenion Networks] Cheap, reliable and secure VPS hosting solutions, based on the openVZ platform. You can host any YouTube Clone scripts with enhanced support quality round the clock.&lt;br /&gt;
* [http://iniz.com/ INIZ VPS Hosting] INIZ provides affordable VPS Hosting in Los Angeles &amp;amp; New York with high resources at low prices.&lt;br /&gt;
* [https://www.interserver.net/ InterServer Web Hosting] Fast &amp;amp; Reliable VPS - 24x7 Support. 99.9% Up-time, Hosting Since 1999!.&lt;br /&gt;
* [http://www.joinvps.com JoinVPS.com] ISPmanager OpenVZ based VPS hosting. 24/7 Technical Support. Free ISPmanager control panel.&lt;br /&gt;
* [http://www.lovevps.com LoveVPS] Budget VPS provider starting at $5.99/month located in the US with Xeon nodes.&lt;br /&gt;
* [http://www.letstalkdigital.com/index.php?option=com_content&amp;amp;view=article&amp;amp;id=73&amp;amp;Itemid=65 LetsTalkDigital VPS Hosting] LetsTalkDigital.com offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from $14.99 Virtual Private Server(VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://lylix.net LYLIX] offers affordable VPS hosting with a choice of eight different Linux distributions, dedicated VPS hosting, and specializes in Asterisk/VOIP based hosting including Trixbox, AsteriskNow, Elastix, and PBX-in-a-Flash.  Popular choice for unmanaged IP-PBX services; entire infrastructure built on a High-availability (HA) network across three regional NOCs.&lt;br /&gt;
* [http://www.micfo.com Micfo.com] offers VPS hosting services for both Linux VPS hosting and Window VPS hosting on affordable price combined with world-class 24x7x365 support.&lt;br /&gt;
* [http://www.neostreams.info/neoshop/cart.php?gid=9 nEo Stream Services] Offer's Top Quality OpenVZ Servers, Starting at $18.95 per month! SolusVM Control panel , 7 day Money Back Guarantee , 24x7 Professional Support.&lt;br /&gt;
* [http://pogiweb.com/vps/ PogiWeb LLC] Instant and free setup. Includes SolusVM control panel and free level 1 support during first month.&lt;br /&gt;
* [http://www.theserverexperts.com TheServerExperts.com] TheServerExperts VPS line is the ideal solution for clients who require the control of a dedicated server matched with the affordability and simplicity of a traditional shared hosting account.&lt;br /&gt;
* [http://thenynoc.com New York NOC] affordable Linux VPS hosting out of New York and Chicago. Plans as low as $5 a month and are backed by a redundant infrastructure and 24/7 support.&lt;br /&gt;
* [http://railsplayground.com RailsPlayground.com] Ruby on Rails VPS with ready to go Rails images with the LxAdmin control panel&lt;br /&gt;
* [http://www.raidlogic.net RaidLogic.NET] RaidLogic.NET offers OpenVZ based Linux VPS out of multiple facilities across the United States, including Miami, Los Angeles, and Chicago. Starting as low as $3.95/month.&lt;br /&gt;
* [http://www.ramhost.us RAM Host] RAM Host offers OpenVZ based Linux VPS out of multiple facilities across the United States, including Atlanta, Kansas City, and Phoenix.&lt;br /&gt;
* [http://www.reconhosting.com Recon Hosting] Recon Hosting offers affordable OpenVZ VPS solutions where you get Quality Hosting at a Fraction of the price. Instant setup with the latest Operating System templates including cPanel.&lt;br /&gt;
* [http://www.rokabear.com Rokabear] Rokabear offers OpenVZ Linux VPS, Dedicated Server, and Colocation. All Hardware setup in High Availability mode including raided drives and redudnant power and network connections. With multiple upstream providers, Rokabear's connectivity is fast and reliable! Rokabear supports LAMP, Openvpn, and Asterisk configurations. VPSes start at $7.99!&lt;br /&gt;
* [https://www.rosehosting.com RoseHosting] offers OpenVZ Linux virtual servers equipped with Enterprise Grade SSD drives. All hosting plans are fully-managed with FREE 24/7 support, FREE website migration, FREE weekly backups and FREE server monitoring included.&lt;br /&gt;
* [http://www.rshosting.com/vps.html RSHosting.com] RSHosting offers the most secure, reliable and stable VPS - Virtual Private Servers based on OpenVZ architecture, powered by the most professional and qualified 24/7 lightening fast support.&lt;br /&gt;
* [http://www.servercomplete.com Server Complete, LLC] Server Complete offers OpenVZ based Linux VPS out of multiple facilities across the United States, including Atlanta, Dallas, and Chicago.&lt;br /&gt;
* [http://www.servergrove.com ServerGrove] uses OpenVZ as the main virtualization platform for its state of the art VPS hosting services.&lt;br /&gt;
* [http://serverswarm.com ServerSwarm] provides stable, affordable, high performance OpenVZ virtual private servers.&lt;br /&gt;
* [http://Sharktech.net Sharktech] provides custom OpenVZ solutions DDOS-protected up to 100Gbps.&lt;br /&gt;
* [http://www.silverrack.com/ SilverRack VPS Hosting] - SilverRack provides affordable VPS hosting using the OpenVZ platform.&lt;br /&gt;
* [http://www.soficol.com/ Soficol] Offers Enterprise OpenVZ based VPS, hosted on a clustered infrastructure and redundant network. Easy to use user management and instant setup.&lt;br /&gt;
* [http://www.spectrohost.com/ Spectro Host] - Offers performance VPS Servers running openvz. Always the most resources and never over committing OpenVZ nodes.&lt;br /&gt;
* [http://www.budgetvds.com/ BudgetVDS] - Offers VPS Servers running openvz we've been in business for 2 years now using openvz platform.&lt;br /&gt;
* [http://www.syera.net/ Syera Networks] Unmetered VPS From $18.88/M, 24/7 Support, OpenVZ/HyperVM, Instant Setup!, Free 1Gbps Upgrade with Coupon: syera1G&lt;br /&gt;
* [http://www.synapseglobal.com/voip_vps.html SynapseGlobal.com] Elastix, Trixbox, PBX in a Flash and Asterisk VPS - OpenVZ based Asterisk VOIP servers with 14 Tier 1 premium bandwidth providers.&lt;br /&gt;
* [http://www.tektonic.net TekTonic] provides VPS hosting services using both Virtuozzo and OpenVZ technology.&lt;br /&gt;
* [http://www.tigerservers.com/ TigerServers] - Provides affordable managed VPS based on OpenVZ. Servers located in Chicago, Illinois&lt;br /&gt;
* [http://www.tocici.com/ TOCICI VPS Hosting Services] Since 1995 TOCICI has offered web hosting services, with 24/7 support commitments and a strong non-oversell policy. Our purpose-built hosting infrastructure has serviced many organizations for over a decade. Offering OpenVZ VPS, data center colocation, and equipment leasing options, visit our website for prices and more details.&lt;br /&gt;
* [http://www.ultravps.com UltraVPS] UltraVPS offers managed and unmanaged OpenVZ-based VPS hosting utilizing dual CPU hardware nodes with redundant, high-performance RAID-10 storage.  UltraVPS offers VPS servers with many popular control panel options and turn-key applications.&lt;br /&gt;
* [http://www.vpsfx.com VPSFX] VPSFX.com offers OpenVZ VPS, data center colocation, and dedicated servers.&lt;br /&gt;
* [http://www.Webhost.US.Com/linuxvps.html US Web Hosting]  Webhost.US.Com offers powerful GUI based VPS management system with full OpenVZ, Xen Paravirtualization and Xen HVM support.All our Virtual Private servers are fully Managed with 99.9% uptime and 24/7 top notch support.&lt;br /&gt;
* [http://unixservice.com Unixservice/unxsVZ] Low cost OpenVZ ONLY hosting we specialize in Mail, DNS and RADIUS multiple container hosting. At the world famous Market St. San Jose, CA Silicon Valley datacenter. Ping times from your containers to local yahoo and google sites guaranteed single digit ms times. Your containers are backed up at 4 local and 2 remote locations. Contact supportgrp at unixservice dot com.&lt;br /&gt;
* [http://www.vogenic.xyz Vogenic: Cloud Services] If you are searching for an upgrade to the shared hosting service, then you should consider our OpenVZ or KVM VPS hosting services.&lt;br /&gt;
* [http://vpslink.com VPSLink.com] provides virtual private server hosting on the OpenVZ platform.&lt;br /&gt;
* [http://www.vpsspeed.com/ VPSSpeed] - VPSSpeed provides unmanaged OpenVZ based VPS hosting with over 50 OS Templates, real 24/7/365 support and fast US servers. No overselling.&lt;br /&gt;
* [http://vpsnoc.com VPSNOC] offers unmanaged vps hosting based in the USA utilizing OpenVZ hypervisor behind an in-house VPS control panel.&lt;br /&gt;
* [https://www.waveride.at/ Waveride] Waveride, an EDIS company, offers budget full gigabit OpenVZ + solusVM VPS in Austria, USA and the Netherlands&lt;br /&gt;
* [http://www.webappcabaret.com WebAppCabaret] provides VPS solutions for hosting applications. We offer OpenVZ with cPanel or Plesk for web site management; and NGASI Universal App Manager for deploying and managing JAVA and RAILS applications.&lt;br /&gt;
* [http://www.wirenine.com/vps-hosting/ WireNine.com VPS Hosting] Low cost fully managed and unmanaged OpenVZ based VPS Hosting with SAS 15k enterprise drives in high-performance RAID-10 storage.&lt;br /&gt;
* [http://www.zoidial.com/ Zoidial Hosting and VPS] - offers VPS and Virtual Dedicated Server solutions utilizing OpenVZ.  In business since 1998, Zoidial Incorporated is a small hosting provider focused on being security conscious, proactive, and offering a positive client experience.&lt;br /&gt;
* [http://zensix.com ZenSix Hosting] Cheap OpenVZ based VPS accounts with the SolusVM control panel.&lt;br /&gt;
* [http://zigothosting.com Zigot Hosting] Affordable and Reliable OpenVZ based VPS's within the SolusVM control panel.&lt;br /&gt;
* [http://www.vpsfast.us/usa-vps VPSFast] - VPS Provider with good prices in USA (Los Angeles, New Jersey, New York, Seattle, Washington, Dallas, Chicago, Atlanta, Ashburn, Miami, Piscataway).&lt;br /&gt;
* [http://www.xarixlite.com Xarix Lite] - offers OpenVZ hosting in Charlotte, SC. OpenVZ plans starting at $2.50/mo&lt;br /&gt;
* [https://www.yourlasthost.com YourLastHost] is your high-performance [https://www.yourlasthost.com/openvz-vps.php OpenVZ VPS Hosting] Provider. Get your perfect [https://www.yourlasthost.com/openvz-vps.php VPS Hosting] account today! Available in Los Angeles, Dallas, Jacksonville, USA and France, Europe.&lt;br /&gt;
&lt;br /&gt;
== Vietnam ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://appvz.com AppVZ.com] (www.appvz.com) is a leading web solution provider offering domain, hosting, reseller and VPS hosting packages from 2009. Just recently, the company has offered discount packages where customers can avail managed and un-managed VPS for only $9.5 per month.&lt;br /&gt;
&lt;br /&gt;
= Hosting providers comparison =&lt;br /&gt;
&lt;br /&gt;
It is hard to compare all virtual private server offers provided by different hosting providers.&lt;br /&gt;
Sites below can help you with it.&lt;br /&gt;
&lt;br /&gt;
* [https://www.cheapvpsservers.co.uk/ Cheap VPS Servers]&lt;br /&gt;
* [https://www.hostingmyths.com/ Hosting Myths]&lt;br /&gt;
* [https://cheapwebhosting.review/ VPS servers comparison]&lt;br /&gt;
* [https://reviewsquirrel.com/web-hosting-reviews/ Review Squirrel]&lt;br /&gt;
* [http://lowendstock.com/ Lowendstock]&lt;br /&gt;
* [https://www.websitehostingrating.com/ Best Web Hosting Services]&lt;br /&gt;
* [http://serverbear.com/compare?Sort=RAM&amp;amp;Order=asc&amp;amp;Server+Type=VPS&amp;amp;Monthly+Cost=-&amp;amp;HDD=-&amp;amp;RAM=-&amp;amp;Virtualization=OpenVZ Serverbear]&lt;br /&gt;
* [https://www.comparethehosts.com/vps-web-hosting.htm VPS Web Hosting Reviews]&lt;br /&gt;
* [https://thishosting.rocks/best-cheap-managed-vps/ ThisHosting.Rocks - Managed VPS Providers Comparison]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
http://vpscomp.com&lt;br /&gt;
http://reviewsignal.com/webhosting/compare/&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= See also =&lt;br /&gt;
&lt;br /&gt;
* [[Partners]]&lt;br /&gt;
* [[Download mirrors]]&lt;br /&gt;
* [[VPS vs Dedicated]]&lt;/div&gt;</summary>
		<author><name>Vvs</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.openvz.org/index.php?title=Hosting_providers&amp;diff=23307</id>
		<title>Hosting providers</title>
		<link rel="alternate" type="text/html" href="https://wiki.openvz.org/index.php?title=Hosting_providers&amp;diff=23307"/>
		<updated>2020-05-27T18:11:58Z</updated>

		<summary type="html">&lt;p&gt;Vvs: Undo revision 23306 by 200.24.13.248 (talk)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''OpenVZ is free and open implementation of Virtuozzo containers for Linux.&lt;br /&gt;
Don't forget to keep [[testimonials|testimonial]] and [[donate]] to OpenVZ.'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
OpenVZ makes for a great hosting platform for VPS hosting. The providers below offer VPS services using OpenVZ.&lt;br /&gt;
&lt;br /&gt;
= OpenVZ hosting providers =&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- @@@@@@@@@@@@@@@@@@@@@@@&lt;br /&gt;
&lt;br /&gt;
IF YOU EDIT THIS PAGE,  PLEASE OBEY TO THE FOLLOWING RULES:&lt;br /&gt;
&lt;br /&gt;
1. Keep your record on ONE line&lt;br /&gt;
2. Keep the list of providers alphabetically sorted, DO NOT insert your record on top.&lt;br /&gt;
3. Keep the list of countries alphabetically sorted as well.&lt;br /&gt;
&lt;br /&gt;
     @@@@@@@@@@@@@@@@@@@@@@@@ --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Andorra ==&lt;br /&gt;
* [https://www.actiu.net/pro/ Actiu informatica] amb servidors dins i fora del principat.&lt;br /&gt;
&lt;br /&gt;
== Argentina ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.g2khosting.com/ G2K Hosting] We offers OpenVZ containers with high level hardware technology from 25 US with Control Panel, various Linux Dists and full support.&lt;br /&gt;
* [http://www.wiredhosting.com.ar/ WiredHosting] We offers XEN and OpenVZ containers with SSD drives, cloudflare security and weekly backups to protect your information. Phone and Helpdesk support. &lt;br /&gt;
* [http://www.ihserver.net/ IHServer] Specialized virtualization on OpenVZ containers at Gigared datacenter. We have in Argentina one of the better fiber connection to the US, but also provides services from LSTN in Texas.&lt;br /&gt;
* [https://www.fulltech.com.ar/ Full Tech Solutions] Specializes in the virtualization of OpenVZ &amp;amp; Virtuozzo containers, installed in the Full Tech Solutions Data Center located in Villa Elisa, Entre Rios Argentina.  It also offers services hosted in the United States, Netherlands and Germany&lt;br /&gt;
* [https://www.neolo.com/ Neolo] We provide OpenVZ containers at our own datacenter in South America with double internet provider. Choose your Linux OS and apps. Full support.&lt;br /&gt;
* [https://www.infranetworking.com.ar/ Infranetworking] All our Cloud VPS container solutions for Argentine customers are powered by the all mighty OpenVZ virtualization software.&lt;br /&gt;
&lt;br /&gt;
== Australia == &lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
[https://www.conetix.com.au/ Conetix Hosting] Specialising in business grade, fully managed Virtuozzo containers with Virtuzzo Cloud Storage. 100% Australian owned and operated. Brisbane based DC with Enterprise Dell servers.&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides self-managed OpenVZ based SSD VPS located at Equinix SY3 in Sydney, one of the best and well-connected datacenters in the region.&lt;br /&gt;
* [http://www.vpsfast.us/australia-cloud-server VPSFast] - VPS Provider with good prices in Australia.&lt;br /&gt;
&lt;br /&gt;
== Austria ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
* [https://kapper.net/ kapper.net] kapper.net offers OpenVZ and Virtuozzo (and other HyperVisors) based server-solutions with kind support and 24x7 maintenance.&lt;br /&gt;
* [https://mdhost.eu/vserver.php MDHost.eu] New Hosting Provider with nice Prices and many Server locations. Austria, Germany, France and more.&lt;br /&gt;
* [https://www.snb.at/ SNB] offers OpenVZ containers and support's also existing vm's in customers environment&lt;br /&gt;
* [https://www.waveride.at/ Waveride] Waveride, an EDIS company, offers budget full gigabit OpenVZ + solusVM VPS in Austria, USA and the Netherlands&lt;br /&gt;
* [http://www.vpsfast.us/austria-cloud-server VPSFast] - VPS Provider with good prices in Austria.&lt;br /&gt;
&lt;br /&gt;
== Brazil ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.datacorporate.com.br/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [http://www.globalmedia.com.br/ GlobalMedia] We offers OpenVZ containers hosted on a very fast network with fast setup. Ubuntu, Debian, CentOS.&lt;br /&gt;
* [http://www.host1plus.com.br/ Host1Plus] Servers hosted in São Paulo. We offering reliable and secure OpenVZ VPS Servers with 99.99% up-time, starting from $5.00 per month.&lt;br /&gt;
* [http://www.ipdeck.net/ IPDECK] VPS Linux server from R$15,00/month! Fully customizable according to your needs.&lt;br /&gt;
* [http://www.quantive.com.br/ QuantiveHost] VPS Linux with 99.99% uptime. Prices starting from R$ 29,35.&lt;br /&gt;
* [https://www.elevahost.com.br/ Eleva host] Server hosted in Brazil. The best support.&lt;br /&gt;
&lt;br /&gt;
== Bulgaria ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* [https://www.cyberhour.com CyberHour.com] CyberHour.com is an [https://www.cyberhour.com offshore VPS hosting] provider located in Europe. The provide blazing fast servers and premium Bandwidth of 200Mbps. With high privacy protection.&lt;br /&gt;
* [https://www.linuxssdvps.com Bulgaria VPS] Linux SSD VPS is an [https://www.linuxssdvps.com offshore VPS hosting] provider located in Sofia, Bulgaria. Privacy is very respected and anonymous registrations are allowed, as well as payments via Bitcoin / PayPal.&lt;br /&gt;
* [http://www.webuzo.net Bulgaria VPS] Webuzo Network is an offshore SSD VPS hosting provider located in Bulgaria. Privacy is very respected and anonymous registrations are allowed, as well as payments via Bitcoin / PayPal.&lt;br /&gt;
* [https://vpsbg.eu/en Bulgaria VPS] VPSBG.eu is an offshore SSD VPS hosting provider located in Sofia, Bulgaria. Privacy is very respected and anonymous registrations are allowed, as well as payments via Bitcoin.&lt;br /&gt;
* [http://www.bul.net/ Bul.net] Provides OpenVZ based VPS, perfect user/VPS management via [http://ispsystem.com VDSManager]. Instant creation after online payment. Debian/Ubuntu/CentOS with ISPManager Control panel. Optimal price policy.&lt;br /&gt;
* [http://www.cointech.eu/vps-hosting/ CoInTech] provides OpenVZ based VPS containers, free webmin managment. Containers can be CentOS, Slackware, Ubuntu, custom or our special [http://www.mandriva.com Mandriva Linux] container with own [http://mandriva.cointech.net repository].&lt;br /&gt;
* [http://www.rax.bg/ RAX.bg] Offers OpenVZ based VPS, hosted on a clustered infrastructure and redundant network. Easy to use user management, Instant setup, CentOS (OS).&lt;br /&gt;
* [http://www.jump.bg/ Jump.bg] Provides OpenVZ VPS servers hosted on a redundant network which provides a very easy to manage platform for all clients which gain instant access to their OS ( Ubuntu, CentOS , Debian etc ... )&lt;br /&gt;
* [https://www.fitvps.com/ FitVPS.com] Offers affordable and reliable OpenVZ based VPS in Varna, Bulgaria. Own data center, own multihomed network, with SLA. Instant automatic setup, SolusVM control panel.&lt;br /&gt;
* [http://www.qhoster.com/ QHoster.com] Instant activation OpenVZ VPS in UK, USA, Germany, France and Switzerland. Both 32/64 bit OpenVZ OS VPS templates : CentOS 5/6, Debian 6/7, Ubuntu 12/13.&lt;br /&gt;
* [https://www.verdina.net Verdina.NET] Verdina.net offers dedicated hosting services, provided by powerful dell hardware. Servers are located in Telepoint Datacenter, a Tier 3 DC located in Sofia, Bulgaria.&lt;br /&gt;
* [https://www.vps.ag/ VPS.AG] Affordable and reliable OpenVZ VPS based in Sofia, Bulgaria. Instant setup and 24/7 support.&lt;br /&gt;
* [http://www.vpsfast.us/bulgaria-vps VPSFast] - VPS Provider with good prices in Bulgaria.&lt;br /&gt;
&lt;br /&gt;
== Canada ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://whc.ca/canadian-cloud-servers Web Hosting Canada Cloud Servers] - Powerful Cloud servers powered by OpenVZ and located in Canadian datacenters, with fast RAID-10 storage, fully managed with cPanel.&lt;br /&gt;
* [http://compevo.com compevo Clustered VPS Server Hosting Provider] - We offer clustered VPS Servers to avoid downtime and dataloss. Our network and service is second to none and is used by businesses around the world.&lt;br /&gt;
* [http://www.datacorporate.ca/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [https://www.delimiter.com/storage-vps/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [https://www.miditech.com/ MidiTech Hosting Canada] VPS hosting offered by MidiTech Canada are powered by VMware, . Fully Managed VPS with control panels&lt;br /&gt;
* [http://www.gotekky.com Gotekky Cloud VPS Hosting] High quality Cloud VPS packages powered by our own infrastructure and network in Toronto. Scalable from our $5/mo plan all the way to your own dedicated cloud server. Based on OpenVZ and our own proprietary panel.&lt;br /&gt;
* [http://www.letstalkdigital.com/index.php?option=com_content&amp;amp;view=article&amp;amp;id=73&amp;amp;Itemid=65 LetsTalkDigital VPS Hosting] LetsTalkDigital.com offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from $14.99. Virtual Private Server (VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://secure.media-hosts.com/link.php?id=7 Media-Hosts.com] Provides Quality and Scalable OpenVZ based Virtual Private Servers. 100% network uptime guaranteed. Located in Montreal Quebec with 5 Tier1 upstream providers.&lt;br /&gt;
* [http://www.openvz.ca OpenVZ.ca] Canadian Budget VPS Servers on OpenVZ Platform. &lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [http://protoserver.com ProtoServer] Advanced VPS Hosting from $4.95/month. Many pre-installed VPS Templates available (CMS, E-commerce, Web development, Online community, Media streaming, etc.) No bundles or service plans - mix VPS resources as needed and change VPS configuration anytime. Also offering DNS Hosting, E-mail hosting, Domains Registration.&lt;br /&gt;
* [http://www.vistapages.com/vps Vistapages VPS] - IBM &amp;amp; Dell Hardware. MCI/Verizon Backbone. Distros: Centos, Fedora, Debian &amp;amp; more. Full management available. Located in Toronto.&lt;br /&gt;
* [http://vpsville.ca/ VPSVille] - Good network. Good CPU. Good choice of distros: Centos, Fedora, Debian, Ubuntu, Slackware, Gentoo, OpenSUSE, CERN. My favorite OpenVZ provider. [mailto:jak@isp2dial.com John Kelly]&lt;br /&gt;
* [http://solib.ca/services-offerts/hebergement-haute-vitesse/serveurs-vps/ SOLIB Logiciel Libre Québec] Our company offers DDoS protected server solutions including OpenVZ containers. Very high availability and reliability, all our VPS are located in Quebec, Canada.&lt;br /&gt;
* [https://www.host-stage.net/linux-vps/ HostStage - Linux VPS] - Simple, Reliable OpenVZ VPS packed with 1 GBPS port speed, RAID 10 SSD, Intel Xeon CPU, DDoS Protection from $4.95/month&lt;br /&gt;
* [http://www.vpsfast.us/canada-vps VPSFast] - VPS Provider with good prices in Canada.&lt;br /&gt;
&lt;br /&gt;
== Colombia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.datacorporate.co/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [http://www.soficol.com/ Soficol] Offers Enterprise OpenVZ based VPS, hosted on a clustered infrastructure and redundant network. Easy to use user management and instant setup.&lt;br /&gt;
&lt;br /&gt;
== Czech Republic ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://4smart.cz 4Smart.cz] - prepaid, you are charged only by the system resources you use, therefore you can run a VPS for as little as  1 EUR a month if your vps is not resource hungry. Even if you pay  0,50 EUR  month, you still have 3 GB of RAM and 8 cores available to you VPS.&lt;br /&gt;
* [http://www.freecloud.cz FREECLOUD.CZ] - Free OpenVZ VPS Server - own IP, 800Mhz CPU, 512MB RAM, 50Mbits LAN, 10GB HDD, 100GB Traffic - Debian, Ubuntu, Gentoo, Slackware, Fedora, Centos&lt;br /&gt;
* [http://www.hukot.cz Hukot.cz] - OpenVZ VPS Servers starting from 2.92 €, XEON, 1 Gbps uplink, unlimited traffic. Debian, Ubuntu, CentOS, Scientific, SuSe, Fedora, Elastix.&lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [http://www.ultimatehosting.eu UltimateHosting.eu] - OpenVZ VPS Servers starting from $8 with custom configuration - up to 100 GB HDD, 2048 MB RAM, 2 GHz CPU, and unlimited traffic.&lt;br /&gt;
* [http://www.mujhost.net MUJHOST.NET] - OpenVZ VPS Servers starting from 160 Kč, 100Mbps / 1 Gbps uplink, unlimited traffic. Debian, Ubuntu, CentOS ...&lt;br /&gt;
&lt;br /&gt;
== Chile ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.1h.cl/ 1h.cl Vps - Chile] - VPS High Performance with OpenVZ in Chile&lt;br /&gt;
* [http://www.1hosting.cl/ 1hosting Virtual servers - Chile] - VPS Professional with OpenVZ&lt;br /&gt;
* [http://www.dch.cl/ DCH] - DCH.cl Hosting Chile - High Performance VPS Servers with OpenVZ &lt;br /&gt;
* [http://ecohosting.cl/ EcoHosting.cl Santiago - Chile] - VPS with OpenVZ in Chile&lt;br /&gt;
* [http://www.hostingplus.cl/ HostingPlus Internet Limitada] - High Performance Vps provider in Chile&lt;br /&gt;
* [http://www.hostname.cl/ Hostname Ltda] - VPS Hosting with Datacenter in Chile&lt;br /&gt;
* [http://www.inc.cl/ INC Internet Limitada] - VPS Hosting provider in Chile&lt;br /&gt;
* [http://www.host.cl/ Host SPA] - Wordpress Hosting provider in Chile&lt;br /&gt;
&lt;br /&gt;
== Denmark ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.vpsfast.us/denmark-cloud-server VPSFast] - VPS Provider with good prices in Denmark.&lt;br /&gt;
&lt;br /&gt;
== Ecuador ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.dedi.space/ DediSpace Telecom] - VPS Servers in Ecuador - USA, France, Germany, Ecuador Datacenter.&lt;br /&gt;
&lt;br /&gt;
== France ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.BargainVPS.co.uk/ BargainVPS] - UK / US / EU Instant setup VPS - We have some great Linux &amp;amp; Windows Bargain VPS packages on offer for you here all available Fully Managed.&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in France from 1.88EUR/month.&lt;br /&gt;
* [http://www.fixweb.com Fixweb] Great managed hosting provider with strong anti ddos solution - openvz only - leader in managed openvz solution with horizontal scaling and high availability&lt;br /&gt;
* [http://www.Freaksol.com/ FreaKs VPS Hosting] Self reliant hosted on independent networks &amp;amp; DC low ping,No restrictions on file types,Unlimited resources,high ram servers &lt;br /&gt;
* [https://galaxyhostplus.com/ovz GalaxyHostPlus] Cheap VPS Hosting based in Roubaix with new 2016 line starts from $2/Month &lt;br /&gt;
* [http://www.harmony-hosting.com Harmony-Hosting] A high performance VPS hosting - The leader in France&lt;br /&gt;
* [https://www.delimiter.com/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [http://www.lws.fr/serveur_dedie_linux.php LWS - Linux VPS ] - Linux VPS Hosting - Only 9.99€/month, Affordable and Secure OpenVZ VPS Servers with 99.99% up-time, web hosting control panel Included. French datacenter&lt;br /&gt;
* [http://www.ovh.co.uk/vps/ OVH VPS] linux from 3€/month, [http://www.ovh.co.uk/vps/vps-cloud.xml windows] from 12€/month.&lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [https://VPSZ.FR VPSZ] VPS Hosting in France. Starting from 2,99€, Unlimited traffic.&lt;br /&gt;
* [http://www.1euro-hosting.eu BEST EU VPS - 1€ Hosting] - Providing reliable and secure OpenVZ VPS Servers with 99.99% up-time, starting from 8€&lt;br /&gt;
* [https://www.shape.host/linux-vps/ Shape Host - Linux VPS] - OpenVZ virtual servers, Instant Linux VPS&lt;br /&gt;
* [https://www.host-stage.net/linux-vps/ HostStage - Linux VPS] - Simple, Reliable OpenVZ VPS packed with 1 GBPS port speed, RAID 10 SSD, Intel Xeon CPU from $4.95/month&lt;br /&gt;
* [https://www.yoorshop.fr/ YOORshop SAS] - High performance SSD Linux VPS within 13 countries in Europe, daily backup included. Starting from €6,95 /month&lt;br /&gt;
* [https://www.wantete.com/vps-servers.php/ WANTETE] - OpenVZ virtual servers, VPS Hosting in France Starting from  €1,99/month 10% CPU&lt;br /&gt;
&lt;br /&gt;
== Germany ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://myvirtualserver.com/aff.php?aff=434 MyVirtualServer]: Cheap VPS (OpenVZ/KVM, 5TB Traffic, 10Gigabit), servers located in Frankfurt (best ping, starting 1.99€) good support (en/de)&lt;br /&gt;
* [http://afterburst.com Afterburst (Previously FanaticalVPS)]: affordable unmetered, unmanaged VPS servers in Germany.&lt;br /&gt;
* [http://www.b2b-hosting.de/vps/ B2B Hosting]: Professional virtual servers for business applications. Performance and reliability at a fair price. Made with OpenVZ.&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in Germany from 1.88EUR/month.&lt;br /&gt;
* [https://www.delimiter.com/dedicated-servers/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [https://galaxyhostplus.com/ovz GalaxyHostPlus] Cheap VPS Hosting based in Frankfurt with new 2016 line starts from  $2/Month&lt;br /&gt;
* [http://hostmist.com/openvz-vps-germany.html Host Mist]: features budget OpenVZ VPS hosting in Germany.&lt;br /&gt;
* [http://www.host1plus.com/ Host1Plus] Servers based in Frankfurt am Main. Offering reliable OpenVZ based VPS servers in Germany starting from $2.50 per month.&lt;br /&gt;
* [http://www.hostingjuice.com/ HostingJuice] The Superioum VPS and Web Hosting provider, low prices - Premium packages.&lt;br /&gt;
* [http://www.ingate.de/managed-server.html Ingate] offers managed servers with openVZ virtualization. located in germany, great support.&lt;br /&gt;
* [http://linevast.de/angebote/linux-openvz-vserver-mieten.html Linevast] Reliable OpenVZ based VPS with fast support, located in germany&lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [http://www.plambee.de/vserver.php Plambee.de Webhosting]: Powerfull OpenVZ based VPS servers at low cost with hosting in Germany&lt;br /&gt;
* [http://www.serverbiz.de/vserver Serverbiz] Powerful VPS at very low prices.&lt;br /&gt;
* [http://www.synapseglobal.com/voip_vps.html SynapseGlobal.com] Elastix, Trixbox, PBX in a Flash and Asterisk VPS - OpenVZ based Asterisk VOIP servers located in Munich Germany.&lt;br /&gt;
* [http://www.vStarVPS.com vStarVPS]: Reliable VPS Hosting at lowest prices, with 99.9% uptime, Premium Unmetered Bandwidth and Custom HDD/RAM of your choice. Instant and FREE Setup. RapidLeech Allowed.&lt;br /&gt;
* [http://whynotavps.com WhyNOTaVPS]: Instant activated VPS SERVERS!!&lt;br /&gt;
* [http://squote.de/index.php?ref=1421485383 SQuote]: SQuote VPS Hosting and more. VPS 1 Core, 1.024MB RAM, 512MB RAM SWAP, 50 GB HDD, 1x IPv4. 3,89EUR/month. For the best VPS SQuote.de&lt;br /&gt;
* [http://www.vpsfast.us/germany-vps VPSFast] - VPS Provider with good prices in Germany.&lt;br /&gt;
&lt;br /&gt;
== Guatemala ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.globalnetcafe.com/gnc/menu/hospedaje.htm Global Net Cafe]: Servicios de hospedaje, reseller, vps, colocacion y servidores. Incluyendo OpenVZ.&lt;br /&gt;
&lt;br /&gt;
== Hong Kong ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [https://hostus.us HostUS] features unmanaged and managed OpenVZ VPS in Hong Kong as well as 3 USA locations. Unparalleled connectivity to the Asia Pacific. Enjoy 15% off with coupon VPS15OFF.&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides self-managed OpenVZ based SSD VPS in Hong Kong, located at the Pacnet datacenter. &lt;br /&gt;
* [http://vps.timway.com/linux_vps.html Timway VPS Hosting] - Quality, non-oversold hosting provider focused on being security conscious and offering a positive client experience.   Centos, Debian, Fedora, OpenSuse and Ubuntu Containers are available.&lt;br /&gt;
* [http://www.vpsfast.us/hong-kong-cloud-server VPSFast] - VPS Provider with good prices in Hong Kong.&lt;br /&gt;
&lt;br /&gt;
== Hungary ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://elin.hu/index.php?menu=8&amp;amp;nyelv=hu&amp;amp;cim=Virtualis-szerver Virtual server] OpenVZ server: 2xX5650 Intel Xeon, 32GB RAM, 15.000rpm SAS disks, 100Mbit/s, unlimited bandwith.&lt;br /&gt;
* [https://www.ivirtual.co/vps-hosting/ iVirtual.co ] OpenVZ Master Server: 2x Intel Xeon @ 3.0GHZ, 64 GB ECC Ram, 15k RPM SAS HDD's, 1Gbit/s Network, Unlimited bandwith.&lt;br /&gt;
&lt;br /&gt;
== Iceland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
&lt;br /&gt;
== India ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.geniushost.in Genius Host] Fully managed [https://www.geniushost.in SSD Web Hosting] offered by Genius Host are powered by ''OpenVZ'' With LiteSpeed Web Server &amp;amp; Mariadb.&lt;br /&gt;
&lt;br /&gt;
* [http://pve.proxmox.com/wiki/User:Apmuthu Ap.Muthu] sponsored by [http://www.gnuacademy.org GNUAcademy], [http://www.planettel.com.sg PlaNetTel] and [http://www.sacollege.net S A College] creates OpenVZ Templates for the Open Source Community and provides hosting in datacenters of clients choice or on site.&lt;br /&gt;
&lt;br /&gt;
* [http://www.milesweb.com/vps-hosting.php Milesweb VPS Hosting] VPS hosting offered by Milesweb are powered by ''VMware, OpenVZ''. Fully Managed VPS with control panels. &lt;br /&gt;
&lt;br /&gt;
* [https://www.hostsoch.in/windows-hosting.html HostSoch Windows Hosting] Windows hosting offered by HostSoch are powered by ''Windows 2012, ASP.NET, MVC, IIS, PHP and More''. 99.9% Uptime, 24/7 Dedicated support guaranteed. &lt;br /&gt;
&lt;br /&gt;
* [https://www.miditech.co.in/ MidiTech VPS Hosting] VPS hosting offered by MidiTech are powered by ''VMware, ''. Fully Managed VPS with control panels. &lt;br /&gt;
&lt;br /&gt;
* [http://www.Freaksol.com/ Freaksol VPS Hosting] Self reliant hosted on independent networks &amp;amp; DC low ping to India,No restrictions on file types,Unlimited resources,high ram servers&lt;br /&gt;
&lt;br /&gt;
* [http://overlineindia.net/vpshosting-p-62.html Overline India VPS Hosting] Fully managed cPanel Installed VPS Hosting with 24x7x365 Live Chat Tech support, powered by OpenVZ&lt;br /&gt;
&lt;br /&gt;
* [http://www.vpshostingindia.net/ VPS Hosting India, Fully Managed Server] A Committed Fully Managed VPS Server for Hosting solution in India, Complete Technical Support assistance with commitment of fast, clustered and most supportive DataCenters.&lt;br /&gt;
&lt;br /&gt;
* [https://cochinwebhost.in/budget-vps-hosting/ Low Cost VPS Hosting] Fast SSD VPS Server for Hosting Solutions at budget prices with 24x7 Technical Support.&lt;br /&gt;
&lt;br /&gt;
* [http://vpsbeach.com VpsBeach Managed Hosting] Fully managed cPanel Installed VPS Hosting with 24x7x365 Live Chat Tech support, powered by OpenVZ&lt;br /&gt;
&lt;br /&gt;
* [http://www.datacorporate.in/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
&lt;br /&gt;
* [http://www.servers.co.in/vps/vps_hosting.php Server Web Hosting] Offers Fully Managed OpenVZ VPS Web hosting in India/US/UK at affordable and cheap rates with best hardware quality and customer service 24/7/365 days&lt;br /&gt;
&lt;br /&gt;
* [http://www.hioxindia.com/virtual-private-server.php VPS Hosting] Reliable and quality VPS Virtual Private Server Hosting&lt;br /&gt;
&lt;br /&gt;
* [http://www.prohosterz.com/linux-vps.php ProHosterZ VPS Hosting] Reliable and quality Virtual Dedicated Servers | Virtual Private Servers | XEN VPS | OpenVZ VPS | Virtual Hosting&lt;br /&gt;
*[http://www.fastwebhost.in/vps-hosting.html fastwebhost VPS Hosting] VPS hosting offered by fastwebhost are powered by ''VPS hosting, virtual server hosting and Linux VPS hosting services''. Fully Managed VPS with control panels.&lt;br /&gt;
* [http://www.vpsfast.us/india-vps VPSFast] - VPS Provider with good prices in India.&lt;br /&gt;
&lt;br /&gt;
== Iran==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.ehost.ir EHost.ir] - OpenVZ Servers , DUAL XEON Cpus , 12 Gb Ram , 100Mbit Dedicated Connection , SAS HardDisk&lt;br /&gt;
* [http://www.vpsfa.com VPSFa.com] - OpenVZ Servers , DUAL XEON Cpus -  , 24Gb Ram , 1000Mbit Dedicated Connection , SAS HardDisk&lt;br /&gt;
&lt;br /&gt;
== Italy ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.hosting-italia.net hosting italia] - OpenVZ Servers and panel enduser Virtualizor Intel® Core™ i7-920 Quad-Core 48 GB DDR3 RAM - Guaranteed Bandwidth 200 Mbit/s&lt;br /&gt;
* [http://www.vpsfast.us/italy-vps VPSFast] - VPS Provider with good prices in Italy.&lt;br /&gt;
&lt;br /&gt;
== Liechtenstein ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
&lt;br /&gt;
== Lithuania ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.cloudlix.com/ CloudLix.com] - Managed and unmanaged OpenVZ virtual servers based on 2.6.32 kernel. Up to 20GHz (Intel SandyBridge) CPU and 10GB RAM. Located in Vilnius and Siauliai.&lt;br /&gt;
* [http://www.databank.lt/ databank.lt] - high-quality professional OpenVZ hosting with cloud computing solutions.&lt;br /&gt;
* [https://www.lavavps.lt/ lavavps.lt] - Professional high-quality OpenVZ containers (VPS servers) affordable for everyone. Powerful control panel for VPS management.&lt;br /&gt;
* [http://www.serveriai.lt/ Serveriai.lt] - Affordable OpenVZ containers on quality HP hardware. Wide choice of virtual dedicated servers up to 8 CPU cores and 8 GB RAM. Full management available. Located in Vilnius.&lt;br /&gt;
* [http://www.time4vps.eu/ Time4VPS.EU] - Powerful cloud technology based infrastructure will let you build custom virtual machine and pay only for what you really need. Located in Vilnius city.&lt;br /&gt;
* [https://www.vpsnet.lt/en/ VPSnet.lt] - Powerful and high quality servers for a competitive price in Lithuania (Eastern Europe).&lt;br /&gt;
* [http://www.vpsfast.us/lithuania-vps VPSFast] - VPS Provider with good prices in Lithuania.&lt;br /&gt;
&lt;br /&gt;
== Latvia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.altnet.lv/ Altnet] - Hosting and colocation services. Any flawor, you name it. &lt;br /&gt;
* [http://www.vpsfast.us/latvia-vps VPSFast] - VPS Provider with good prices in Latvia.&lt;br /&gt;
&lt;br /&gt;
== Luxembourg ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.vpsfast.us/luxembourg-vps VPSFast] - VPS Provider with good prices in Luxembourg.&lt;br /&gt;
&lt;br /&gt;
== Malaysia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.cubiex.com/ Cubiex] - Malaysia Affordable Web Hosting and Domain Name. Affordable Linux VPS Hosting in Malaysia. OpenVZ based, Quad Core Xeon node. cPanel/WHM and DirectAdmin also available.&lt;br /&gt;
* [https://controlvm.com ControlVM] ControlVM Technology offering OpenVZ VPS in Singapore, Malaysia, USA and Germany.&lt;br /&gt;
&lt;br /&gt;
== Malta ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.a6it.com/ A6iT] - Stable, quality managed OpenVZ VPSs based in Malta.  Redundant network.&lt;br /&gt;
&lt;br /&gt;
== Morocco ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.belsemtech.com/ BelsemTech.CoM] BelsemTech SARL offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from 300 DH. Virtual Private Server (VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://www.hostoweb.com/ HosToWeb] is the only company providing VPS hosting in Morocco Data Center.&lt;br /&gt;
* [http://www.adk-media.com/ ADK Media] provides affordable managed and unmanaged virtual servers based on OpenVZ, Xen Paravirtualization and Xen HVM platforms. 24/7 Technical Support. Distros: Centos, Fedora, Debian, Ubuntu and more.&lt;br /&gt;
* [http://www.naja7host.com/ Naja7Host.CoM] The Naja7host SARL provides affordable VPS hosting using the OpenVZ platform. Running on Full Quality Nodes of up to 8 CPU and 16 GB RAM. . All VPS's come with Real 24/7/365  Technical Support and cPanel free (if option selected  ). Multiple choice of OS 32/64Bits (Centos, fedora, ubuntu, debian .ect ...)&lt;br /&gt;
* [http://www.lehoster.com/ Le Hoster] offers affordable Virtual Private Servers using the OpenVZ and KVM platform. Backed with our amazing customer support.&lt;br /&gt;
* [https://www.wantete.com/vps-servers.php/- WANTETE] - OpenVZ virtual servers, VPS Hosting in France Starting from  €1,99/month 10% CPU&lt;br /&gt;
&lt;br /&gt;
== Netherlands ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.avanpad.com/ Avanpad] offers OpenVZ VPS hosting with 24\7 online support. Customer can request different control panels or templates for installation on his VPS.&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in Netherlands from 1.88EUR/month.&lt;br /&gt;
* [http://www.Freaksol.com/ FreaKs VPS Hosting] Self reliant hosted on independent networks &amp;amp; DC low ping around the world,No restrictions on file types,Unlimited resources,high ram servers&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [http://www.HostSailor.com/ HostSailor] Number 1 Netherlands Provider HostSailor provides affordable &amp;amp; high quality services such as VPS (XEN, OpenVZ and KVM) Linux or Windows, Dedicated servers, SSL certificates and domain name services.&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides self-managed OpenVZ SSD VPS in Telecity AMS 5, one of the best datacenters located in the Amsterdam area.&lt;br /&gt;
* [https://iniz.com/ INIZ VPS Hosting] INIZ provides affordable VPS Hosting in Amsterdam, Netherlands with high resources at low prices.&lt;br /&gt;
* [https://www.liteserver.nl/ LiteServer] Looking for a quality and affordable VPS in the center of The Netherlands? We provide SSD, Storage and High Bandwidth VPSes, starting at only €16 per year. We operate AS60404.&lt;br /&gt;
* [https://www.mangelot-hosting.nl/ Mangelot Hosting] Mangelot Hosting, A webhosting company located in the Netherlands, offers budget OpenVZ hosting solutions for maximum scalability en performance.&lt;br /&gt;
* [http://www.osbox.nl OsBoX Dutch Network Engineering] Cheap VPS host as low as $1 per month. Very great uptime and a overall good support. Check the website for the server plans.&lt;br /&gt;
* [http://www.signet.nl/ Signet VPS Hosting] - Signet delivers VPS hosting plans based on CentOS or Debian templates, including control-panel Virtualmin.&lt;br /&gt;
* [http://simple-webhosting.eu/ Simple-webhosting.eu] - OpenVZ based web hosting starting from €0.98 per month.&lt;br /&gt;
* [https://www.seedvps.com SeedVPS] Provides Powerful &amp;amp; Reliable OVZ/KVM VPS Hosting in The Netherlands&lt;br /&gt;
* [http://www.touchvps.com/ TouchVPS] is a company who offer Support and Managed Services for OpenVZ Servers ,also offer templates for openvz ready to go with cPanel , DirectAdmin , Plesk , Games, IRC Services, Desktop and many more.&lt;br /&gt;
* [http://www.voipcomplete.com/product-overview/dedicated-vps.html VOIPcomplete] offers dedicated VPS plans based on CentOS including a VPS management interface.&lt;br /&gt;
* [https://www.waveride.at/ Waveride] Waveride, an EDIS company, offers budget full gigabit OpenVZ + solusVM VPS in Austria, USA and the Netherlands&lt;br /&gt;
* [https://www.totallyhosted.nl/ TotallyHosted] OpenVZ based Premium VPS services located in the Netherlands @ Serverius DC.&lt;br /&gt;
* [https://www.wantete.com/vps-servers.php/- WANTETE] - OpenVZ virtual servers, VPS Hosting in France Starting from  €1,99/month 10% CPU&lt;br /&gt;
* [http://www.vpsfast.us/netherlands-vps VPSFast] - VPS Provider with good prices in Netherlands.&lt;br /&gt;
&lt;br /&gt;
== Norway ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.vpsfast.us/norway-vps VPSFast] - VPS Provider with good prices in Norway.&lt;br /&gt;
&lt;br /&gt;
== Philippines ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.web.com.ph/vps.php Web.com.ph] - provides OpenVZ virtual servers in the Philippines.&lt;br /&gt;
&lt;br /&gt;
== Perú ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.hn.pe/ Hostname] Hostname offers business OpenVZ containers in Perú&lt;br /&gt;
* [https://www.inchosting.pe/ HostingINC SAC] OpenVZ virtualization solutions for business in Perú.&lt;br /&gt;
* [http://www.hostingplus.pe/ HostingPlus Internet Limitada] - High Performance Vps provider in Peru&lt;br /&gt;
* [http://www.hostingandino.pe/ Hostingandino Lima - Peru] - VPS with OpenVZ in Peru&lt;br /&gt;
* [https://www.mejorhosting.pe/ Mejor Hosting Perú] Hosting comparison for peruvian hosting providers.&lt;br /&gt;
&lt;br /&gt;
== Poland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://hosteam.pl/ HosTeam] offers OpenVZ VPS hosting from their DataCenter in Poland. Customer has choice of all major Linux distros (WARNING!!! restoring your backup is VERY expensive and they charge even if it wasn't restored correctly!), NATIVE IPV6 AVAILABLE!&lt;br /&gt;
&lt;br /&gt;
* [http://ultimahost.pl/ UltimaHost] high grade OpenVZ VPS and FreeBSD jail (DC in Łódź, Poland), brand of statnet.pl, SSD available for more expensive packets, NO IPV6 AVAILABLE (but they can load you tun module)&lt;br /&gt;
&lt;br /&gt;
* [http://budgetvps.pl/ BudgetVPS] very cheap, low end grade OpenVZ VPSes (DC in Gdańsk, Poland), brand of hitme.net.pl&lt;br /&gt;
&lt;br /&gt;
* [http://hitme.net.pl/ HitMe] high grade OpenVZ/Xen PV/Xen HVM VPSes (DC in Gdańsk, Poland), NATIVE IPV6 AVAILABLE (/64 on demand for free)!&lt;br /&gt;
&lt;br /&gt;
* [http://www.kr-cpd.pl/oferta/serwery-vps/ KR-CPD] Cracow's Center of Data Processing (DC of course in Cracow, Poland)&lt;br /&gt;
&lt;br /&gt;
* [http://livenet.pl Livenet] cheap, middle/low end OpenVZ VPSes (DC in Łódź, Poland)&lt;br /&gt;
&lt;br /&gt;
* [http://slaskdatacenter.pl/ Śląsk Data Center] high/middle grade OpenVZ VPSes (DC in Silesia province, Poland), SSD available for more expensive packets&lt;br /&gt;
&lt;br /&gt;
* [https://www.ionic.pl/ IONIC.pl] VPS OpenVZ with SolusVM control panel, own DC in Cracow&lt;br /&gt;
&lt;br /&gt;
== Portugal ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.ptservidor.pt/ PTServidor] - OpenVZ virtual servers with free management based in Portugal.&lt;br /&gt;
* [http://www.efeito.net/ Weblevel.pt] - OpenVZ virtual servers based in Portugal.&lt;br /&gt;
* [https://www.webtuga.pt/ WebTuga] - Managed/Unmanaged Virtual Private Servers hosted in a Portuguese Datacenter with lots of extras&lt;br /&gt;
* [https://www.cloudfire.pt/ CloudFire] - OpenVZ VPS at very low prices hosted in Portugal&lt;br /&gt;
* [https://www.linxisp.com/ LINXISP] - High Availability &amp;amp; Performance OpenVZ Containers&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] - Build an OpenVZ VPS in 14 locations WordWide From £2.49&lt;br /&gt;
&lt;br /&gt;
== Romania ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.intovps.com IntoVPS] - offers unmanaged OpenVZ virtual servers based in Romania, Netherlands and USA. A lot of resources for decent prices.&lt;br /&gt;
* [http://www.ename.ro/dedicated.html eName] - managed OpenVZ virtual servers in Bucharest, Romania&lt;br /&gt;
* [http://www.ch-center.com/virtual-servers Ch-center] - unmanaged OpenVZ virtual servers, based in Romania in it's own Data Center&lt;br /&gt;
* [http://www.clouds.ro/servere-virtuale/ Clouds] - OpenVZ virtual servers hosted on premium hardware, in Romania&lt;br /&gt;
* [http://www.HostSailor.com/ HostSailor] HostSailor provides affordable &amp;amp; high quality OpenVZ and KVM servers in Romania&lt;br /&gt;
* [https://www.shape.host/linux-vps/ Linux VPS] - OpenVZ virtual servers, Instant Linux VPS&lt;br /&gt;
&lt;br /&gt;
== Russia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.ihc.ru/vps.html IHC.RU] - VPS hosting in Moscow, Russia starting at $10/month with good set of precreated templates&lt;br /&gt;
* [http://mchost.ru/services/linux-vps/ McHost.ru] - Linux VDS Hosting from McHost.&lt;br /&gt;
* [http://hosting.agava.ru/vps/ AGAVA] - Linux VPS hosting based on OpenVZ.&lt;br /&gt;
* [http://vdsplanet.ru/ VDSPlanet.ru] - unmanaged VDS/VPS hosting starting at 3.99$ a month. Large variety of OS templates and free ISPmanager Lite control panel. Total automation is our goal.&lt;br /&gt;
* [http://www.demos.ru/service/datacenter/vps.html Demos-Internet] - we offer OpenVZ Virtual Private Server based on Linux.  All VPS come with ISPmanager control panel.&lt;br /&gt;
* [http://www.net.ru/service/net9/ www.net.ru] - OpenVZ virtual private servers.&lt;br /&gt;
* [http://www.eurobyte.ru/ Eurobyte.ru] - Linux VDS Hosting from Eurobyte.&lt;br /&gt;
* [http://www.telekom.ru/service/vps.html Elvis Telekom] - OpenVZ hosting with base and cpanel templates from Elvis Telekom.&lt;br /&gt;
* [http://fastvps.ru/vds/ FastVPS] - OpenVZ hosting, ISPmanager, Hetzner, MayFlower.&lt;br /&gt;
* [https://lepus.su/vps.html Lepus] - OpenVZ hosting, SSD, ISPmanager free, Hetzner.&lt;br /&gt;
* [http://www.hts.ru/vds/ HTS] - OpenVZ hosting, ISPmanager, Linux VPS hosting based on OpenVZ in Moscow.&lt;br /&gt;
* [https://selectel.ru/services/vds/ Selectel] - OpenVZ hosting.&lt;br /&gt;
* [https://galaxydata.ru/root-server/ GalaxyData] - Virtuozzo Containers in Cloud Storage.&lt;br /&gt;
* [http://hosterbox.ru/servers/ Hosterbox.ru] - Managed VPS hosting. Based on OpenVZ + SolusVM + ISPmanager.&lt;br /&gt;
&lt;br /&gt;
== Singapore ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://conceptlane.com/?t=hostingservices#ratesvps ConceptLane Pte Ltd] - OpenVZ VPS on dual octa-core AMD Opterons running Debian Wheezy 7, custom control panel with bandwidth graphs, reboot/reinit and web-based VNC access.&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [http://www.qoxy.com/vps QOXY.com] Affordable and Reliable OpenVZ VPS Hosting in a Singapore Data Center.&lt;br /&gt;
* [http://www.secureax.com/ SecureAX Pte Ltd] - Singapore Premium Internet Solution Provider&lt;br /&gt;
* [http://www.planettel.com.sg PlaNetTel] - Affordable and customised OpenVZ containers across 3 data centers - contact Thomas Festus at +65-66936881. [http://pve.proxmox.com/wiki/User:Apmuthu#Squeeze_based_Templates Sponsors OpenVZ Container Template]s for the Open Source community.&lt;br /&gt;
* [http://www.vpsfast.us/singapore-vps VPSFast] - VPS Provider with good prices in Singapore.&lt;br /&gt;
&lt;br /&gt;
== Serbia ==&lt;br /&gt;
* [https://www.skyhosting.rs/en/vps-servers SkyHosting] - Fast Linux OpenVZ VPS SSD Hosting with SolusVM control panel.&lt;br /&gt;
* [https://www.ninet.rs/en/vps-servers NiNet Company] - Linux OpenVZ VPS servers. Well known VPS hosting company from Serbia with their own data center&lt;br /&gt;
* [http://www.suonline.net SuOnline.Net ISP] - Linux OpenVZ VPS servers, Docker enabled !!!&lt;br /&gt;
&lt;br /&gt;
== South Africa ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.host1plus.com/ Host1Plus] - Local South African servers hosted in Johannesburg. OpenVZ VPS servers starting from $3.00 per month.&lt;br /&gt;
* [http://www.vps.co.za/ VPS.CO.ZA] - South Africa's oldest VPS provider. Local South African servers with SolusVM control panel. OpenVZ, Xen and OnApp Cloud.&lt;br /&gt;
* [http://247hosting.co.za/vpshosting.php 247Hosting] - OpenVZ virtual servers locally in South Africa with SolusVM control panel. cPanel option available!&lt;br /&gt;
* [http://www.SoftDux.co.za/ SoftDux] - OpenVZ virtual servers based America &amp;amp; South Africa. All VPS's come with cPanel or Plesk control panels. XEN VPS's also available.&lt;br /&gt;
* [http://www.clickworks.co.za/ Clickworks] - OpenVZ / Xen VPS servers hosted in RSA. Backed by Solusvm control panel.&lt;br /&gt;
* [http://www.elitehost.co.za/ Elite Host] - OpenVZ virtual servers based in America &amp;amp; South Africa. All VPS's come with cPanel and unlimited bandwidth.&lt;br /&gt;
* [http://www.telasera.com/ Telasera] - OpenVZ VPS servers hosted in South Africa. Supermicro Servers powered by Intel Xeon with 24/7 Support.&lt;br /&gt;
&lt;br /&gt;
== Spain ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.actiu.net/pro/ Actiu informatica]&lt;br /&gt;
* [http://www.corpresa.com/servidores-virtuales.html Corpresa Hosting] - Tiene algún proyecto entre manos y un plan de hosting no le hes sufuciente y un servidor dedicado no está dentro de su presupuesto?, una solución de VPS a medida será la que cubrirá todas sus necesidades.&amp;quot;&lt;br /&gt;
* [https://www.datomedia.es Datomedia] - Cloud alta disponibilidad powered by Virtuozzo 6 y Servidores VPS bajo openvz y kvm.&lt;br /&gt;
* [https://www.evidaliahost.com/vps/ EvidaliaHosting] - Servidores VPS totalmente configurados con panel de gestión Plesk 12.5, garantía de devolución de 30 días y posibilidad de discos SSD.&lt;br /&gt;
* [https://ginernet.com/vps-ssd.php GINERNET] - Servidores VPS alojados en España desde 1.99€/mes.&lt;br /&gt;
&lt;br /&gt;
== Sweden ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.admax.se/vps/ Admax] - Admax offers enterprise grade virtual servers with great pricing. Custom control panel, API, remote access &amp;amp; more.&lt;br /&gt;
* [https://www.acon.se/vps Acon VPS Server] - VPS Server and Dedicated server provider in Sweden.&lt;br /&gt;
* [https://www.glesys.com/vps.php GleSYS] - VPS Provider with a great control panel and good prices&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides the highest quality SSD VPS in Stockholm, Sweden. Based on completely pure SSD in RAID-10 and delivering extremely high network &amp;amp; hardware performance along with reliability.&lt;br /&gt;
* [https://www.nametyper.com NameTyper] - VPS and Shared hosting provider. Customize your own OpenVZ Container with 1-12 cores running on SSD and ECC RAM. &lt;br /&gt;
* [https://virtualcenter.se VirtualCenter] - The first Cloud provider with SSD VPS in Sweden. Offer enterprise class hardware and network infrastructure&lt;br /&gt;
* [http://www.vpsfast.us/sweden-vps VPSFast] - VPS Provider with good prices in Sweden.&lt;br /&gt;
&lt;br /&gt;
== Switzerland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
* [http://www.vpsfast.us/switzerland-vps VPSFast] - VPS Provider with good prices in Switzerland.&lt;br /&gt;
&lt;br /&gt;
== Tanzania==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.aptus.co.tz/ Aptus Solutions] - OpenVZ / SolusVM VPS Servers located in Dar es Salaam - 100meg to TIX. CentOS &amp;amp; Ubuntu.&lt;br /&gt;
&lt;br /&gt;
== UK ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.34sp.com/ 34SP.com] - We're a UK based web hosting company, bridging the gap between sophisticated hosting solutions &amp;amp; affordable prices&lt;br /&gt;
* [http://www.AceShells.com/ AceShells] - Fast, stable, high quality UK based virtual private servers from just £5 a month, operating since 2001&lt;br /&gt;
* [http://www.AtlanticServers.com/ Atlantic Servers] - Affordable VPS, stable, high quality VPS, UK based Data Centre&lt;br /&gt;
* [http://www.BargainVPS.co.uk/ BargainVPS] - UK / US / EU Instant setup VPS - We have some great Linux &amp;amp; Windows Bargain VPS packages on offer for you here all available Fully Managed.&lt;br /&gt;
* [http://www.cheapvps.co.uk/ CheapVPS] - CheapVPS provide cheap, UK based OpenVZ VPS servers. Hosted on high end hardware, in a top UK datacenter backed up with 24/7/365 support. Choice from a wide range of Linux distros. OpenVZ VPS managed with SolusVM.&lt;br /&gt;
* [http://www.chilliserver.com/ Chilliserver] - Affordable plans starting from just £3.99, not oversold. RHEL6 Kernel with VSwap, TUN/TAP/FUSE and ACL support enabled. SolusVM control panel with custom snapshot system and rescue system. Based in a European data Centre with UK based support.&lt;br /&gt;
* [http://www.cislondon.co.uk/virtual-private-servers/ Commercial Internet Solutions] - CIS provides premium hosting at competitive rates, focused on Small Businesses within the M25 orbital. Hosting is on Dual Quad core Intel Xeon supermicro servers in Tier 4 datacenters around London.&lt;br /&gt;
* [http://www.datacorporate.co.uk/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [http://www.DubHosting.co.uk/ DubHosting] - DubHosting started in 2004 has been providing cost effective hosting to clients world wide. Fully managed OpenVZ servers based in Europe &amp;amp; US are one of their many strong points. They can provide you with a dedicated server and install openvz allowing you to sell your own vps servers. Their servers are located at UKGrid in Manchester with 24/7/365 support&lt;br /&gt;
* [http://www.europhase.net/virtual-private-servers/ Europhase UK Limited, UK VPS] - OpenVZ VPS Hosting, Virtual Dedicated Servers, UK VPS hosted at multiple UK datacentres from £4.99&lt;br /&gt;
* [http://www.farbyte.uk/vps Farbyte UK VPS] - UK based OpenVZ VPS and shared web hosting services&lt;br /&gt;
* [http://www.fdqwholesale.co.uk FDQ Wholesale] - UK based hosting services&lt;br /&gt;
* [http://www.hadrill.org.uk Hadrill Online] - Fully managed hosting with unlimited bandwidth. Quotes available through contact form.&lt;br /&gt;
* [http://www.infrenion.com./uk_vps_hosting.html Infrenion Networks UK] Cheap, economical and reliable web hosting solutions, VPS based on the openVZ platform. You can host any YouTube Clone scripts with free FFMPEG setup on our vps servers. Also offers with a choice of selecting DataCenter.&lt;br /&gt;
* [https://www.laws-hosting.co.uk/vps-hosting.php Laws Web Hosting] - Laws Web Hosting offers OpenVZ VPS Hosting with packages starting from £5.50/m that will cater for anyone. We have OpenVZ VPS hosting solutions, and come with moderate DDoS protection.&lt;br /&gt;
* [http://www.letstalkdigital.com/index.php?option=com_content&amp;amp;view=article&amp;amp;id=73&amp;amp;Itemid=65 LetsTalkDigital VPS Hosting] - LetsTalkDigital.com offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from $14.99. Virtual Private Server(VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://www.minivps.co.uk miniVPS] miniVPS offers VPS hosting solutions with nodes located in UK, utilising openvz/solusvm with future locations of USA and UK. &lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS] - Build an OpenVZ VPS in 14 locations WordWide From £2.49&lt;br /&gt;
* [http://www.phurix.co.uk/ Phurix] - A UK based web solutions company that provides you with reliable hosting at extremely affordable prices, VPS server virtualization using OpenVZ.&lt;br /&gt;
* [http://www.qualityservers.co.uk Quality Servers] - Affordable OpenVZ virtual servers based in the UK and USA. Choice of control panels and management options.&lt;br /&gt;
* [http://www.rshosting.co.uk/vps.html RSHosting UK] - Offering the most secure, reliable, stable and fast UK VPS Web Hosting based on OpenVZ architecture. Our Virtual Dedicated Servers are physically hosted on powerfull Quad Core servers located in multiple UK datacentres.&lt;br /&gt;
* [http://www.sharkserve.rs SharkServers] - Low Cost OpenVZ virtual servers in the UK. Choice of control panels and management options. Own Datacentre.&lt;br /&gt;
* [http://www.vpsmachine.co.uk/ vpsMachine] Quality openvz hosting platform with a large choice of customer OS templates.&lt;br /&gt;
* [https://www.webhost.uk.net/vps-hosting.html WebHostUK LTD] - Offers Cheap yet Best UK VPS Web Hosting working on OpenVZ Platform.We offers fully Managed UK VPS with true 24/7/365 days support.All our Servers are located in UK London DC.&lt;br /&gt;
* [http://www.webhostinguk.com/vps/vps-hosting.html Web Hosting UK] - Fully managed OpenVZ VPS Hosting offered on fast and reliable and affordable servers in UK &amp;amp; European datacenter with 24x7x365 days lightning fast support.&lt;br /&gt;
* [http://www.weycrest.co.uk/vps-hosting.php Weycrest VPS] - Low Cost, Stable OpenVZ and Parallels' Virtuozzo Virtual Private Server solutions. London UK Hosted at Coreix with a choice of operating systems, and root and control panel options.&lt;br /&gt;
* [http://www.xilo.net/virtual_private_servers-vps/ XILO] - UK-based hosting with UK-based support. VPS services offered with a choice of cPanel, Webmin and other useful applications, VoIP, SIP, VPN to name a few.&lt;br /&gt;
* [http://www.zxvps.co.uk/ ZxVPS VPS Hosting] - Quality, non-oversold VPS based on the openVZ platform, using SolusVM management panel, VPS from 128mb - 2gb, cpanel, direct admin, kloxo, etc.&lt;br /&gt;
* [http://www.meteorvps.com/ MeteorVPS] - Professional, Non-Oversold amazing VPS plans pretty cheap using SolusVM management, range from 512MB -&amp;gt; 16GB&lt;br /&gt;
* [http://www.chvps.com/ CHVPS] - Switzerland Based VPS, Cheap Pricing with solusVM control panel.&lt;br /&gt;
* [http://domvps.com/ domVPS] - OpenVZ Virtual Servers in the USA, Germany, France &amp;amp; the Netherlands at a low cost.&lt;br /&gt;
* [http://www.gemvps.net/ GemVPS.NET] - UK (Manchester) Based Company, OpenVZ Virtual Servers in the UK &amp;amp; France on Fast nodes.&lt;br /&gt;
* [http://www.rackburst.net/ Rackburst] - UK SSD VPS Hosting with fast UK-based Live Support available from £1.49 per month.&lt;br /&gt;
* [http://www.vpsfast.us/united-kingdom-vps VPSFast] - VPS Provider with good prices in UK.&lt;br /&gt;
&lt;br /&gt;
== Ukraine ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://ekvia.com/ Ekvia] - VDS/VPS based on OpenVZ. Free trial 14 days. Domain registration for VDS/VPS.&lt;br /&gt;
* [http://www.gelihost.com/ Geliar Hosting Solutions] - Fast virtual dedicated servers based on OpenVZ. Geliar Hosting Solutions offering many control panels and other useful services.&lt;br /&gt;
* [http://www.hostpro.ua/ Hostpro.ua] - Full managed OpenVZ servers.&lt;br /&gt;
* [http://www.vpsfast.us/ukraine-vps VPSFast] - VPS Provider with good prices in Ukraine.&lt;br /&gt;
&lt;br /&gt;
== USA ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.a2hosting.com A2 Hosting] is your high-performance [http://a2hosting.com/openvz-vps-hosting OpenVZ VPS Hosting] provider. Design your perfect [http://a2hosting.com/vps-hosting VPS Hosting] account today! Featuring SwiftServers and SSDs with page load speeds up to 300% faster compared to standard drives.&lt;br /&gt;
* [http://www.afterburst.com Afterburst] (Previously FanaticalVPS): affordable unmetered, unmanaged VPS servers in NY.&lt;br /&gt;
* [https://www.asurahosting.com/ AsuraHosting] offers powerful, reliable, and simple OpenVZ VPS to clients. AsuraHosting has a dedicated support team, and quality hosting; Pricing starts at just $5/month!&lt;br /&gt;
* [http://beyondhosting.net BeyondHosting.net] High Performance OpenVZ Virtual Private Servers (VPS)  Tier 1 US Datacenter.&lt;br /&gt;
* [http://buyvm.net BuyVM.net] DDoS Protection, three datacenter locations, Stallion control panel. Affordable quality VPS hosting since 2010!&lt;br /&gt;
* [https://www.binarycpu.com Binary Computer Solutions] has provided OpenVZ based Virtual Private Server hosting for over 5 years.  Network outages are a thing of the past, and oversold services are never heard of here.  Built on solid technology, with infrastructure to match - Binary Computer Solutions will give you hosting you need, without the cost others ask for.  Starting at $30.00/mo.&lt;br /&gt;
* [http://www.bodhost.com/ Bodhost.com] Fast, Reliable and secure web hosting service with 24*7 free customer service.&lt;br /&gt;
* [http://www.buildyourvps.com/ BuildYourVPS.com] mix ‘n’ match your VPS; choose only the bandwidth, RAM, disk capacity, type of IP connection, level server redundancy, and the support/monitoring you want. [http://www.buildyourvps.com/ BuildYourVPS] is the 1st to offer you a highly-customized VPS solution, without making you pay for unused extra features.&lt;br /&gt;
* [https://www.budgetvm.com/openvz-linux-vps.php BudgetVM.com] Each server includes our industry-leading SLA, DDoS protection, 200Gbps networks and 7 * 24-hour customer support.&lt;br /&gt;
* [http://www.byethost.com Byethost.com] offers OpenVZ based VPS Hosting as its main VPS solution, with the hypervm panel. Centos, Debian, Fedora, OpenSuse and Ubuntu Containers are available.&lt;br /&gt;
* [http://cheaperasp.net CheaperASP.Net] provides Quality web hosting on the OpenVZ platform. You also help you get best options at [http://cheaperasp.net/godaddy-1-hosting-free-domain-promo/ affordable] cost.&lt;br /&gt;
* [http://www.chhost.net/vps.htm CH Hosting VPS Hosting] CH Hosting or chhost.net offers OpenVZ based VPS Hosting. 24/7 Support. Upgrade/Downgrade your plan as needed on-the-fly without the risk of downtime. Since 2006. Non-Oversell&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in USA from 1.88EUR/month.&lt;br /&gt;
* [http://www.cloudshards.com Cloud Shards] High Performance, reliable, stable and affordable OpenVZ Virtual Private Servers (VPS) in data centers across the USA.&lt;br /&gt;
* [https://cloudgearhosting.com CloudGear Hosting] - offers OpenVZ hosting in 4 locations across the USA. Including free DDoS Protection and free SSL with cPanel.&lt;br /&gt;
* [http://www.datacorporate.com/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [https://www.delimiter.com/storage-vps/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [https://www.cheapdomainnamesdot.com Domain Host SSL] provides Reliable web hosting with OpenVZ platform Since 2003, Located New York city, Atlanta, Los Angeles. &lt;br /&gt;
* [http://www.DubHosting.com/ DubHosting] - DubHosting started in 2004 has been providing cost effective hosting to clients world wide. Fully managed OpenVZ servers based in Europe &amp;amp; US are one of their many strong points. They can provide you with a dedicated server and install openvz allowing you to sell your own vps servers.&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
* [http://www.evolucix.com/ Evolucix.com] Evolucix offers state of the art, professional, and reliable OpenVZ VPS solutions on top-notch hardware while providing quality support.&lt;br /&gt;
* [http://www.evolvedservers.com Evolvedservers.com] Openvz based vps servers. Hosted in Michigan, USA. 24/7 Support. Hosted in tier-3 and tier-4 datacenter's with multiple redundancies.&lt;br /&gt;
* [http://fastwebhost.com/vps-hosting.html Fastwebhost]: affordable cloud VPS servers using OpenVZ. &lt;br /&gt;
* [http://www.fliphost.net Fliphost.net]: Powerful, affordable instant setup VPS systems. Servers based in Phoenix Az with another location coming soon.&lt;br /&gt;
* [http://www.frontrangehosting.com Front Range Hosting]: SSD Cached KVM &amp;amp; OpenVZ VPS Hosting Prices Start at 2.00/mo, located in Colorado Springs, Colorado.&lt;br /&gt;
* [http://glesys.se GleSYS] is a hosting company specialized in serverhosting. Also offering VPS hosting mainly based on OpenVZ. GleSYS has provided access to server and Cisco hardware for developers from OpenVZ to find problem with VLAN implementation.&lt;br /&gt;
* [http://goodealhosting.com/ GOODEALHOSTING.com] Quality Hosting Solutions! Provides affordable unmanaged/managed VPS based on OpenVZ! start from $10.00, real 24/7 support.&lt;br /&gt;
* [http://gothost.net GotHost.net] Providing OpenVZ based VPS Hosting with SolusVM. All nodes are Quad Core Xeon with RAID-10 for speed and redundancy. Budget plans starting at $7.99.&lt;br /&gt;
* [http://www.greengeeksvps.com/ GreenGeeks VPS Hosting] Green VPS Hosting. Dual Intel Xeon 64-Bit CPU's, DDR3 RAM, RAID-10 Storage Arrays. 24/7 Support. cPanel/WHM + more!&lt;br /&gt;
* [http://hostarmor.com HostArmor™] - is best known for low-cost and reliable shared hosting and dedicated servers. Recently the company expanded to offer OpenVZ virtual server plans at 8 worldwide locations, five in the U.S., one in Germany, one in France, and one in the Netherlands. VPS plans start at $13.99/month.&lt;br /&gt;
* [http://www.host4geeks.com Host4Geeks] - Host4Geeks is a premium Fully Managed VPS provider with datacenters across 2 locations in US and in UK. All servers offer a free cPanel license.&lt;br /&gt;
* [http://www.host1plus.com Host1Plus] - OpenVZ based virtual servers in Chicago and Los Angeles. VPS plans start at $2.00 per month.&lt;br /&gt;
* [http://www.hostavps.com HostAVPS] - Providing Fully Managed VPS's on both the West &amp;amp; East Coast.&lt;br /&gt;
* [http://www.hostcolor.com Host Color] - OpenVZ based virtual servers hosted in a Tier 4 class data center based out of South Bend, Indiana. Juniper managed, fully-redundant network with uplinks to Level 3, Cogent and Internap.&lt;br /&gt;
* [http://www.hostigation.com Hostigation] - High resource unmanage VPS hosting solutions.&lt;br /&gt;
* [http://www.hostingrails.com Hosting Rails] offers Rails-targeted OpenVZ VPS Hosting and updated Rails-ready OS images.&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [http://www.hostmist.com Host Mist] features budget OpenVZ VPS hosting from four major cities across the US.&lt;br /&gt;
* [http://www.hostrush.com HostRush] Self managed, ssd vps for business and non business. &lt;br /&gt;
* [http://www.dailyhosting.net hostoople] We offer OpenVZ VPS hosting from Dallas Texas, Starting at $29.95/month &lt;br /&gt;
* [https://hostus.us HostUS] provides unmanaged and managed OpenVZ VPS in Atlanta, Dallas and Los Angeles with custom control panel. A large variety of Linux distros are available. Enjoy 15% off with coupon VPS15OFF.&lt;br /&gt;
* [https://www.hostwinds.com Hostwinds] Affordable managed/unmanaged VPS Solutions.&lt;br /&gt;
* [http://hostsia.com Hostsia] With HOSTSIA Web services, you can get an OpenVZ VPS for only $15.00/mo. Each OpenVZ VPS includes multiple free-of-charge bonuses and offers a 99.9% uptime guarantee. You can also use our charge-free Hepsia CP, which is available with each OS – it permits you to host an unmetered number of domains and comprises heaps of handy tools, which will help you better manage your site and your VPS web hosting account.&lt;br /&gt;
* [http://www.infrenion.com./vps_hosting.html Infrenion Networks] Cheap, reliable and secure VPS hosting solutions, based on the openVZ platform. You can host any YouTube Clone scripts with enhanced support quality round the clock.&lt;br /&gt;
* [http://iniz.com/ INIZ VPS Hosting] INIZ provides affordable VPS Hosting in Los Angeles &amp;amp; New York with high resources at low prices.&lt;br /&gt;
* [https://www.interserver.net/ InterServer Web Hosting] Fast &amp;amp; Reliable VPS - 24x7 Support. 99.9% Up-time, Hosting Since 1999!.&lt;br /&gt;
* [http://www.joinvps.com JoinVPS.com] ISPmanager OpenVZ based VPS hosting. 24/7 Technical Support. Free ISPmanager control panel.&lt;br /&gt;
* [http://www.lovevps.com LoveVPS] Budget VPS provider starting at $5.99/month located in the US with Xeon nodes.&lt;br /&gt;
* [http://www.letstalkdigital.com/index.php?option=com_content&amp;amp;view=article&amp;amp;id=73&amp;amp;Itemid=65 LetsTalkDigital VPS Hosting] LetsTalkDigital.com offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from $14.99 Virtual Private Server(VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://lylix.net LYLIX] offers affordable VPS hosting with a choice of eight different Linux distributions, dedicated VPS hosting, and specializes in Asterisk/VOIP based hosting including Trixbox, AsteriskNow, Elastix, and PBX-in-a-Flash.  Popular choice for unmanaged IP-PBX services; entire infrastructure built on a High-availability (HA) network across three regional NOCs.&lt;br /&gt;
* [http://www.micfo.com Micfo.com] offers VPS hosting services for both Linux VPS hosting and Window VPS hosting on affordable price combined with world-class 24x7x365 support.&lt;br /&gt;
* [http://www.neostreams.info/neoshop/cart.php?gid=9 nEo Stream Services] Offer's Top Quality OpenVZ Servers, Starting at $18.95 per month! SolusVM Control panel , 7 day Money Back Guarantee , 24x7 Professional Support.&lt;br /&gt;
* [http://pogiweb.com/vps/ PogiWeb LLC] Instant and free setup. Includes SolusVM control panel and free level 1 support during first month.&lt;br /&gt;
* [http://www.theserverexperts.com TheServerExperts.com] TheServerExperts VPS line is the ideal solution for clients who require the control of a dedicated server matched with the affordability and simplicity of a traditional shared hosting account.&lt;br /&gt;
* [http://thenynoc.com New York NOC] affordable Linux VPS hosting out of New York and Chicago. Plans as low as $5 a month and are backed by a redundant infrastructure and 24/7 support.&lt;br /&gt;
* [http://railsplayground.com RailsPlayground.com] Ruby on Rails VPS with ready to go Rails images with the LxAdmin control panel&lt;br /&gt;
* [http://www.raidlogic.net RaidLogic.NET] RaidLogic.NET offers OpenVZ based Linux VPS out of multiple facilities across the United States, including Miami, Los Angeles, and Chicago. Starting as low as $3.95/month.&lt;br /&gt;
* [http://www.ramhost.us RAM Host] RAM Host offers OpenVZ based Linux VPS out of multiple facilities across the United States, including Atlanta, Kansas City, and Phoenix.&lt;br /&gt;
* [http://www.reconhosting.com Recon Hosting] Recon Hosting offers affordable OpenVZ VPS solutions where you get Quality Hosting at a Fraction of the price. Instant setup with the latest Operating System templates including cPanel.&lt;br /&gt;
* [http://www.rokabear.com Rokabear] Rokabear offers OpenVZ Linux VPS, Dedicated Server, and Colocation. All Hardware setup in High Availability mode including raided drives and redudnant power and network connections. With multiple upstream providers, Rokabear's connectivity is fast and reliable! Rokabear supports LAMP, Openvpn, and Asterisk configurations. VPSes start at $7.99!&lt;br /&gt;
* [https://www.rosehosting.com RoseHosting] offers OpenVZ Linux virtual servers equipped with Enterprise Grade SSD drives. All hosting plans are fully-managed with FREE 24/7 support, FREE website migration, FREE weekly backups and FREE server monitoring included.&lt;br /&gt;
* [http://www.rshosting.com/vps.html RSHosting.com] RSHosting offers the most secure, reliable and stable VPS - Virtual Private Servers based on OpenVZ architecture, powered by the most professional and qualified 24/7 lightening fast support.&lt;br /&gt;
* [http://www.servercomplete.com Server Complete, LLC] Server Complete offers OpenVZ based Linux VPS out of multiple facilities across the United States, including Atlanta, Dallas, and Chicago.&lt;br /&gt;
* [http://www.servergrove.com ServerGrove] uses OpenVZ as the main virtualization platform for its state of the art VPS hosting services.&lt;br /&gt;
* [http://serverswarm.com ServerSwarm] provides stable, affordable, high performance OpenVZ virtual private servers.&lt;br /&gt;
* [http://www.silverrack.com/ SilverRack VPS Hosting] - SilverRack provides affordable VPS hosting using the OpenVZ platform.&lt;br /&gt;
* [http://www.soficol.com/ Soficol] Offers Enterprise OpenVZ based VPS, hosted on a clustered infrastructure and redundant network. Easy to use user management and instant setup.&lt;br /&gt;
* [http://www.spectrohost.com/ Spectro Host] - Offers performance VPS Servers running openvz. Always the most resources and never over committing OpenVZ nodes.&lt;br /&gt;
* [http://www.budgetvds.com/ BudgetVDS] - Offers VPS Servers running openvz we've been in business for 2 years now using openvz platform.&lt;br /&gt;
* [http://www.syera.net/ Syera Networks] Unmetered VPS From $18.88/M, 24/7 Support, OpenVZ/HyperVM, Instant Setup!, Free 1Gbps Upgrade with Coupon: syera1G&lt;br /&gt;
* [http://www.synapseglobal.com/voip_vps.html SynapseGlobal.com] Elastix, Trixbox, PBX in a Flash and Asterisk VPS - OpenVZ based Asterisk VOIP servers with 14 Tier 1 premium bandwidth providers.&lt;br /&gt;
* [http://www.tektonic.net TekTonic] provides VPS hosting services using both Virtuozzo and OpenVZ technology.&lt;br /&gt;
* [http://www.tigerservers.com/ TigerServers] - Provides affordable managed VPS based on OpenVZ. Servers located in Chicago, Illinois&lt;br /&gt;
* [http://www.tocici.com/ TOCICI VPS Hosting Services] Since 1995 TOCICI has offered web hosting services, with 24/7 support commitments and a strong non-oversell policy. Our purpose-built hosting infrastructure has serviced many organizations for over a decade. Offering OpenVZ VPS, data center colocation, and equipment leasing options, visit our website for prices and more details.&lt;br /&gt;
* [http://www.ultravps.com UltraVPS] UltraVPS offers managed and unmanaged OpenVZ-based VPS hosting utilizing dual CPU hardware nodes with redundant, high-performance RAID-10 storage.  UltraVPS offers VPS servers with many popular control panel options and turn-key applications.&lt;br /&gt;
* [http://www.vpsfx.com VPSFX] VPSFX.com offers OpenVZ VPS, data center colocation, and dedicated servers.&lt;br /&gt;
* [http://www.Webhost.US.Com/linuxvps.html US Web Hosting]  Webhost.US.Com offers powerful GUI based VPS management system with full OpenVZ, Xen Paravirtualization and Xen HVM support.All our Virtual Private servers are fully Managed with 99.9% uptime and 24/7 top notch support.&lt;br /&gt;
* [http://unixservice.com Unixservice/unxsVZ] Low cost OpenVZ ONLY hosting we specialize in Mail, DNS and RADIUS multiple container hosting. At the world famous Market St. San Jose, CA Silicon Valley datacenter. Ping times from your containers to local yahoo and google sites guaranteed single digit ms times. Your containers are backed up at 4 local and 2 remote locations. Contact supportgrp at unixservice dot com.&lt;br /&gt;
* [http://www.vogenic.xyz Vogenic: Cloud Services] If you are searching for an upgrade to the shared hosting service, then you should consider our OpenVZ or KVM VPS hosting services.&lt;br /&gt;
* [http://vpslink.com VPSLink.com] provides virtual private server hosting on the OpenVZ platform.&lt;br /&gt;
* [http://www.vpsspeed.com/ VPSSpeed] - VPSSpeed provides unmanaged OpenVZ based VPS hosting with over 50 OS Templates, real 24/7/365 support and fast US servers. No overselling.&lt;br /&gt;
* [http://vpsnoc.com VPSNOC] offers unmanaged vps hosting based in the USA utilizing OpenVZ hypervisor behind an in-house VPS control panel.&lt;br /&gt;
* [https://www.waveride.at/ Waveride] Waveride, an EDIS company, offers budget full gigabit OpenVZ + solusVM VPS in Austria, USA and the Netherlands&lt;br /&gt;
* [http://www.webappcabaret.com WebAppCabaret] provides VPS solutions for hosting applications. We offer OpenVZ with cPanel or Plesk for web site management; and NGASI Universal App Manager for deploying and managing JAVA and RAILS applications.&lt;br /&gt;
* [http://www.wirenine.com/vps-hosting/ WireNine.com VPS Hosting] Low cost fully managed and unmanaged OpenVZ based VPS Hosting with SAS 15k enterprise drives in high-performance RAID-10 storage.&lt;br /&gt;
* [http://www.zoidial.com/ Zoidial Hosting and VPS] - offers VPS and Virtual Dedicated Server solutions utilizing OpenVZ.  In business since 1998, Zoidial Incorporated is a small hosting provider focused on being security conscious, proactive, and offering a positive client experience.&lt;br /&gt;
* [http://zensix.com ZenSix Hosting] Cheap OpenVZ based VPS accounts with the SolusVM control panel.&lt;br /&gt;
* [http://zigothosting.com Zigot Hosting] Affordable and Reliable OpenVZ based VPS's within the SolusVM control panel.&lt;br /&gt;
* [http://www.vpsfast.us/usa-vps VPSFast] - VPS Provider with good prices in USA (Los Angeles, New Jersey, New York, Seattle, Washington, Dallas, Chicago, Atlanta, Ashburn, Miami, Piscataway).&lt;br /&gt;
* [http://www.xarixlite.com Xarix Lite] - offers OpenVZ hosting in Charlotte, SC. OpenVZ plans starting at $2.50/mo&lt;br /&gt;
&lt;br /&gt;
== Vietnam ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://appvz.com AppVZ.com] (www.appvz.com) is a leading web solution provider offering domain, hosting, reseller and VPS hosting packages from 2009. Just recently, the company has offered discount packages where customers can avail managed and un-managed VPS for only $9.5 per month.&lt;br /&gt;
&lt;br /&gt;
= Hosting providers comparison =&lt;br /&gt;
&lt;br /&gt;
It is hard to compare all virtual private server offers provided by different hosting providers.&lt;br /&gt;
Sites below can help you with it.&lt;br /&gt;
&lt;br /&gt;
* [https://www.cheapvpsservers.co.uk/ VPS Server Reviews]&lt;br /&gt;
* [https://www.hostingmyths.com/ Hosting Myths]&lt;br /&gt;
* [https://www.thehostbay.com/ TheHostBay]&lt;br /&gt;
* [https://www.exoticvps.com/ Exoticvps]&lt;br /&gt;
* [https://reviewsquirrel.com/web-hosting-reviews/ Review Squirrel]&lt;br /&gt;
* [http://wphostninja.com/5-websites-to-follow-to-buy-free-vps-hosting/ Freevpshosting]&lt;br /&gt;
* [http://lowendstock.com/ Lowendstock]&lt;br /&gt;
* [https://www.websitehostingrating.com/ Best Web Hosting Services]&lt;br /&gt;
* [http://serverbear.com/compare?Sort=RAM&amp;amp;Order=asc&amp;amp;Server+Type=VPS&amp;amp;Monthly+Cost=-&amp;amp;HDD=-&amp;amp;RAM=-&amp;amp;Virtualization=OpenVZ Serverbear]&lt;br /&gt;
* [http://wphostninja.com/black-friday-web-hosting-deals/ Black Friday Web Hosting]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
http://vpscomp.com&lt;br /&gt;
http://reviewsignal.com/webhosting/compare/&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= See also =&lt;br /&gt;
&lt;br /&gt;
* [[Partners]]&lt;br /&gt;
* [[Download mirrors]]&lt;br /&gt;
* [[VPS vs Dedicated]]&lt;/div&gt;</summary>
		<author><name>Vvs</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.openvz.org/index.php?title=File:QEMU_KVM.png&amp;diff=23304</id>
		<title>File:QEMU KVM.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.openvz.org/index.php?title=File:QEMU_KVM.png&amp;diff=23304"/>
		<updated>2020-05-27T10:23:39Z</updated>

		<summary type="html">&lt;p&gt;Vvs: Vvs uploaded a new version of File:QEMU KVM.png&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Number of patches from OpenVZ team&lt;br /&gt;
== Description ==&lt;br /&gt;
&lt;br /&gt;
This graph shows how many patches from OpenVZ developers were merged into mainstream QEMU + KVM, per each version.&lt;br /&gt;
&lt;br /&gt;
It is drawn by gnuplot using the data set obtained from git repository.&lt;br /&gt;
&lt;br /&gt;
== Source code ==&lt;br /&gt;
=== Collect data ===&lt;br /&gt;
Here is the script to produce the data for the graph, called &amp;lt;code&amp;gt;count&amp;lt;/code&amp;gt;:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;small&amp;gt;&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
&lt;br /&gt;
# Whose patches to count&lt;br /&gt;
#PAT='@openvz.org|@parallels.com|@sw.ru|@swsoft.com|@sw.com.sg|kuznet@'&lt;br /&gt;
#PAT='@openvz.org|@parallels.com|@sw.ru|@swsoft.com|@sw.com.sg|adobriyan@|kuznet@|gorcunov@'&lt;br /&gt;
PAT='@openvz.org|@parallels.com|@sw.ru|@swsoft.com|@sw.com.sg|virtuozzo.com|kuznet@|gorcunov@'&lt;br /&gt;
&lt;br /&gt;
# Return the date of the given tag, in a format usable by gnuplot&lt;br /&gt;
get_tag_date() {&lt;br /&gt;
	echo $(git show $1 | egrep ^Date: | head -n1) | &lt;br /&gt;
		sed 's/^Date: ... \(.*\) [-+]....$/\1/' |&lt;br /&gt;
		sed 's/ ..:..:..//' | sed 's/ /-/g'&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
# Count the number of patches whose authors match $PAT,&lt;br /&gt;
# for the period between two given git tags&lt;br /&gt;
count_patches() {&lt;br /&gt;
	git log --pretty=short --no-merges $1..$2 |&lt;br /&gt;
		egrep '^Author: ' | egrep $PAT | wc -l&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
count_total_patches() {&lt;br /&gt;
	git log --pretty=short --no-merges $1..$2 | grep -c '^commit '&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
# Latest kernel&lt;br /&gt;
latest=$(git tag | grep -v -- -rc | grep -F 'v1.' | \&lt;br /&gt;
		awk -F . '{print $2}' | sort -n | tail -n1)&lt;br /&gt;
&lt;br /&gt;
# Find out if number of patches for HEAD is much more&lt;br /&gt;
# than for latest -rc. If yes, use HEAD, otherwise -rc.:&lt;br /&gt;
last_rc=$(git describe --abbrev=0)&lt;br /&gt;
HEAD=$last_rc&lt;br /&gt;
if ! test -z &amp;quot;$last_rc&amp;quot;; then&lt;br /&gt;
	much_more=10&lt;br /&gt;
	count_head=$(count_patches v1.$latest.0 HEAD)&lt;br /&gt;
	count_rc=$(count_patches v1.$latest.0 $last_rc)&lt;br /&gt;
	if test $count_head -gt $((count_rc+much_more)); then&lt;br /&gt;
		HEAD=&amp;quot;HEAD   &amp;quot;&lt;br /&gt;
	fi&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
pv=''&lt;br /&gt;
for v in $(git for-each-ref --sort='*authordate' --format='%(tag)' refs/tags |\&lt;br /&gt;
		 grep -v -E -- '-rc|-tree|v2.6.11|\.[1-9]$') HEAD; do&lt;br /&gt;
	if [ -z &amp;quot;$pv&amp;quot; ]; then&lt;br /&gt;
		pv=$v&lt;br /&gt;
		continue&lt;br /&gt;
	fi&lt;br /&gt;
&lt;br /&gt;
	pd=$(get_tag_date $pv)&lt;br /&gt;
	d=$(get_tag_date $v)&lt;br /&gt;
	count_ours=$(count_patches $pv $v)&lt;br /&gt;
	count_total=$(count_total_patches $pv $v)&lt;br /&gt;
	if test &amp;quot;$count_ours&amp;quot; -gt 0; then&lt;br /&gt;
		echo $d $v &amp;quot; &amp;quot; $count_ours $count_total&lt;br /&gt;
	fi&lt;br /&gt;
	pv=$v&lt;br /&gt;
done | sed 's/ /\t/g'&lt;br /&gt;
&amp;lt;/source&amp;gt;&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Draw the graph ===&lt;br /&gt;
&lt;br /&gt;
Here is the script to produce the graph. Note it calls the previous script under the name 'count'.&lt;br /&gt;
&amp;lt;small&amp;gt;&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
&lt;br /&gt;
REPO=~/src/qemu/.git&lt;br /&gt;
COUNT=$(pwd)/count&lt;br /&gt;
OUT=$(pwd)/time.dat&lt;br /&gt;
export GDFONTPATH=/usr/share/fonts/microsoft&lt;br /&gt;
export GIT_DIR=$REPO&lt;br /&gt;
&lt;br /&gt;
if test &amp;quot;$1&amp;quot; != &amp;quot;-f&amp;quot;; then&lt;br /&gt;
	echo &amp;quot;== Previous (old) stats ==&amp;quot;&lt;br /&gt;
	tail -n 2 $OUT&lt;br /&gt;
	# Update the repo and count new stats&lt;br /&gt;
	(cd $REPO &amp;amp;&amp;amp; cd .. &amp;amp;&amp;amp; git pull) &amp;amp;&amp;amp; sh $COUNT &amp;gt; $OUT&lt;br /&gt;
	echo &amp;quot;== New stats ==&amp;quot;&lt;br /&gt;
	tail -n 2 $OUT&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
DATE=$(tail -n 1 $OUT | cut -f 1 | awk -F- '{print $2,$1,$3}')&lt;br /&gt;
MAXY=$(awk 'BEGIN {max=0}; ($3 &amp;gt; max) {max=$3}; END {print max+80}' &amp;lt; time.dat)&lt;br /&gt;
# GNU date is powerful!&lt;br /&gt;
MAXX=$(date +%b-1-%Y --date='+2 months')&lt;br /&gt;
&lt;br /&gt;
cat &amp;lt;&amp;lt; EOF | gnuplot &amp;gt; plot.png&lt;br /&gt;
set terminal png enhanced font &amp;quot;verdana,13&amp;quot; size 1600,1200&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
set title &amp;quot;OpenVZ team QEMU patches progress as of ${DATE}&amp;quot;&lt;br /&gt;
&lt;br /&gt;
unset xlabel&lt;br /&gt;
set xdata time&lt;br /&gt;
set timefmt &amp;quot;%b-%d-%Y&amp;quot;&lt;br /&gt;
set format x &amp;quot;%b\n%Y&amp;quot;&lt;br /&gt;
set grid xtics mxtics noytics&lt;br /&gt;
&lt;br /&gt;
set xrange [ : &amp;quot;${MAXX}&amp;quot; ]&lt;br /&gt;
set yrange [ 0 : ${MAXY} ]&lt;br /&gt;
set ylabel &amp;quot;Number of patches from OpenVZ team,\n per QEMU release, accepted into mainstream&amp;quot;&lt;br /&gt;
&lt;br /&gt;
set border 3		# no lines at right and top&lt;br /&gt;
set xtics nomirror	# no tics at top&lt;br /&gt;
set ytics nomirror	# no tics at right&lt;br /&gt;
&lt;br /&gt;
plot '${OUT}' using 1:3 with linespoints pt 6 ps 1 lw 2 lt 2 notitle, \&lt;br /&gt;
	''	using 1:3:2 with labels left offset 0,5.5 rotate notitle, \&lt;br /&gt;
	''	using 1:3:3 with labels left offset 0.7,0 notitle&lt;br /&gt;
&lt;br /&gt;
EOF&lt;br /&gt;
&amp;lt;/source&amp;gt;&amp;lt;/small&amp;gt;&lt;/div&gt;</summary>
		<author><name>Vvs</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.openvz.org/index.php?title=File:QEMU_KVM.png&amp;diff=23303</id>
		<title>File:QEMU KVM.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.openvz.org/index.php?title=File:QEMU_KVM.png&amp;diff=23303"/>
		<updated>2020-05-27T10:19:46Z</updated>

		<summary type="html">&lt;p&gt;Vvs: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Number of patches from OpenVZ team&lt;br /&gt;
== Description ==&lt;br /&gt;
&lt;br /&gt;
This graph shows how many patches from OpenVZ developers were merged into mainstream QEMU + KVM, per each version.&lt;br /&gt;
&lt;br /&gt;
It is drawn by gnuplot using the data set obtained from git repository.&lt;br /&gt;
&lt;br /&gt;
== Source code ==&lt;br /&gt;
=== Collect data ===&lt;br /&gt;
Here is the script to produce the data for the graph, called &amp;lt;code&amp;gt;count&amp;lt;/code&amp;gt;:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;small&amp;gt;&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
&lt;br /&gt;
# Whose patches to count&lt;br /&gt;
#PAT='@openvz.org|@parallels.com|@sw.ru|@swsoft.com|@sw.com.sg|kuznet@'&lt;br /&gt;
#PAT='@openvz.org|@parallels.com|@sw.ru|@swsoft.com|@sw.com.sg|adobriyan@|kuznet@|gorcunov@'&lt;br /&gt;
PAT='@openvz.org|@parallels.com|@sw.ru|@swsoft.com|@sw.com.sg|virtuozzo.com|kuznet@|gorcunov@'&lt;br /&gt;
&lt;br /&gt;
# Return the date of the given tag, in a format usable by gnuplot&lt;br /&gt;
get_tag_date() {&lt;br /&gt;
	echo $(git show $1 | egrep ^Date: | head -n1) | &lt;br /&gt;
		sed 's/^Date: ... \(.*\) [-+]....$/\1/' |&lt;br /&gt;
		sed 's/ ..:..:..//' | sed 's/ /-/g'&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
# Count the number of patches whose authors match $PAT,&lt;br /&gt;
# for the period between two given git tags&lt;br /&gt;
count_patches() {&lt;br /&gt;
	git log --pretty=short --no-merges $1..$2 |&lt;br /&gt;
		egrep '^Author: ' | egrep $PAT | wc -l&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
count_total_patches() {&lt;br /&gt;
	git log --pretty=short --no-merges $1..$2 | grep -c '^commit '&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
# Latest kernel&lt;br /&gt;
latest=$(git tag | grep -v -- -rc | grep -F 'v1.' | \&lt;br /&gt;
		awk -F . '{print $2}' | sort -n | tail -n1)&lt;br /&gt;
&lt;br /&gt;
# Find out if number of patches for HEAD is much more&lt;br /&gt;
# than for latest -rc. If yes, use HEAD, otherwise -rc.:&lt;br /&gt;
last_rc=$(git describe --abbrev=0)&lt;br /&gt;
HEAD=$last_rc&lt;br /&gt;
if ! test -z &amp;quot;$last_rc&amp;quot;; then&lt;br /&gt;
	much_more=10&lt;br /&gt;
	count_head=$(count_patches v1.$latest.0 HEAD)&lt;br /&gt;
	count_rc=$(count_patches v1.$latest.0 $last_rc)&lt;br /&gt;
	if test $count_head -gt $((count_rc+much_more)); then&lt;br /&gt;
		HEAD=&amp;quot;HEAD   &amp;quot;&lt;br /&gt;
	fi&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
pv=''&lt;br /&gt;
for v in $(git for-each-ref --sort='*authordate' --format='%(tag)' refs/tags |\&lt;br /&gt;
		 grep -v -E -- '-rc|-tree|v2.6.11|\.[1-9]$') HEAD; do&lt;br /&gt;
	if [ -z &amp;quot;$pv&amp;quot; ]; then&lt;br /&gt;
		pv=$v&lt;br /&gt;
		continue&lt;br /&gt;
	fi&lt;br /&gt;
&lt;br /&gt;
	pd=$(get_tag_date $pv)&lt;br /&gt;
	d=$(get_tag_date $v)&lt;br /&gt;
	count_ours=$(count_patches $pv $v)&lt;br /&gt;
	count_total=$(count_total_patches $pv $v)&lt;br /&gt;
	if test &amp;quot;$count_ours&amp;quot; -gt 0; then&lt;br /&gt;
		echo $d $v &amp;quot; &amp;quot; $count_ours $count_total&lt;br /&gt;
	fi&lt;br /&gt;
	pv=$v&lt;br /&gt;
done | sed 's/ /\t/g'&lt;br /&gt;
&amp;lt;/source&amp;gt;&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Draw the graph ===&lt;br /&gt;
&lt;br /&gt;
Here is the script to produce the graph. Note it calls the previous script under the name 'count'.&lt;br /&gt;
&amp;lt;small&amp;gt;&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
&lt;br /&gt;
REPO=~/src/qemu/.git&lt;br /&gt;
COUNT=$(pwd)/count&lt;br /&gt;
OUT=$(pwd)/time.dat&lt;br /&gt;
export GDFONTPATH=/usr/share/fonts/microsoft&lt;br /&gt;
export GIT_DIR=$REPO&lt;br /&gt;
&lt;br /&gt;
if test &amp;quot;$1&amp;quot; != &amp;quot;-f&amp;quot;; then&lt;br /&gt;
	echo &amp;quot;== Previous (old) stats ==&amp;quot;&lt;br /&gt;
	tail -n 2 $OUT&lt;br /&gt;
	# Update the repo and count new stats&lt;br /&gt;
	(cd $REPO &amp;amp;&amp;amp; cd .. &amp;amp;&amp;amp; git pull) &amp;amp;&amp;amp; sh $COUNT &amp;gt; $OUT&lt;br /&gt;
	echo &amp;quot;== New stats ==&amp;quot;&lt;br /&gt;
	tail -n 2 $OUT&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
DATE=$(tail -n 1 $OUT | cut -f 1 | awk -F- '{print $2,$1,$3}')&lt;br /&gt;
MAXY=$(awk 'BEGIN {max=0}; ($3 &amp;gt; max) {max=$3}; END {print max+80}' &amp;lt; time.dat)&lt;br /&gt;
# GNU date is powerful!&lt;br /&gt;
MAXX=$(date +%b-1-%Y --date='+2 months')&lt;br /&gt;
&lt;br /&gt;
cat &amp;lt;&amp;lt; EOF | gnuplot &amp;gt; plot.png&lt;br /&gt;
set terminal png enhanced font &amp;quot;verdana,13&amp;quot; size 1600,1200&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
set title &amp;quot;OpenVZ team QEMU patches progress as of ${DATE}&amp;quot;&lt;br /&gt;
&lt;br /&gt;
unset xlabel&lt;br /&gt;
set xdata time&lt;br /&gt;
set timefmt &amp;quot;%b-%d-%Y&amp;quot;&lt;br /&gt;
set format x &amp;quot;%b\n%Y&amp;quot;&lt;br /&gt;
set grid xtics mxtics noytics&lt;br /&gt;
&lt;br /&gt;
set xrange [ : &amp;quot;${MAXX}&amp;quot; ]&lt;br /&gt;
set yrange [ 0 : ${MAXY} ]&lt;br /&gt;
set ylabel &amp;quot;Number of patches from OpenVZ team,\n per QEMU release, accepted into mainstream&amp;quot;&lt;br /&gt;
&lt;br /&gt;
set border 3		# no lines at right and top&lt;br /&gt;
set xtics nomirror	# no tics at top&lt;br /&gt;
set ytics nomirror	# no tics at right&lt;br /&gt;
&lt;br /&gt;
plot '${OUT}' using 1:3 with linespoints pt 6 ps 1 lw 2 lt 2 notitle, \&lt;br /&gt;
	''	using 1:3:2 with labels left offset 0,5.5 rotate notitle, \&lt;br /&gt;
	''	using 1:3:3 with labels left offset 0.7,0 notitle&lt;br /&gt;
&lt;br /&gt;
EOF&lt;br /&gt;
&amp;lt;/source&amp;gt;&amp;lt;/small&amp;gt;&lt;/div&gt;</summary>
		<author><name>Vvs</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.openvz.org/index.php?title=File:Kernel_patches_stats.png&amp;diff=23302</id>
		<title>File:Kernel patches stats.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.openvz.org/index.php?title=File:Kernel_patches_stats.png&amp;diff=23302"/>
		<updated>2020-05-27T10:09:33Z</updated>

		<summary type="html">&lt;p&gt;Vvs: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category: Development]]&lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
&lt;br /&gt;
This graph shows how many patches from OpenVZ developers were merged into mainstream Linux kernel, per each kernel version.&lt;br /&gt;
&lt;br /&gt;
It is drawn by gnuplot using the data set obtained from kernel git repository.&lt;br /&gt;
&lt;br /&gt;
== Source code ==&lt;br /&gt;
=== Collect data ===&lt;br /&gt;
Here is the script to produce the data for the graph, called &amp;lt;code&amp;gt;count&amp;lt;/code&amp;gt;:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;small&amp;gt;&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
&lt;br /&gt;
# Whose patches to count&lt;br /&gt;
#PAT='@openvz.org|@parallels.com|@sw.ru|@swsoft.com|@sw.com.sg|kuznet@'&lt;br /&gt;
#PAT='@openvz.org|@parallels.com|@sw.ru|@swsoft.com|@sw.com.sg|adobriyan@|kuznet@|gorcunov@'&lt;br /&gt;
PAT='@openvz.org|@parallels.com|@sw.ru|@swsoft.com|@sw.com.sg|@virtuozzo.com|kuznet@|gorcunov@'&lt;br /&gt;
&lt;br /&gt;
# Return the date of the given tag, in a format usable by gnuplot&lt;br /&gt;
get_tag_date() {&lt;br /&gt;
	echo $(git show $1 | egrep ^Date: | head -n1) | &lt;br /&gt;
		sed 's/^Date: ... \(.*\) [-+]....$/\1/' |&lt;br /&gt;
		sed 's/ ..:..:..//' | sed 's/ /-/g'&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
# Count the number of patches whose authors match $PAT,&lt;br /&gt;
# for the period between two given git tags&lt;br /&gt;
count_patches() {&lt;br /&gt;
	git log --pretty=short --no-merges $1..$2 |&lt;br /&gt;
		egrep '^Author: ' | egrep $PAT | wc -l&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
count_total_patches() {&lt;br /&gt;
	git log --pretty=short --no-merges $1..$2 | grep -c '^commit '&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
# Latest 3.x kernel&lt;br /&gt;
#latest3=$(git tag | grep -v -- -rc | tail -n1 | sed -e 's/^.*\.\(.*\)$/\1/')&lt;br /&gt;
latest3=$(git tag | grep -v -- -rc | grep -F 'v3.' | \&lt;br /&gt;
		awk -F . '{print $2}' | sort -n | tail -n1)&lt;br /&gt;
# Latest 2.6.x kernel&lt;br /&gt;
latest26=39&lt;br /&gt;
&lt;br /&gt;
# Find out if number of patches for HEAD is much more&lt;br /&gt;
# than for latest -rc. If yes, use HEAD, otherwise -rc.:&lt;br /&gt;
last_rc=$(git describe --abbrev=0)&lt;br /&gt;
HEAD=$last_rc&lt;br /&gt;
if ! test -z &amp;quot;$last_rc&amp;quot;; then&lt;br /&gt;
	much_more=10&lt;br /&gt;
	count_head=$(count_patches v3.$latest3 HEAD)&lt;br /&gt;
	count_rc=$(count_patches v3.$latest3 $last_rc)&lt;br /&gt;
	if test $count_head -gt $((count_rc+much_more)); then&lt;br /&gt;
		HEAD=&amp;quot;HEAD   &amp;quot;&lt;br /&gt;
	fi&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
pv=''&lt;br /&gt;
for v in $(git for-each-ref --sort='*authordate' --format='%(tag)' refs/tags |\&lt;br /&gt;
		 grep -v -E -- '-rc|-tree|v2.6.11') HEAD; do&lt;br /&gt;
	if [ -z &amp;quot;$pv&amp;quot; ]; then&lt;br /&gt;
		pv=$v&lt;br /&gt;
		continue&lt;br /&gt;
	fi&lt;br /&gt;
&lt;br /&gt;
	pd=$(get_tag_date $pv)&lt;br /&gt;
	d=$(get_tag_date $v)&lt;br /&gt;
	count_ours=$(count_patches $pv $v)&lt;br /&gt;
	count_total=$(count_total_patches $pv $v)&lt;br /&gt;
	if test &amp;quot;$count_ours&amp;quot; -gt 0; then&lt;br /&gt;
		echo $d $v &amp;quot; &amp;quot; $count_ours $count_total&lt;br /&gt;
	fi&lt;br /&gt;
	pv=$v&lt;br /&gt;
done | sed 's/ /\t/g'&lt;br /&gt;
&amp;lt;/source&amp;gt;&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Draw the graph ===&lt;br /&gt;
&lt;br /&gt;
Here is the script to produce the graph. Note it calls the previous script under the name 'count'.&lt;br /&gt;
&amp;lt;small&amp;gt;&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
&lt;br /&gt;
REPO=~/git/linux/.git&lt;br /&gt;
COUNT=$(pwd)/count&lt;br /&gt;
OUT=$(pwd)/time.dat&lt;br /&gt;
export GDFONTPATH=/usr/share/fonts/microsoft&lt;br /&gt;
export GIT_DIR=$REPO&lt;br /&gt;
&lt;br /&gt;
if test &amp;quot;$1&amp;quot; != &amp;quot;-f&amp;quot;; then&lt;br /&gt;
	echo &amp;quot;== Previous (old) stats ==&amp;quot;&lt;br /&gt;
	tail -n 2 $OUT&lt;br /&gt;
	# Update the repo and count new stats&lt;br /&gt;
	(cd $REPO &amp;amp;&amp;amp; cd .. &amp;amp;&amp;amp; git pull) &amp;amp;&amp;amp; sh $COUNT &amp;gt; $OUT&lt;br /&gt;
	echo &amp;quot;== New stats ==&amp;quot;&lt;br /&gt;
	tail -n 2 $OUT&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
DATE=$(tail -n 1 $OUT | cut -f 1 | awk -F- '{print $2,$1,$3}')&lt;br /&gt;
MAXY=$(awk 'BEGIN {max=0}; ($3 &amp;gt; max) {max=$3}; END {print max+80}' &amp;lt; time.dat)&lt;br /&gt;
# GNU date is powerful!&lt;br /&gt;
MAXX=$(date +%b-1-%Y --date='+2 months')&lt;br /&gt;
&lt;br /&gt;
cat &amp;lt;&amp;lt; EOF | gnuplot &amp;gt; plot.png&lt;br /&gt;
set terminal png enhanced font &amp;quot;verdana,13&amp;quot; size 1600,1200&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
set title &amp;quot;OpenVZ team kernel patches progress as of ${DATE}&amp;quot;&lt;br /&gt;
&lt;br /&gt;
unset xlabel&lt;br /&gt;
set xdata time&lt;br /&gt;
set timefmt &amp;quot;%b-%d-%Y&amp;quot;&lt;br /&gt;
set format x &amp;quot;%b\n%Y&amp;quot;&lt;br /&gt;
set grid xtics mxtics noytics&lt;br /&gt;
&lt;br /&gt;
set xrange [ : &amp;quot;${MAXX}&amp;quot; ]&lt;br /&gt;
set yrange [ 0 : ${MAXY} ]&lt;br /&gt;
set ylabel &amp;quot;Number of patches from OpenVZ team,\n per kernel release, accepted into mainstream&amp;quot;&lt;br /&gt;
&lt;br /&gt;
set border 3		# no lines at right and top&lt;br /&gt;
set xtics nomirror	# no tics at top&lt;br /&gt;
set ytics nomirror	# no tics at right&lt;br /&gt;
&lt;br /&gt;
plot '${OUT}' using 1:3 with linespoints pt 6 ps 1 lw 2 lt 2 notitle, \&lt;br /&gt;
	''	using 1:3:2 with labels left offset 0,5.5 rotate notitle, \&lt;br /&gt;
	''	using 1:3:3 with labels left offset 0.7,0 notitle&lt;br /&gt;
&lt;br /&gt;
EOF&lt;br /&gt;
&amp;lt;/source&amp;gt;&amp;lt;/small&amp;gt;&lt;/div&gt;</summary>
		<author><name>Vvs</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.openvz.org/index.php?title=News/updates&amp;diff=23301</id>
		<title>News/updates</title>
		<link rel="alternate" type="text/html" href="https://wiki.openvz.org/index.php?title=News/updates&amp;diff=23301"/>
		<updated>2020-05-25T06:04:10Z</updated>

		<summary type="html">&lt;p&gt;Vvs: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- Everyone who edits this page should read the following three times.&lt;br /&gt;
&lt;br /&gt;
* This page is displayed as is, and also exported via RSS/Atom feed.&lt;br /&gt;
* Therefore, it should be edited with extreme care.&lt;br /&gt;
* Every record consists of the following 4 elements:&lt;br /&gt;
&lt;br /&gt;
  == Header ==&lt;br /&gt;
&lt;br /&gt;
  Semi-detailed textual change log.&lt;br /&gt;
&lt;br /&gt;
  {{Download link|path/to/package}}&lt;br /&gt;
&lt;br /&gt;
  --~~~~&lt;br /&gt;
&lt;br /&gt;
* Changelog should be PLAIN TEXT, i.e.&lt;br /&gt;
* NO LINKS in changelog&lt;br /&gt;
* NO BULLETS in changelog&lt;br /&gt;
* NO FORMATTING (wiki or html) in changelog&lt;br /&gt;
* Do not forget to SIGN your entries&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;startFeed /&amp;gt;&lt;br /&gt;
&amp;lt;!-- *DO NOT REMOVE THIS LINE* new news should go here --&amp;gt;&lt;br /&gt;
== Kernel RHEL6 042stab144.1 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to RHEL6 kernel 2.6.32-754.29.2.el6, security and stability fixes&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab144.1}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]])&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab142.1 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to RHEL6 kernel 2.6.32-754.27.1.el6, bugfixes&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab142.1}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 07:41, 3 February 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab141.3 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to RHEL6 kernel 2.6.32-754.24.3.el6, security and stability fixes&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab141.3}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 17:28, 21 November 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab140.4 ==&lt;br /&gt;
&lt;br /&gt;
Fixed fail of firewalld in centos7.7 containers and other bugfixes.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab140.4}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 12:36, 15 October 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab140.1 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to RHEL6 kernel 2.6.32-754.18.2.el6, security and stability fixes.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab140.1}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 06:45, 20 August 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab139.1 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to RHEL6 kernel 2.6.32-754.15.3.el6, TCP SACK security fixes.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab139.1}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 12:56, 20 June 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab138.1 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to RHEL6 kernel 2.6.32-754.14.2.el6, MDS security fixes.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab138.1}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 15:41, 16 May 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab137.1 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to RHEL6 kernel 2.6.32-754.12.1.el6, security and stability fixes.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab137.1}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 09:47, 6 May 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab136.1 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to RHEL6 kernel 2.6.32-754.11.1.el6, bug fixes.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab136.1}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 08:57, 5 March 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab134.8 ==&lt;br /&gt;
&lt;br /&gt;
Fixes CVE-2018-9568, memory corruption due to incorrect socket cloning&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab134.8}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 08:53, 13 December 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab134.7 ==&lt;br /&gt;
&lt;br /&gt;
Fixes for Ubuntu 16.04 inside containers&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab134.7}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 04:47, 29 November 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab134.3 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to RHEL6 kernel 2.6.32-754.6.3.el6, security and bug fixes.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab134.3}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 14:27, 15 October 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab133.2 ==&lt;br /&gt;
&lt;br /&gt;
fixed regression in 042stab133.1 kernel.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab133.2}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 12:29, 30 August 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab133.1 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to RHEL6 kernel 2.6.32-754.3.5.el6, security and bug fixes.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab133.1}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 14:52, 20 August 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab132.1 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to RHEL6.10 kernel 2.6.32-754.2.1.el6, security fixes.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab132.1}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 01:32, 18 July 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab131.1 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to RHEL6.10 kernel 2.6.32-754.el6, security fixes.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab131.1}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 14:47, 25 June 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab130.1 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to RHEL6 kernel 2.6.32-696.30.1.el6, fixed CVE-2018-3639.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab130.1}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 11:51, 23 May 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Vzctl 4.11.1 ==&lt;br /&gt;
&lt;br /&gt;
Bug fixes&lt;br /&gt;
&lt;br /&gt;
{{Download link|vzctl/4.11.1}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 14:46, 18 May 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab129.1 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to RHEL6 kernel 2.6.32-696.28.1.el6, security and bug fixes.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab129.1}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 09:47, 15 May 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab128.2 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to RHEL6 kernel 2.6.32-696.23.1.el6, security and bug fixes.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab128.2}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 15:23, 26 March 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab127.2 ==&lt;br /&gt;
&lt;br /&gt;
Security and bug fixes.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab127.2}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 11:32, 6 January 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab126.2 ==&lt;br /&gt;
&lt;br /&gt;
Security fixes.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab126.2}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 11:15, 18 December 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab126.1 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to RHEL6 kernel 2.6.32-696.16.1.el6, security and bugfixes.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab126.1}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 06:50, 21 November 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab125.5 ==&lt;br /&gt;
&lt;br /&gt;
Security and bug fixes.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab125.5}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 06:58, 24 October 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL5 028stab122.4 ==&lt;br /&gt;
&lt;br /&gt;
Fixed CVE-2017-1000253.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel5/028stab122.4}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 15:09, 29 September 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab125.3 ==&lt;br /&gt;
&lt;br /&gt;
Fixed CVE-2017-1000253.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab125.3}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 15:08, 29 September 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab125.1 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to RHEL6 kernel 2.6.32-696.10.2.el6, security fixes.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab125.1}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 14:02, 26 September 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab124.2 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to RHEL6 kernel 2.6.32-696.10.1.el6, security and bugfixes.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab124.2}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 09:51, 6 September 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== vzstats 0.5.5 ==&lt;br /&gt;
&lt;br /&gt;
fixed upload to vzstats.openvz.org&lt;br /&gt;
&lt;br /&gt;
{{Download link|vzstats/0.5.5}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 14:18, 14 July 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab123.9 ==&lt;br /&gt;
&lt;br /&gt;
Updated fix for Stackguard security issue&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab123.9}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 11:24, 4 July 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL5 028stab122.3 ==&lt;br /&gt;
&lt;br /&gt;
Stackguard security bugfix backported from mainline&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel5/028stab122.3}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 11:06, 4 July 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL5 028stab122.2 ==&lt;br /&gt;
&lt;br /&gt;
Delayfs should not be mounted manually&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel5/028stab122.2}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 13:18, 27 June 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab123.8 ==&lt;br /&gt;
&lt;br /&gt;
Stackguard security bugfix backported from mainline&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab123.8}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 13:16, 27 June 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab123.6 ==&lt;br /&gt;
&lt;br /&gt;
Stability bugfix for nodes with VLAN in bridge &lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab123.6}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 13:15, 27 June 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab123.4 ==&lt;br /&gt;
&lt;br /&gt;
Several security and bug fixes &lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab123.4}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 13:13, 27 June 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab123.3 ==&lt;br /&gt;
&lt;br /&gt;
NFS-related security and bug fixes &lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab123.3}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 14:57, 18 May 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab123.2 ==&lt;br /&gt;
&lt;br /&gt;
Security fix &lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab123.2}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 05:55, 4 May 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab123.1 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to RHEL6.9 kernel, security and bugfixes &lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab123.1}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 07:50, 7 April 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab120.20 ==&lt;br /&gt;
&lt;br /&gt;
Security fix &lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab120.20}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 11:23, 27 March 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL5 028stab122.1 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to 2.6.18-419.el5, fix for DCCP security&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel5/028stab122.1}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 10:40, 21 March 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab120.19 ==&lt;br /&gt;
&lt;br /&gt;
Security and bugfixes &lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab120.19}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 08:47, 7 March 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL5 028stab121.1 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to 2.6.18-417.el5, fix for CVE-2016-7117&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel5/028stab121.1}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 07:47, 6 February 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab120.18 ==&lt;br /&gt;
&lt;br /&gt;
Security (CVE-2015-8539) and bugfixes (ploop, cpt) &lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab120.18}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 06:47, 6 February 2017 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab120.16 ==&lt;br /&gt;
&lt;br /&gt;
Bugfixes (net, cpt) &lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab120.16}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 12:57, 22 December 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Legacy templates update Nov 2016 ==&lt;br /&gt;
&lt;br /&gt;
Added Ubuntu 16.10 (to beta). Moved Fedora 20, 21, 22, Ubuntu 15.04, 15.10 to unsupported (EOL). All existing templates are updated.&lt;br /&gt;
&lt;br /&gt;
{{Download link|template/precreated|Downloads}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Kir|Kir]] ([[User talk:Kir|talk]]) 23:33, 30 November 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab120.11 ==&lt;br /&gt;
&lt;br /&gt;
Security and bugfixes (net, cpt, filesystems) &lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab120.11}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 09:06, 23 November 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 testing 042stab120.7 ==&lt;br /&gt;
&lt;br /&gt;
Fixed crash on restore of unix socket and crash in ixgbe driver&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6-testing/042stab120.7}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 17:56, 2 November 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab120.6 ==&lt;br /&gt;
&lt;br /&gt;
fixed hang after nfs mount with &amp;quot;lock&amp;quot; option, ploop-over-nfs cleanup&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab120.6}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 17:08, 28 October 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL5 028stab120.3 ==&lt;br /&gt;
&lt;br /&gt;
Fixed CVE-2016-5195 mm: privilege escalation via MAP_PRIVATE COW breakage&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel5/028stab120.3}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 15:33, 26 October 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab120.5 ==&lt;br /&gt;
&lt;br /&gt;
updated fix for CVE-2016-5195, fixed host hang on CT resume, fixed crash on load of sb_edac module&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab120.5}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 10:26, 26 October 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 testing 042stab120.4 ==&lt;br /&gt;
&lt;br /&gt;
Fixed crash on boot during loading of sb_edac module (OVZ-6809)&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6-testing/042stab120.4}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 13:12, 24 October 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab120.3 ==&lt;br /&gt;
&lt;br /&gt;
Fixed CVE-2016-5195 mm: privilege escalation via MAP_PRIVATE COW breakage&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab120.3}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 14:12, 22 October 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab120.2 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to RHEL6u8 kernel 2.6.32-642.6.1.el6. Security, bugfixes, enhancements &lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab120.2}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 14:07, 22 October 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab117.16 ==&lt;br /&gt;
&lt;br /&gt;
Mount of nfs with lock option inside several containers can cause node hang.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab117.16}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vvs|Vvs]] ([[User talk:Vvs|talk]]) 11:22, 4 October 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL5 028stab120.2 ==&lt;br /&gt;
&lt;br /&gt;
Fixed a kernel panic triggerable via the move_pages() syscall.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel5/028stab120.2}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vasily Averin|Vvs]] 12:00, 14 September 2016 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab117.14 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to RHEL6u8 kernel 2.6.32-642.el6 (security, bug fixes, enhancements, see RHSA-2016-0855). Fixes and enhancements in KVM, UBC, ext4, networking, cpt.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab117.14}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Vasily Averin|Vvs]] 15:00, 13 September 2016 (EDT)&lt;br /&gt;
&lt;br /&gt;
== OpenVZ 7.0 GA ==&lt;br /&gt;
&lt;br /&gt;
OpenVZ 7.0 has been released. The new release focuses on merging OpenVZ and Virtuozzo source codebase, replacing our own hypervisor with KVM.&lt;br /&gt;
&lt;br /&gt;
Key changes in comparison to the last stable OpenVZ release:&lt;br /&gt;
&lt;br /&gt;
* OpenVZ 7.0 becomes a complete Linux distribution based on our own VzLinux.&lt;br /&gt;
* The main difference between the Virtuozzo (commercial) and OpenVZ (free) versions are the EULA, packages with paid features, and Anaconda installer.&lt;br /&gt;
* The user documentation is publicly available.&lt;br /&gt;
* EZ templates can be used instead of tarballs with template caches.&lt;br /&gt;
* Additional features (see announce)&lt;br /&gt;
&lt;br /&gt;
[https://lists.openvz.org/pipermail/announce/2016-July/000664.html Read more...]&lt;br /&gt;
&lt;br /&gt;
--[[User:Sergey Bronnikov|SergeyB]] ([[User talk:Sergey Bronnikov|talk]]) 16:58, 25 July 2016 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 testing 042stab117.5 ==&lt;br /&gt;
&lt;br /&gt;
Fix in cpt.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6-testing/042stab117.5}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Sergey Bronnikov|SergeyB]] ([[User talk:Sergey Bronnikov|talk]]) 05:45, 20 June 2016 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 testing 042stab117.4 ==&lt;br /&gt;
&lt;br /&gt;
Fixes in swap and cpt.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6-testing/042stab117.4}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Sergey Bronnikov|SergeyB]] ([[User talk:Sergey Bronnikov|talk]]) 05:54, 14 June 2016 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 testing 042stab117.3 ==&lt;br /&gt;
&lt;br /&gt;
Ploop, CPT fixes and fixed crash on mount of non-EXT4 filesystems.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6-testing/042stab117.3}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Sergey Bronnikov|SergeyB]] ([[User talk:Sergey Bronnikov|talk]]) 08:32, 3 June 2016 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 testing 042stab117.2 ==&lt;br /&gt;
&lt;br /&gt;
Fixes in CPT, CPU hotplug and numabalanced improvements.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6-testing/042stab117.2}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Sergey Bronnikov|SergeyB]] ([[User talk:Sergey Bronnikov|talk]]) 01:39, 31 May 2016 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 testing 042stab117.1 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to RHEL6u8 kernel 2.6.32-642.el6. Improved ext4 defragmentation. Fixes in CPT.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6-testing/042stab117.1}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Kir|Kir]] ([[User talk:Kir|talk]]) 20:10, 25 May 2016 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab116.1 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to RHEL6 kernel 2.6.32-573.26.1.el6. Security, bug and stability fixes.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab116.1}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Kir|Kir]] ([[User talk:Kir|talk]]) 20:09, 25 May 2016 (EDT)&lt;br /&gt;
&lt;br /&gt;
== ploop 1.15 ==&lt;br /&gt;
&lt;br /&gt;
Support for e4defrag2 on compact. Docker-related fixes. Fixes for Alpine Linux and newest GCC. Many other fixes and improvements.&lt;br /&gt;
&lt;br /&gt;
{{Download link|ploop/1.15}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Kir|Kir]] ([[User talk:Kir|talk]]) 22:28, 29 April 2016 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 testing 042stab115.2 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to RHEL6u8 beta kernel 2.6.32-621.el6.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6-testing/042stab115.2}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Sergey Bronnikov|SergeyB]] ([[User talk:Sergey Bronnikov|talk]]) 08:33, 6 April 2016 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 testing 042stab114.5 ==&lt;br /&gt;
&lt;br /&gt;
Proper fix for CVE-2016-3156. Fix for kernel BUG in cfq-iosched (OVZ-6651). Fix for kernel crash inside pick_next_task_fair() (PSBM-44475). Write to CIFS share hangs (OVZ-6642). ub memcg: fake use_hierarhy file is required for KVM's libvirtd (OVZ-6660). Other fixes.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6-testing/042stab114.5}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Sergey Bronnikov|SergeyB]] ([[User talk:Sergey Bronnikov|talk]]) 08:10, 30 March 2016 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Virtuozzo 7 Beta ==&lt;br /&gt;
&lt;br /&gt;
This Virtuozzo 7.0 Beta offers the following major improvements:&lt;br /&gt;
&lt;br /&gt;
Unified management of containers and KVM virtual machines with the prlctl tool and SDK. You get a single universal toolset for all CT/VM management needs.&lt;br /&gt;
&lt;br /&gt;
Autoballooning and kernel same-page merging that allows overcommitting memory resources in the smartest way possible with an insignificant impact on customer workloads.&lt;br /&gt;
&lt;br /&gt;
Memory hotplugging for containers and VMs that allows both increasing and reducing CT/VM memory size on the fly, without the need to reboot. Your customers can now scale their workloads without any downtime. This feature also enables you to make PAYG offerings, allowing customers to change VM resources depending on workload and potentially pay less.&lt;br /&gt;
&lt;br /&gt;
Memory guarantees for both containers and virtual machines.&lt;br /&gt;
&lt;br /&gt;
Ability to manage containers and VMs with libvirt and virt-manager. If you used to manage VMs with libvirt, you can do it in Virtuozzo in absolutely the same way.&lt;br /&gt;
&lt;br /&gt;
Guest tools for Windows and Linux VMs.&lt;br /&gt;
&lt;br /&gt;
[https://download.openvz.org/virtuozzo/releases/7.0-beta3/x86_64/iso/ Download]&lt;br /&gt;
&lt;br /&gt;
--[[User:Sergey Bronnikov|SergeyB]] ([[User talk:Sergey Bronnikov|talk]]) 05:53, 29 March 2016 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 042stab113.21 ==&lt;br /&gt;
&lt;br /&gt;
IPv6 link-local address was being assigned to slave interfaces in bonding which resulted in DAD and network routing issues. (PSBM-42433). kswap activity needed to be restricted in case of high-order requests (PSBM-44291). Force charge swapin readahead pages if in ub0. (PSBM-44857). Missing bounds check in ipt_entry structure in netfilter. (PSBM-45193, CVE-2016-3134). IPv6 connect could cause DoS via NULL pointer dereference (PSBM-45219, CVE-2015-8543). Pipe buffer state corruption after unsuccessful atomic read from pipe (PSBM-45328, CVE-2016-0774). hostapd was broken in early RHEL6.7 kernels (OVZ-6649).&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab113.21}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Sergey Bronnikov|SergeyB]] ([[User talk:Sergey Bronnikov|talk]]) 05:48, 29 March 2016 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 testing 042stab113.21 ==&lt;br /&gt;
&lt;br /&gt;
Missing bounds check in ipt_entry structure in netfilter. (PSBM-45193, CVE-2016-3134). IPv6 connect could cause DoS via NULL pointer dereference (PSBM-45219, CVE-2015-8543). Pipe buffer state corruption after unsuccessful atomic read from pipe (PSBM-45328, CVE-2016-0774). hostapd was broken in early RHEL6.7 kernels. (OVZ-6649)&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6-testing/042stab113.21}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Sergey Bronnikov|SergeyB]] ([[User talk:Sergey Bronnikov|talk]]) 05:47, 29 March 2016 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 testing 042stab113.18 ==&lt;br /&gt;
&lt;br /&gt;
bonding: Prevent IPv6 link local address on enslaved devices (PSBM-42433). kswap activity restriction in case high-order requests (PSBM-44291). force charge swapin readahead pages if in ub0 (PSBM-44857)&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6-testing/042stab113.18}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Sergey Bronnikov|SergeyB]] ([[User talk:Sergey Bronnikov|talk]]) 10:22, 14 March 2016 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 stable 042stab113.17 ==&lt;br /&gt;
&lt;br /&gt;
Crash in restore_one_vfsmount() on restoring shared non-master mounts (PSBM-42471). Introduced FADV_DEACTIVATE flag in fadvise() to be able to move file pages from the active to the inactive list (PSBM-42664). Race between keyctl_read() and keyctl_revoke() could crash the host (PSBM-43799, CVE-2015-7550). Under certain circumstances, backup/restore via CBT interface could hang the host (PSBM-43936). Second-level quota in simfs containers was broken in 042stab113.x kernels (OVZ-6655).&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6/042stab113.17}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Sergey Bronnikov|SergeyB]] ([[User talk:Sergey Bronnikov|talk]]) 06:37, 14 March 2016 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL6 testing 042stab113.17 ==&lt;br /&gt;
&lt;br /&gt;
Crash in restore_one_vfsmount() on restoring shared non-master mounts (PSBM-42471). Introduced FADV_DEACTIVATE flag in fadvise() to be able to move file pages from the active to the inactive list (PSBM-42664). Race between keyctl_read() and keyctl_revoke() could crash the host (PSBM-43799, CVE-2015-7550). Under certain circumstances, backup/restore via CBT interface could hang the host (PSBM-43936). Second-level quota in simfs containers was broken in 042stab113.x kernels (OVZ-6655).&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel6-testing/042stab113.17}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Sergey Bronnikov|SergeyB]] ([[User talk:Sergey Bronnikov|talk]]) 06:37, 14 March 2016 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL5 stable 028stab120.1 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to RHEL5 kernel 2.6.32-408.el5. Fixes for CVE-2015-5364, CVE-2015-5366.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel5/028stab120.1}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Sergey Bronnikov|SergeyB]] ([[User talk:Sergey Bronnikov|talk]]) 07:30, 2 February 2016 (EST)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL5 testing 028stab120.1 ==&lt;br /&gt;
&lt;br /&gt;
Rebase to RHEL5 kernel 2.6.32-408.el5. Fixes for CVE-2015-5364, CVE-2015-5366.&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel5-testing/028stab120.1}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Sergey Bronnikov|SergeyB]] ([[User talk:Sergey Bronnikov|talk]]) 04:30, 25 January 2016 (EST)&lt;br /&gt;
&lt;br /&gt;
== Kernel RHEL5 stable 028stab119.6 ==&lt;br /&gt;
&lt;br /&gt;
Improved accounting for network-related memory objects (PCLIN-32553). Introduced a per-container limit for the number of mounts (PCLIN-32554). Introduced a per-container limit for IPv4 network interface aliases (PCLIN-32555).&lt;br /&gt;
&lt;br /&gt;
{{Download link|kernel/rhel5/028stab119.6}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Sergey Bronnikov|SergeyB]] ([[User talk:Sergey Bronnikov|talk]]) 09:25, 3 January 2016 (EST)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;endFeed /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Older updates ==&lt;br /&gt;
* [[/2015/]] (59)&lt;br /&gt;
* [[/2014/]] (74)&lt;br /&gt;
* [[/2013/]] (98)&lt;br /&gt;
* [[/2012/]] (93)&lt;br /&gt;
* [[/2011/]] (102)&lt;br /&gt;
* [[/2010/]] (64)&lt;br /&gt;
* [[/2009/]] (22)&lt;br /&gt;
* [[/2008/]] (24)&lt;br /&gt;
* 2005-2007 (119): available from the [http://old.openvz.org/news/updates old site]&lt;/div&gt;</summary>
		<author><name>Vvs</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.openvz.org/index.php?title=Download/kernel/rhel6/Archives/allversions&amp;diff=23300</id>
		<title>Download/kernel/rhel6/Archives/allversions</title>
		<link rel="alternate" type="text/html" href="https://wiki.openvz.org/index.php?title=Download/kernel/rhel6/Archives/allversions&amp;diff=23300"/>
		<updated>2020-05-25T06:00:59Z</updated>

		<summary type="html">&lt;p&gt;Vvs: Bot: Automated import of articles *** existing text overwritten ***&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* {{kernel link|rhel6|042stab144.1}}&lt;br /&gt;
* {{kernel link|rhel6|042stab142.1}}&lt;br /&gt;
* {{kernel link|rhel6|042stab141.3}}&lt;br /&gt;
* {{kernel link|rhel6|042stab140.4}}&lt;br /&gt;
* {{kernel link|rhel6|042stab140.1}}&lt;br /&gt;
* {{kernel link|rhel6|042stab139.1}}&lt;br /&gt;
* {{kernel link|rhel6|042stab138.1}}&lt;br /&gt;
* {{kernel link|rhel6|042stab137.1}}&lt;br /&gt;
* {{kernel link|rhel6|042stab136.1}}&lt;br /&gt;
* {{kernel link|rhel6|042stab134.8}}&lt;br /&gt;
* {{kernel link|rhel6|042stab134.7}}&lt;br /&gt;
* {{kernel link|rhel6|042stab134.3}}&lt;br /&gt;
* {{kernel link|rhel6|042stab133.2}}&lt;br /&gt;
* {{kernel link|rhel6|042stab133.1}}&lt;br /&gt;
* {{kernel link|rhel6|042stab132.1}}&lt;br /&gt;
* {{kernel link|rhel6|042stab131.1}}&lt;br /&gt;
* {{kernel link|rhel6|042stab130.1}}&lt;br /&gt;
* {{kernel link|rhel6|042stab129.1}}&lt;br /&gt;
* {{kernel link|rhel6|042stab128.2}}&lt;br /&gt;
* {{kernel link|rhel6|042stab127.2}}&lt;br /&gt;
* {{kernel link|rhel6|042stab126.2}}&lt;br /&gt;
* {{kernel link|rhel6|042stab126.1}}&lt;br /&gt;
* {{kernel link|rhel6|042stab125.5}}&lt;br /&gt;
* {{kernel link|rhel6|042stab125.3}}&lt;br /&gt;
* {{kernel link|rhel6|042stab125.1}}&lt;br /&gt;
* {{kernel link|rhel6|042stab124.2}}&lt;br /&gt;
* {{kernel link|rhel6|042stab123.9}}&lt;br /&gt;
* {{kernel link|rhel6|042stab123.8}}&lt;br /&gt;
* {{kernel link|rhel6|042stab123.6}}&lt;br /&gt;
* {{kernel link|rhel6|042stab123.4}}&lt;br /&gt;
* {{kernel link|rhel6|042stab123.3}}&lt;br /&gt;
* {{kernel link|rhel6|042stab123.2}}&lt;br /&gt;
* {{kernel link|rhel6|042stab123.1}}&lt;br /&gt;
* {{kernel link|rhel6|042stab120.20}}&lt;br /&gt;
* {{kernel link|rhel6|042stab120.19}}&lt;br /&gt;
* {{kernel link|rhel6|042stab120.18}}&lt;br /&gt;
* {{kernel link|rhel6|042stab120.16}}&lt;br /&gt;
* {{kernel link|rhel6|042stab120.11}}&lt;br /&gt;
* {{kernel link|rhel6|042stab120.6}}&lt;br /&gt;
* {{kernel link|rhel6|042stab120.5}}&lt;br /&gt;
* {{kernel link|rhel6|042stab120.3}}&lt;br /&gt;
* {{kernel link|rhel6|042stab120.2}}&lt;br /&gt;
* {{kernel link|rhel6|042stab117.16}}&lt;br /&gt;
* {{kernel link|rhel6|042stab117.14}}&lt;br /&gt;
* {{kernel link|rhel6|042stab116.2}}&lt;br /&gt;
* {{kernel link|rhel6|042stab116.1}}&lt;br /&gt;
* {{kernel link|rhel6|042stab113.21}}&lt;br /&gt;
* {{kernel link|rhel6|042stab113.17}}&lt;br /&gt;
* {{kernel link|rhel6|042stab113.11}}&lt;br /&gt;
* {{kernel link|rhel6|042stab112.15}}&lt;br /&gt;
* {{kernel link|rhel6|042stab111.12}}&lt;br /&gt;
* {{kernel link|rhel6|042stab111.11}}&lt;br /&gt;
* {{kernel link|rhel6|042stab108.8}}&lt;br /&gt;
* {{kernel link|rhel6|042stab108.7}}&lt;br /&gt;
* {{kernel link|rhel6|042stab108.6}}&lt;br /&gt;
* {{kernel link|rhel6|042stab108.5}}&lt;br /&gt;
* {{kernel link|rhel6|042stab108.2}}&lt;br /&gt;
* {{kernel link|rhel6|042stab108.1}}&lt;br /&gt;
* {{kernel link|rhel6|042stab106.6}}&lt;br /&gt;
* {{kernel link|rhel6|042stab106.4}}&lt;br /&gt;
* {{kernel link|rhel6|042stab105.14}}&lt;br /&gt;
* {{kernel link|rhel6|042stab104.1}}&lt;br /&gt;
* {{kernel link|rhel6|042stab103.6}}&lt;br /&gt;
* {{kernel link|rhel6|042stab102.9}}&lt;br /&gt;
* {{kernel link|rhel6|042stab094.8}}&lt;br /&gt;
* {{kernel link|rhel6|042stab094.7}}&lt;br /&gt;
* {{kernel link|rhel6|042stab093.5}}&lt;br /&gt;
* {{kernel link|rhel6|042stab093.4}}&lt;br /&gt;
* {{kernel link|rhel6|042stab092.3}}&lt;br /&gt;
* {{kernel link|rhel6|042stab092.2}}&lt;br /&gt;
* {{kernel link|rhel6|042stab092.1}}&lt;br /&gt;
* {{kernel link|rhel6|042stab090.5}}&lt;br /&gt;
* {{kernel link|rhel6|042stab090.4}}&lt;br /&gt;
* {{kernel link|rhel6|042stab090.3}}&lt;br /&gt;
* {{kernel link|rhel6|042stab090.2}}&lt;br /&gt;
* {{kernel link|rhel6|042stab088.4}}&lt;br /&gt;
* {{kernel link|rhel6|042stab085.20}}&lt;br /&gt;
* {{kernel link|rhel6|042stab085.17}}&lt;br /&gt;
* {{kernel link|rhel6|042stab084.26}}&lt;br /&gt;
* {{kernel link|rhel6|042stab084.25}}&lt;br /&gt;
* {{kernel link|rhel6|042stab084.20}}&lt;br /&gt;
* {{kernel link|rhel6|042stab084.17}}&lt;br /&gt;
* {{kernel link|rhel6|042stab084.14}}&lt;br /&gt;
* {{kernel link|rhel6|042stab084.12}}&lt;br /&gt;
* {{kernel link|rhel6|042stab083.2}}&lt;br /&gt;
* {{kernel link|rhel6|042stab081.8}}&lt;br /&gt;
* {{kernel link|rhel6|042stab081.5}}&lt;br /&gt;
* {{kernel link|rhel6|042stab081.3}}&lt;br /&gt;
* {{kernel link|rhel6|042stab079.6}}&lt;br /&gt;
* {{kernel link|rhel6|042stab079.5}}&lt;br /&gt;
* {{kernel link|rhel6|042stab079.4}}&lt;br /&gt;
* {{kernel link|rhel6|042stab078.28}}&lt;br /&gt;
* {{kernel link|rhel6|042stab078.27}}&lt;br /&gt;
* {{kernel link|rhel6|042stab078.26}}&lt;br /&gt;
* {{kernel link|rhel6|042stab078.22}}&lt;br /&gt;
* {{kernel link|rhel6|042stab076.8}}&lt;br /&gt;
* {{kernel link|rhel6|042stab076.7}}&lt;br /&gt;
* {{kernel link|rhel6|042stab076.5}}&lt;br /&gt;
* {{kernel link|rhel6|042stab075.2}}&lt;br /&gt;
* {{kernel link|rhel6|042stab074.10}}&lt;br /&gt;
* {{kernel link|rhel6|042stab072.10}}&lt;br /&gt;
* {{kernel link|rhel6|042stab068.8}}&lt;br /&gt;
* {{kernel link|rhel6|042stab065.3}}&lt;br /&gt;
* {{kernel link|rhel6|042stab063.2}}&lt;br /&gt;
* {{kernel link|rhel6|042stab062.2}}&lt;br /&gt;
* {{kernel link|rhel6|042stab061.2}}&lt;br /&gt;
* {{kernel link|rhel6|042stab059.7}}&lt;br /&gt;
* {{kernel link|rhel6|042stab057.1}}&lt;br /&gt;
* {{kernel link|rhel6|042stab055.16}}&lt;br /&gt;
* {{kernel link|rhel6|042stab055.12}}&lt;br /&gt;
* {{kernel link|rhel6|042stab055.10}}&lt;br /&gt;
* {{kernel link|rhel6|042stab053.5}}&lt;br /&gt;
* {{kernel link|rhel6|042stab049.7}}&lt;br /&gt;
* {{kernel link|rhel6|042stab049.6}}&lt;br /&gt;
* {{kernel link|rhel6|042stab044.17}}&lt;br /&gt;
* {{kernel link|rhel6|042stab044.11}}&lt;br /&gt;
* {{kernel link|rhel6|042stab039.11}}&lt;br /&gt;
* {{kernel link|rhel6|042stab039.10}}&lt;br /&gt;
* {{kernel link|rhel6|042stab037.1}}&lt;/div&gt;</summary>
		<author><name>Vvs</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.openvz.org/index.php?title=Download/kernel/rhel6/042stab144.1&amp;diff=23299</id>
		<title>Download/kernel/rhel6/042stab144.1</title>
		<link rel="alternate" type="text/html" href="https://wiki.openvz.org/index.php?title=Download/kernel/rhel6/042stab144.1&amp;diff=23299"/>
		<updated>2020-05-25T06:00:39Z</updated>

		<summary type="html">&lt;p&gt;Vvs: Bot: Automated import of articles&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Kernel branch rhel6|042stab144.1}}&lt;br /&gt;
{{Changelog}}&lt;br /&gt;
== RPMs ==&lt;br /&gt;
&lt;br /&gt;
{{Kernel flavors info rhel6}}&lt;br /&gt;
=== {{i686}} ===&lt;br /&gt;
&lt;br /&gt;
{{Download/Table head}}&lt;br /&gt;
{{Download/Table row|path=kernel/branches/rhel6-2.6.32/042stab144.1|file=vzkernel-2.6.32-042stab144.1.i686.rpm|size=33&amp;amp;nbsp;Mb|date=2020-05-25 05:31:48|sig=}}&lt;br /&gt;
{{Download/Table row|path=kernel/branches/rhel6-2.6.32/042stab144.1|file=vzkernel-devel-2.6.32-042stab144.1.i686.rpm|size=10&amp;amp;nbsp;Mb|date=2020-05-25 05:32:00|sig=}}&lt;br /&gt;
{{Download/Table row|path=kernel/branches/rhel6-2.6.32/042stab144.1|file=vzkernel-headers-2.6.32-042stab144.1.i686.rpm|size=5&amp;amp;nbsp;Mb|date=2020-05-25 05:32:03|sig=}}&lt;br /&gt;
{{Download/Table row|path=kernel/branches/rhel6-2.6.32/042stab144.1|file=vzkernel-debug-2.6.32-042stab144.1.i686.rpm|size=34&amp;amp;nbsp;Mb|date=2020-05-25 05:31:56|sig=}}&lt;br /&gt;
{{Download/Table row|path=kernel/branches/rhel6-2.6.32/042stab144.1|file=vzkernel-debug-devel-2.6.32-042stab144.1.i686.rpm|size=10&amp;amp;nbsp;Mb|date=2020-05-25 05:31:58|sig=}}&lt;br /&gt;
{{Download/Table row|path=kernel/branches/rhel6-2.6.32/042stab144.1|file=vzkernel-firmware-2.6.32-042stab144.1.noarch.rpm|size=33&amp;amp;nbsp;Mb|date=2020-05-25 05:32:02|sig=}}&lt;br /&gt;
{{Download/Table tail}}&lt;br /&gt;
=== {{x86_64}} ===&lt;br /&gt;
&lt;br /&gt;
{{Download/Table head}}&lt;br /&gt;
{{Download/Table row|path=kernel/branches/rhel6-2.6.32/042stab144.1|file=vzkernel-2.6.32-042stab144.1.x86_64.rpm|size=35&amp;amp;nbsp;Mb|date=2020-05-25 05:31:54|sig=}}&lt;br /&gt;
{{Download/Table row|path=kernel/branches/rhel6-2.6.32/042stab144.1|file=vzkernel-devel-2.6.32-042stab144.1.x86_64.rpm|size=10&amp;amp;nbsp;Mb|date=2020-05-25 05:32:01|sig=}}&lt;br /&gt;
{{Download/Table row|path=kernel/branches/rhel6-2.6.32/042stab144.1|file=vzkernel-headers-2.6.32-042stab144.1.x86_64.rpm|size=5&amp;amp;nbsp;Mb|date=2020-05-25 05:32:03|sig=}}&lt;br /&gt;
{{Download/Table row|path=kernel/branches/rhel6-2.6.32/042stab144.1|file=vzkernel-debug-2.6.32-042stab144.1.x86_64.rpm|size=36&amp;amp;nbsp;Mb|date=2020-05-25 05:31:57|sig=}}&lt;br /&gt;
{{Download/Table row|path=kernel/branches/rhel6-2.6.32/042stab144.1|file=vzkernel-debug-devel-2.6.32-042stab144.1.x86_64.rpm|size=10&amp;amp;nbsp;Mb|date=2020-05-25 05:31:59|sig=}}&lt;br /&gt;
{{Download/Table row|path=kernel/branches/rhel6-2.6.32/042stab144.1|file=vzkernel-firmware-2.6.32-042stab144.1.noarch.rpm|size=33&amp;amp;nbsp;Mb|date=2020-05-25 05:32:02|sig=}}&lt;br /&gt;
{{Download/Table tail}}&lt;br /&gt;
=== source ===&lt;br /&gt;
&lt;br /&gt;
{{Download/Table head}}&lt;br /&gt;
{{Download/Table row|path=kernel/branches/rhel6-2.6.32/042stab144.1|file=vzkernel-2.6.32-042stab144.1.src.rpm|size=130&amp;amp;nbsp;Mb|date=2020-05-25 05:31:53|sig=}}&lt;br /&gt;
{{Download/Table row|path=kernel/branches/rhel6-2.6.32/042stab144.1|file=kernel.spec|size=4&amp;amp;nbsp;Mb|date=2020-05-25 05:24:24|sig=}}&lt;br /&gt;
{{Download/Table tail}}&lt;br /&gt;
== DEBs ==&lt;br /&gt;
=== {{amd64}} ===&lt;br /&gt;
&lt;br /&gt;
{{Download/Table head}}&lt;br /&gt;
{{Download/Table row|path=kernel/branches/rhel6-2.6.32/042stab144.1|file=linux-image-2.6.32-openvz-042stab144.1-amd64_1_amd64.deb|size=66&amp;amp;nbsp;Mb|date=2020-05-25 05:23:23|sig=}}&lt;br /&gt;
{{Download/Table row|path=kernel/branches/rhel6-2.6.32/042stab144.1|file=linux-headers-2.6.32-openvz-042stab144.1-amd64_1_amd64.deb|size=7&amp;amp;nbsp;Mb|date=2020-05-25 05:23:21|sig=}}&lt;br /&gt;
{{Download/Table row|path=kernel/branches/rhel6-2.6.32/042stab144.1|file=linux-image-openvz-amd64_042stab144.1_amd64.deb|size=3&amp;amp;nbsp;Kb|date=2020-05-25 05:23:24|sig=}}&lt;br /&gt;
{{Download/Table row|path=kernel/branches/rhel6-2.6.32/042stab144.1|file=linux-source-2.6.32-openvz-042stab144.1-amd64_1_all.deb|size=134&amp;amp;nbsp;Mb|date=2020-05-25 05:23:27|sig=}}&lt;br /&gt;
{{Download/Table tail}}&lt;br /&gt;
=== {{i386}} ===&lt;br /&gt;
&lt;br /&gt;
{{Download/Table head}}&lt;br /&gt;
{{Download/Table row|path=kernel/branches/rhel6-2.6.32/042stab144.1|file=linux-image-2.6.32-openvz-042stab144.1-i386-686_1_i386.deb|size=63&amp;amp;nbsp;Mb|date=2020-05-25 05:23:24|sig=}}&lt;br /&gt;
{{Download/Table row|path=kernel/branches/rhel6-2.6.32/042stab144.1|file=linux-headers-2.6.32-openvz-042stab144.1-i386_1_i386.deb|size=7&amp;amp;nbsp;Mb|date=2020-05-25 05:23:21|sig=}}&lt;br /&gt;
{{Download/Table row|path=kernel/branches/rhel6-2.6.32/042stab144.1|file=linux-image-openvz-i386_042stab144.1_i386.deb|size=3&amp;amp;nbsp;Kb|date=2020-05-25 05:23:24|sig=}}&lt;br /&gt;
{{Download/Table row|path=kernel/branches/rhel6-2.6.32/042stab144.1|file=linux-source-2.6.32-openvz-042stab144.1-i386_1_all.deb|size=134&amp;amp;nbsp;Mb|date=2020-05-25 05:23:31|sig=}}&lt;br /&gt;
{{Download/Table tail}}&lt;br /&gt;
&lt;br /&gt;
{{Kernel patch for|2.6.32}}&lt;br /&gt;
&lt;br /&gt;
{{Download/Table head}}&lt;br /&gt;
{{Download/Table row|path=kernel/branches/rhel6-2.6.32/042stab144.1/patches|file=patch-042stab144.1-combined.gz|size=89&amp;amp;nbsp;Mb|date=2020-05-25 05:28:40|sig=patch-042stab144.1-combined.gz.asc}}&lt;br /&gt;
{{Download/Table tail}}&lt;br /&gt;
== Configs ==&lt;br /&gt;
&lt;br /&gt;
Official configs of this OpenVZ kernel used to build binaries.&lt;br /&gt;
&lt;br /&gt;
{{Download/Table head}}&lt;br /&gt;
{{Download/Table row|path=kernel/branches/rhel6-2.6.32/042stab144.1/configs|file=config-2.6.32-042stab144.1.debug.i686|size=111&amp;amp;nbsp;Kb|date=2020-05-25 05:30:22|sig=}}&lt;br /&gt;
{{Download/Table row|path=kernel/branches/rhel6-2.6.32/042stab144.1/configs|file=config-2.6.32-042stab144.1.debug.x86_64|size=107&amp;amp;nbsp;Kb|date=2020-05-25 05:30:29|sig=}}&lt;br /&gt;
{{Download/Table row|path=kernel/branches/rhel6-2.6.32/042stab144.1/configs|file=config-2.6.32-042stab144.1.i686|size=111&amp;amp;nbsp;Kb|date=2020-05-25 05:30:05|sig=}}&lt;br /&gt;
{{Download/Table row|path=kernel/branches/rhel6-2.6.32/042stab144.1/configs|file=config-2.6.32-042stab144.1.x86_64|size=106&amp;amp;nbsp;Kb|date=2020-05-25 05:30:13|sig=}}&lt;br /&gt;
{{Download/Table tail}}&lt;br /&gt;
&lt;br /&gt;
{{Kernel archives|rhel6}}&lt;/div&gt;</summary>
		<author><name>Vvs</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.openvz.org/index.php?title=Template:Latest_rhel6_kernel&amp;diff=23298</id>
		<title>Template:Latest rhel6 kernel</title>
		<link rel="alternate" type="text/html" href="https://wiki.openvz.org/index.php?title=Template:Latest_rhel6_kernel&amp;diff=23298"/>
		<updated>2020-05-25T06:00:19Z</updated>

		<summary type="html">&lt;p&gt;Vvs: Bot: Automated import of articles *** existing text overwritten ***&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;042stab144.1&lt;/div&gt;</summary>
		<author><name>Vvs</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.openvz.org/index.php?title=Download/kernel/rhel6/042stab144.1/changes&amp;diff=23297</id>
		<title>Download/kernel/rhel6/042stab144.1/changes</title>
		<link rel="alternate" type="text/html" href="https://wiki.openvz.org/index.php?title=Download/kernel/rhel6/042stab144.1/changes&amp;diff=23297"/>
		<updated>2020-05-25T05:22:29Z</updated>

		<summary type="html">&lt;p&gt;Vvs: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Changes ==&lt;br /&gt;
Since {{kernel link|rhel6|042stab142.1}}:&lt;br /&gt;
&lt;br /&gt;
* Rebase to RHEL6u10 kernel 2.6.32-754.29.2.el6&lt;br /&gt;
* '''Important''' Kernel: NetLabel: null pointer dereference while receiving CIPSO packet with null category may cause kernel panic. (CVE-2020-10711)&lt;br /&gt;
* '''Important''' kernel: rtl_p2p_noa_ie in drivers/net/wireless/realtek/rtlwifi/ps.c in the Linux kernel lacks a certain upper-bound check, leading to a buffer overflow. (CVE-2019-17666)&lt;br /&gt;
* '''Important''' kernel: buffer overflow in cfg80211_mgd_wext_giwessid in net/wireless/wext-sme.c. (CVE-2019-17133)&lt;br /&gt;
* '''Moderate''' kernel: out-of-bounds write in mpol_parse_str function in mm/mempolicy.c. (CVE-2020-11565)&lt;br /&gt;
* '''Moderate''' kernel: use-after-free in n_tty_receive_buf_common function in drivers/tty/n_tty.c. (CVE-2020-8648)&lt;br /&gt;
* '''Moderate''' kernel: unprivileged users able to create RAW sockets in AF_ISDN network protocol. (CVE-2019-17055)&lt;br /&gt;
* '''Moderate''' kernel: memory leak in register_queue_kobjects() in net/core/net-sysfs.c leads to denial of service. (CVE-2019-15916)&lt;br /&gt;
* '''Low''' kernel: offset2lib allows for the stack guard page to be jumped over. (CVE-2017-1000371)&lt;br /&gt;
* Do not force memory reclaim during per-netns memory allocation for conntrack hash table. (PSBM-102730)&lt;br /&gt;
&lt;br /&gt;
=== See also ===&lt;br /&gt;
* {{RHSA|2020-0790}}&lt;br /&gt;
* {{RHSA|2020-1524}}&lt;br /&gt;
* {{RHSA|2020-2103}}&lt;br /&gt;
* {{CVE|2017-1000371}}&lt;br /&gt;
* {{CVE|2019-19516}}&lt;br /&gt;
* {{CVE|2019-17055}}&lt;br /&gt;
* {{CVE|2019-17133}}&lt;br /&gt;
* {{CVE|2019-17666}}&lt;br /&gt;
* {{CVE|2020-8648}}&lt;br /&gt;
* {{CVE|2020-10711}}&lt;br /&gt;
* {{CVE|2020-11565}}&lt;/div&gt;</summary>
		<author><name>Vvs</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.openvz.org/index.php?title=Download/kernel/rhel6/042stab144.1/changes&amp;diff=23296</id>
		<title>Download/kernel/rhel6/042stab144.1/changes</title>
		<link rel="alternate" type="text/html" href="https://wiki.openvz.org/index.php?title=Download/kernel/rhel6/042stab144.1/changes&amp;diff=23296"/>
		<updated>2020-05-25T05:21:54Z</updated>

		<summary type="html">&lt;p&gt;Vvs: Created page with &amp;quot;== Changes == Since {{kernel link|rhel6|042stab142.1}}:  * Rebase to RHEL6u10 kernel 2.6.32-754.29.2.el6 * '''[Important]''' Kernel: KVM: OOB memory access via mmio ring buffe...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Changes ==&lt;br /&gt;
Since {{kernel link|rhel6|042stab142.1}}:&lt;br /&gt;
&lt;br /&gt;
* Rebase to RHEL6u10 kernel 2.6.32-754.29.2.el6&lt;br /&gt;
* '''[Important]''' Kernel: KVM: OOB memory access via mmio ring buffer. (CVE-2019-14821) &lt;br /&gt;
* vzfs-to-ploop conversion on running container could crash the host. (PSBM-99030, PSBM-100878)&lt;br /&gt;
* Container stop operation could hang. (PSBM-100203)&lt;br /&gt;
* Container restore operation could crash the host due to incorrect symbolic link processing. (OVZ-7147) &lt;br /&gt;
&lt;br /&gt;
* '''Important''' Kernel: NetLabel: null pointer dereference while receiving CIPSO packet with null category may cause kernel panic. (CVE-2020-10711)&lt;br /&gt;
* '''Important''' kernel: rtl_p2p_noa_ie in drivers/net/wireless/realtek/rtlwifi/ps.c in the Linux kernel lacks a certain upper-bound check, leading to a buffer overflow. (CVE-2019-17666)&lt;br /&gt;
* '''Important''' kernel: buffer overflow in cfg80211_mgd_wext_giwessid in net/wireless/wext-sme.c. (CVE-2019-17133)&lt;br /&gt;
* '''Moderate''' kernel: out-of-bounds write in mpol_parse_str function in mm/mempolicy.c. (CVE-2020-11565)&lt;br /&gt;
* '''Moderate''' kernel: use-after-free in n_tty_receive_buf_common function in drivers/tty/n_tty.c. (CVE-2020-8648)&lt;br /&gt;
* '''Moderate''' kernel: unprivileged users able to create RAW sockets in AF_ISDN network protocol. (CVE-2019-17055)&lt;br /&gt;
* '''Moderate''' kernel: memory leak in register_queue_kobjects() in net/core/net-sysfs.c leads to denial of service. (CVE-2019-15916)&lt;br /&gt;
* '''Low''' kernel: offset2lib allows for the stack guard page to be jumped over. (CVE-2017-1000371)&lt;br /&gt;
* Do not force memory reclaim during per-netns memory allocation for conntrack hash table. (PSBM-102730)&lt;br /&gt;
&lt;br /&gt;
=== See also ===&lt;br /&gt;
* {{RHSA|2020-0790}}&lt;br /&gt;
* {{RHSA|2020-1524}}&lt;br /&gt;
* {{RHSA|2020-2103}}&lt;br /&gt;
* {{CVE|2017-1000371}}&lt;br /&gt;
* {{CVE|2019-19516}}&lt;br /&gt;
* {{CVE|2019-17055}}&lt;br /&gt;
* {{CVE|2019-17133}}&lt;br /&gt;
* {{CVE|2019-17666}}&lt;br /&gt;
* {{CVE|2020-8648}}&lt;br /&gt;
* {{CVE|2020-10711}}&lt;br /&gt;
* {{CVE|2020-11565}}&lt;/div&gt;</summary>
		<author><name>Vvs</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.openvz.org/index.php?title=File:Kernel_patches_stats.png&amp;diff=23295</id>
		<title>File:Kernel patches stats.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.openvz.org/index.php?title=File:Kernel_patches_stats.png&amp;diff=23295"/>
		<updated>2020-05-03T13:27:47Z</updated>

		<summary type="html">&lt;p&gt;Vvs: Vvs uploaded a new version of File:Kernel patches stats.png&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category: Development]]&lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
&lt;br /&gt;
This graph shows how many patches from OpenVZ developers were merged into mainstream Linux kernel, per each kernel version.&lt;br /&gt;
&lt;br /&gt;
It is drawn by gnuplot using the data set obtained from kernel git repository.&lt;br /&gt;
&lt;br /&gt;
== Source code ==&lt;br /&gt;
=== Collect data ===&lt;br /&gt;
Here is the script to produce the data for the graph, called &amp;lt;code&amp;gt;count&amp;lt;/code&amp;gt;:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;small&amp;gt;&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
&lt;br /&gt;
# Whose patches to count&lt;br /&gt;
#PAT='@openvz.org|@parallels.com|@sw.ru|@swsoft.com|@sw.com.sg|kuznet@'&lt;br /&gt;
#PAT='@openvz.org|@parallels.com|@sw.ru|@swsoft.com|@sw.com.sg|adobriyan@|kuznet@|gorcunov@'&lt;br /&gt;
PAT='@openvz.org|@parallels.com|@sw.ru|@swsoft.com|@sw.com.sg|virtuozzo.com|kuznet@|gorcunov@'&lt;br /&gt;
&lt;br /&gt;
# Return the date of the given tag, in a format usable by gnuplot&lt;br /&gt;
get_tag_date() {&lt;br /&gt;
	echo $(git show $1 | egrep ^Date: | head -n1) | &lt;br /&gt;
		sed 's/^Date: ... \(.*\) [-+]....$/\1/' |&lt;br /&gt;
		sed 's/ ..:..:..//' | sed 's/ /-/g'&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
# Count the number of patches whose authors match $PAT,&lt;br /&gt;
# for the period between two given git tags&lt;br /&gt;
count_patches() {&lt;br /&gt;
	git log --pretty=short --no-merges $1..$2 |&lt;br /&gt;
		egrep '^Author: ' | egrep $PAT | wc -l&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
count_total_patches() {&lt;br /&gt;
	git log --pretty=short --no-merges $1..$2 | grep -c '^commit '&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
# Latest 3.x kernel&lt;br /&gt;
#latest3=$(git tag | grep -v -- -rc | tail -n1 | sed -e 's/^.*\.\(.*\)$/\1/')&lt;br /&gt;
latest3=$(git tag | grep -v -- -rc | grep -F 'v3.' | \&lt;br /&gt;
		awk -F . '{print $2}' | sort -n | tail -n1)&lt;br /&gt;
# Latest 2.6.x kernel&lt;br /&gt;
latest26=39&lt;br /&gt;
&lt;br /&gt;
# Find out if number of patches for HEAD is much more&lt;br /&gt;
# than for latest -rc. If yes, use HEAD, otherwise -rc.:&lt;br /&gt;
last_rc=$(git describe --abbrev=0)&lt;br /&gt;
HEAD=$last_rc&lt;br /&gt;
if ! test -z &amp;quot;$last_rc&amp;quot;; then&lt;br /&gt;
	much_more=10&lt;br /&gt;
	count_head=$(count_patches v3.$latest3 HEAD)&lt;br /&gt;
	count_rc=$(count_patches v3.$latest3 $last_rc)&lt;br /&gt;
	if test $count_head -gt $((count_rc+much_more)); then&lt;br /&gt;
		HEAD=&amp;quot;HEAD   &amp;quot;&lt;br /&gt;
	fi&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
pv=''&lt;br /&gt;
for v in $(git for-each-ref --sort='*authordate' --format='%(tag)' refs/tags |\&lt;br /&gt;
		 grep -v -E -- '-rc|-tree|v2.6.11') HEAD; do&lt;br /&gt;
	if [ -z &amp;quot;$pv&amp;quot; ]; then&lt;br /&gt;
		pv=$v&lt;br /&gt;
		continue&lt;br /&gt;
	fi&lt;br /&gt;
&lt;br /&gt;
	pd=$(get_tag_date $pv)&lt;br /&gt;
	d=$(get_tag_date $v)&lt;br /&gt;
	count_ours=$(count_patches $pv $v)&lt;br /&gt;
	count_total=$(count_total_patches $pv $v)&lt;br /&gt;
	if test &amp;quot;$count_ours&amp;quot; -gt 0; then&lt;br /&gt;
		echo $d $v &amp;quot; &amp;quot; $count_ours $count_total&lt;br /&gt;
	fi&lt;br /&gt;
	pv=$v&lt;br /&gt;
done | sed 's/ /\t/g'&lt;br /&gt;
&amp;lt;/source&amp;gt;&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Draw the graph ===&lt;br /&gt;
&lt;br /&gt;
Here is the script to produce the graph. Note it calls the previous script under the name 'count'.&lt;br /&gt;
&amp;lt;small&amp;gt;&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
&lt;br /&gt;
REPO=~/git/linux/.git&lt;br /&gt;
COUNT=$(pwd)/count&lt;br /&gt;
OUT=$(pwd)/time.dat&lt;br /&gt;
export GDFONTPATH=/usr/share/fonts/microsoft&lt;br /&gt;
export GIT_DIR=$REPO&lt;br /&gt;
&lt;br /&gt;
if test &amp;quot;$1&amp;quot; != &amp;quot;-f&amp;quot;; then&lt;br /&gt;
	echo &amp;quot;== Previous (old) stats ==&amp;quot;&lt;br /&gt;
	tail -n 2 $OUT&lt;br /&gt;
	# Update the repo and count new stats&lt;br /&gt;
	(cd $REPO &amp;amp;&amp;amp; cd .. &amp;amp;&amp;amp; git pull) &amp;amp;&amp;amp; sh $COUNT &amp;gt; $OUT&lt;br /&gt;
	echo &amp;quot;== New stats ==&amp;quot;&lt;br /&gt;
	tail -n 2 $OUT&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
DATE=$(tail -n 1 $OUT | cut -f 1 | awk -F- '{print $2,$1,$3}')&lt;br /&gt;
MAXY=$(awk 'BEGIN {max=0}; ($3 &amp;gt; max) {max=$3}; END {print max+80}' &amp;lt; time.dat)&lt;br /&gt;
# GNU date is powerful!&lt;br /&gt;
MAXX=$(date +%b-1-%Y --date='+2 months')&lt;br /&gt;
&lt;br /&gt;
cat &amp;lt;&amp;lt; EOF | gnuplot &amp;gt; plot.png&lt;br /&gt;
set terminal png enhanced font &amp;quot;verdana,13&amp;quot; size 1600,1200&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
set title &amp;quot;OpenVZ team kernel patches progress as of ${DATE}&amp;quot;&lt;br /&gt;
&lt;br /&gt;
unset xlabel&lt;br /&gt;
set xdata time&lt;br /&gt;
set timefmt &amp;quot;%b-%d-%Y&amp;quot;&lt;br /&gt;
set format x &amp;quot;%b\n%Y&amp;quot;&lt;br /&gt;
set grid xtics mxtics noytics&lt;br /&gt;
&lt;br /&gt;
set xrange [ : &amp;quot;${MAXX}&amp;quot; ]&lt;br /&gt;
set yrange [ 0 : ${MAXY} ]&lt;br /&gt;
set ylabel &amp;quot;Number of patches from OpenVZ team,\n per kernel release, accepted into mainstream&amp;quot;&lt;br /&gt;
&lt;br /&gt;
set border 3		# no lines at right and top&lt;br /&gt;
set xtics nomirror	# no tics at top&lt;br /&gt;
set ytics nomirror	# no tics at right&lt;br /&gt;
&lt;br /&gt;
plot '${OUT}' using 1:3 with linespoints pt 6 ps 1 lw 2 lt 2 notitle, \&lt;br /&gt;
	''	using 1:3:2 with labels left offset 0,5.5 rotate notitle, \&lt;br /&gt;
	''	using 1:3:3 with labels left offset 0.7,0 notitle&lt;br /&gt;
&lt;br /&gt;
EOF&lt;br /&gt;
&amp;lt;/source&amp;gt;&amp;lt;/small&amp;gt;&lt;/div&gt;</summary>
		<author><name>Vvs</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.openvz.org/index.php?title=Hosting_providers&amp;diff=23294</id>
		<title>Hosting providers</title>
		<link rel="alternate" type="text/html" href="https://wiki.openvz.org/index.php?title=Hosting_providers&amp;diff=23294"/>
		<updated>2020-04-30T18:53:23Z</updated>

		<summary type="html">&lt;p&gt;Vvs: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''OpenVZ is free and open implementation of Virtuozzo containers for Linux.&lt;br /&gt;
Don't forget to keep [[testimonials|testimonial]] and [[donate]] to OpenVZ.'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
OpenVZ makes for a great hosting platform for VPS hosting. The providers below offer VPS services using OpenVZ.&lt;br /&gt;
&lt;br /&gt;
[[File:UsageLocation.svg]]&lt;br /&gt;
&lt;br /&gt;
= OpenVZ hosting providers =&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- @@@@@@@@@@@@@@@@@@@@@@@&lt;br /&gt;
&lt;br /&gt;
IF YOU EDIT THIS PAGE,  PLEASE OBEY TO THE FOLLOWING RULES:&lt;br /&gt;
&lt;br /&gt;
1. Keep your record on ONE line&lt;br /&gt;
2. Keep the list of providers alphabetically sorted, DO NOT insert your record on top.&lt;br /&gt;
3. Keep the list of countries alphabetically sorted as well.&lt;br /&gt;
&lt;br /&gt;
     @@@@@@@@@@@@@@@@@@@@@@@@ --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Andorra ==&lt;br /&gt;
* [https://www.actiu.net/pro/ Actiu informatica] amb servidors dins i fora del principat.&lt;br /&gt;
&lt;br /&gt;
== Argentina ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.fulltech.com.ar/ Full Tech Solutions] Specializes in the virtualization of OpenVZ &amp;amp; Virtuozzo containers, installed in the Full Tech Solutions Data Center located in Villa Elisa, Entre Rios Argentina.  It also offers services hosted in the United States, Netherlands and Germany&lt;br /&gt;
* [http://www.g2khosting.com/ G2K Hosting] offer OpenVZ containers with high level hardware technology from 25 US with Control Panel, various Linux Dists and full support.&lt;br /&gt;
* [https://hostingplus.com.ar/ HostingPlus Argentina] provide OpenVZ containers at our own datacenter in South America with triple internet provider. Starting from  us20/month&lt;br /&gt;
* [https://ibumu.com/ Ibumu] Best containers for wordpress starting from $5.5.&lt;br /&gt;
* [http://www.ihserver.net/ IHServer] Specialized virtualization on OpenVZ containers at Gigared datacenter. We have in Argentina one of the better fiber connection to the US, but also provides services from LSTN in Texas.&lt;br /&gt;
* [https://www.infranetworking.com.ar/ Infranetworking] All our Cloud VPS container solutions for Argentine customers are powered by the all mighty OpenVZ virtualization software.&lt;br /&gt;
* [https://www.neolo.com/ Neolo] provide OpenVZ containers at our own datacenter in South America with double internet provider. Choose your Linux OS and apps. Full support.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [http://www.wiredhosting.com.ar/ WiredHosting] offer XEN and OpenVZ containers with SSD drives, cloudflare security and weekly backups to protect your information. Phone and Helpdesk support. &lt;br /&gt;
&lt;br /&gt;
== Australia == &lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.auhost4u.com/ AUHost4u] - VPS Solutions provided from our D.C. in Sydney.&lt;br /&gt;
* [https://www.conetix.com.au/ Conetix Hosting] Specialising in business grade, fully managed Virtuozzo containers with Virtuzzo Cloud Storage. 100% Australian owned and operated. Brisbane based DC with Enterprise Dell servers.&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides self-managed OpenVZ based SSD VPS located at Equinix SY3 in Sydney, one of the best and well-connected datacenters in the region.&lt;br /&gt;
* [http://www.vpsfast.us/australia-cloud-server VPSFast] - VPS Provider with good prices in Australia.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Austria ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
* [https://kapper.net/ kapper.net] kapper.net offers OpenVZ and Virtuozzo (and other HyperVisors) based server-solutions with kind support and 24x7 maintenance.&lt;br /&gt;
* [https://mdhost.eu/vserver.php MDHost.eu] New Hosting Provider with nice Prices and many Server locations. Austria, Germany, France and more.&lt;br /&gt;
* [https://www.snb.at/ SNB] offers OpenVZ containers and support's also existing vm's in customers environment&lt;br /&gt;
* [https://www.waveride.at/ Waveride] Waveride, an EDIS company, offers budget full gigabit OpenVZ + solusVM VPS in Austria, USA and the Netherlands&lt;br /&gt;
* [http://www.vpsfast.us/austria-cloud-server VPSFast] - VPS Provider with good prices in Austria.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Brazil ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.datacorporate.com.br/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [http://www.globalmedia.com.br/ GlobalMedia] We offers OpenVZ containers hosted on a very fast network with fast setup. Ubuntu, Debian, CentOS.&lt;br /&gt;
* [http://www.host1plus.com.br/ Host1Plus] Servers hosted in São Paulo. We offering reliable and secure OpenVZ VPS Servers with 99.99% up-time, starting from $5.00 per month.&lt;br /&gt;
* [http://www.ipdeck.net/ IPDECK] VPS Linux server from R$15,00/month! Fully customizable according to your needs.&lt;br /&gt;
* [https://www.quantivehost.com.br/ QuantiveHost] VPS Linux with 99.99% uptime. Prices starting from R$ 29,35.&lt;br /&gt;
* [https://www.elevahost.com.br/ Eleva host] Server hosted in Brazil. The best support.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [https://www.ferenz.com.br/ Ferenz Networks] VPS Linux with best support. Prices starting from R$ 29,90.&lt;br /&gt;
&lt;br /&gt;
== Bulgaria ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.cloudhostinghub.com Offshore VPS Hsoting] CloudHostingHub.com is an [https://www.cloudhostinghub.com Cloud Offshore VPS Hosting] located in Buglaria. They provide both OpenVZ and KVM virtualization. CloudHostingHub.com is known for the high privacy protection , performance and stability.&lt;br /&gt;
* [https://www.cyberhour.com CyberHour.com] CyberHour.com is an [https://www.cyberhour.com offshore VPS hosting] provider located in Europe. The provide blazing fast servers and premium Bandwidth of 200Mbps. With high privacy protection.&lt;br /&gt;
* [https://www.linuxssdvps.com Bulgaria VPS] Linux SSD VPS is an [https://www.linuxssdvps.com offshore VPS hosting] provider located in Sofia, Bulgaria. Privacy is very respected and anonymous registrations are allowed, as well as payments via Bitcoin / PayPal.&lt;br /&gt;
* [http://www.webuzo.net Bulgaria VPS] Webuzo Network is an offshore SSD VPS hosting provider located in Bulgaria. Privacy is very respected and anonymous registrations are allowed, as well as payments via Bitcoin / PayPal.&lt;br /&gt;
* [https://vpsbg.eu/en Bulgaria VPS] VPSBG.eu is an offshore SSD VPS hosting provider located in Sofia, Bulgaria. Privacy is very respected and anonymous registrations are allowed, as well as payments via Bitcoin.&lt;br /&gt;
* [http://www.bul.net/ Bul.net] Provides OpenVZ based VPS, perfect user/VPS management via [http://ispsystem.com VDSManager]. Instant creation after online payment. Debian/Ubuntu/CentOS with ISPManager Control panel. Optimal price policy.&lt;br /&gt;
* [http://www.cointech.eu/vps-hosting/ CoInTech] provides OpenVZ based VPS containers, free webmin managment. Containers can be CentOS, Slackware, Ubuntu, custom or our special [http://www.mandriva.com Mandriva Linux] container with own [http://mandriva.cointech.net repository].&lt;br /&gt;
* [http://www.rax.bg/ RAX.bg] Offers OpenVZ based VPS, hosted on a clustered infrastructure and redundant network. Easy to use user management, Instant setup, CentOS (OS).&lt;br /&gt;
* [http://www.jump.bg/ Jump.bg] Provides OpenVZ VPS servers hosted on a redundant network which provides a very easy to manage platform for all clients which gain instant access to their OS ( Ubuntu, CentOS , Debian etc ... )&lt;br /&gt;
* [https://www.fitvps.com/ FitVPS.com] Offers affordable and reliable OpenVZ based VPS in Varna, Bulgaria. Own data center, own multihomed network, with SLA. Instant automatic setup, SolusVM control panel.&lt;br /&gt;
* [http://www.qhoster.com/ QHoster.com] Instant activation OpenVZ VPS in UK, USA, Germany, France and Switzerland. Both 32/64 bit OpenVZ OS VPS templates : CentOS 5/6, Debian 6/7, Ubuntu 12/13.&lt;br /&gt;
* [https://www.verdina.net Verdina.NET] Verdina.net offers dedicated hosting services, provided by powerful dell hardware. Servers are located in Telepoint Datacenter, a Tier 3 DC located in Sofia, Bulgaria.&lt;br /&gt;
* [https://www.vps.ag/ VPS.AG] Affordable and reliable OpenVZ VPS based in Sofia, Bulgaria. Instant setup and 24/7 support.&lt;br /&gt;
* [http://www.vpsfast.us/bulgaria-vps VPSFast] - VPS Provider with good prices in Bulgaria.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Canada ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://4goodhosting.com/linux-vps-hosting 4GooodHosting] - Canadian OpenVZ VPS Servers, Starting from  $18.99/month SSD,. Canada VPS hosting in three different Canadian Data Centers with nightly backups.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [https://whc.ca/canadian-cloud-servers Web Hosting Canada Cloud Servers] - Powerful Cloud servers powered by OpenVZ and located in Canadian datacenters, with fast RAID-10 storage, fully managed with cPanel.&lt;br /&gt;
* [http://compevo.com compevo Clustered VPS Server Hosting Provider] - We offer clustered VPS Servers to avoid downtime and dataloss. Our network and service is second to none and is used by businesses around the world.&lt;br /&gt;
* [http://www.datacorporate.ca/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [https://www.delimiter.com/storage-vps/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [https://www.miditech.com/ MidiTech Hosting Canada] VPS hosting offered by MidiTech Canada are powered by VMware, . Fully Managed VPS with control panels&lt;br /&gt;
* [http://www.gotekky.com Gotekky Cloud VPS Hosting] High quality Cloud VPS packages powered by our own infrastructure and network in Toronto. Scalable from our $5/mo plan all the way to your own dedicated cloud server. Based on OpenVZ and our own proprietary panel.&lt;br /&gt;
* [https://gigebox.com GIGEBOX.COM] GIGEBOX are expert providers of secure business hosting services, we operate high-performance professional servers, specially designed for businesses, powered by the Intel(R) Xeon(R) Hexa-Core CPU Processors and 128 GB DDR3 minimum RAM. Enjoy high availability, performance and security for multiple uses.&lt;br /&gt;
* [http://www.letstalkdigital.com/index.php?option=com_content&amp;amp;view=article&amp;amp;id=73&amp;amp;Itemid=65 LetsTalkDigital VPS Hosting] LetsTalkDigital.com offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from $14.99. Virtual Private Server (VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://secure.media-hosts.com/link.php?id=7 Media-Hosts.com] Provides Quality and Scalable OpenVZ based Virtual Private Servers. 100% network uptime guaranteed. Located in Montreal Quebec with 5 Tier1 upstream providers.&lt;br /&gt;
* [http://www.openvz.ca OpenVZ.ca] Canadian Budget VPS Servers on OpenVZ Platform. &lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [http://protoserver.com ProtoServer] Advanced VPS Hosting from $4.95/month. Many pre-installed VPS Templates available (CMS, E-commerce, Web development, Online community, Media streaming, etc.) No bundles or service plans - mix VPS resources as needed and change VPS configuration anytime. Also offering DNS Hosting, E-mail hosting, Domains Registration.&lt;br /&gt;
* [http://www.vistapages.com/vps Vistapages VPS] - IBM &amp;amp; Dell Hardware. MCI/Verizon Backbone. Distros: Centos, Fedora, Debian &amp;amp; more. Full management available. Located in Toronto.&lt;br /&gt;
* [http://vpsville.ca/ VPSVille] - Good network. Good CPU. Good choice of distros: Centos, Fedora, Debian, Ubuntu, Slackware, Gentoo, OpenSUSE, CERN. My favorite OpenVZ provider. [mailto:jak@isp2dial.com John Kelly]&lt;br /&gt;
* [http://solib.ca/services-offerts/hebergement-haute-vitesse/serveurs-vps/ SOLIB Logiciel Libre Québec] Our company offers DDoS protected server solutions including OpenVZ containers. Very high availability and reliability, all our VPS are located in Quebec, Canada.&lt;br /&gt;
* [https://www.host-stage.net/linux-vps/ HostStage - Linux VPS] - Simple, Reliable OpenVZ VPS packed with 1 GBPS port speed, RAID 10 SSD, Intel Xeon CPU, DDoS Protection from $4.95/month&lt;br /&gt;
* [https://undergroundprivate.com/russiaoffshorevps.html  UndergroundPrivate.com] - OpenVZ with highly privacy, offshore , DMCA ignored , high confidence, SolusVM and cPanel, managed and non managed service.&lt;br /&gt;
* [http://www.vpsfast.us/canada-vps VPSFast] - VPS Provider with good prices in Canada.&lt;br /&gt;
* [https://websavers.ca/canadian-vps-hosting Websavers Inc in Halifax] - VZ containers priced by the resource. Resource changes entirely client-level.&lt;br /&gt;
* [https://www.yoorshop.fr/hosting-ssd-vps-usa-canada.php YOORshop SAS] - High performance NVMe SSD Linux VPS in Canada, daily backup included. Starting from €7,49 /month&lt;br /&gt;
&lt;br /&gt;
== Colombia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.datacorporate.co/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [http://www.soficol.com/ Soficol] Offers Enterprise OpenVZ based VPS, hosted on a clustered infrastructure and redundant network. Easy to use user management and instant setup.&lt;br /&gt;
* [https://www.hostingplus.com.co/ Hosting Plus Colombia] provide OpenVZ containers at our own datacenter in South America with triple internet provider. Starting from  us20/month&lt;br /&gt;
* [https://ibumu.com/ Ibumu] Best containers for wordpress starting from $5.5.&lt;br /&gt;
&lt;br /&gt;
== Czech Republic ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://4smart.cz 4Smart.cz] - prepaid, you are charged only by the system resources you use, therefore you can run a VPS for as little as  1 EUR a month if your vps is not resource hungry. Even if you pay  0,50 EUR  month, you still have 3 GB of RAM and 8 cores available to you VPS.&lt;br /&gt;
* [http://www.freecloud.cz FREECLOUD.CZ] - Free OpenVZ VPS Server - own IP, 800Mhz CPU, 512MB RAM, 50Mbits LAN, 10GB HDD, 100GB Traffic - Debian, Ubuntu, Gentoo, Slackware, Fedora, Centos&lt;br /&gt;
* [http://www.hukot.cz Hukot.cz] - OpenVZ VPS Servers starting from 2.92 €, XEON, 1 Gbps uplink, unlimited traffic. Debian, Ubuntu, CentOS, Scientific, SuSe, Fedora, Elastix.&lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [http://www.ultimatehosting.eu UltimateHosting.eu] - OpenVZ VPS Servers starting from $8 with custom configuration - up to 100 GB HDD, 2048 MB RAM, 2 GHz CPU, and unlimited traffic.&lt;br /&gt;
* [http://www.mujhost.net MUJHOST.NET] - OpenVZ VPS Servers starting from 160 Kč, 100Mbps / 1 Gbps uplink, unlimited traffic. Debian, Ubuntu, CentOS ...&lt;br /&gt;
&lt;br /&gt;
== Chile ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.1h.cl/ 1h.cl Vps - Chile] - VPS High Performance with OpenVZ in Chile&lt;br /&gt;
* [http://www.1hosting.cl/ 1hosting Virtual servers - Chile] - VPS Professional with OpenVZ&lt;br /&gt;
* [http://www.dch.cl/ DCH] - DCH.cl Hosting Chile - High Performance VPS Servers with OpenVZ &lt;br /&gt;
* [http://ecohosting.cl/ EcoHosting.cl Santiago - Chile] - VPS with OpenVZ in Chile&lt;br /&gt;
* [http://www.host.cl/ Host.cl] - Cloud Computing&lt;br /&gt;
* [http://www.hostingplus.cl/ HostingPlus Internet Limitada] - High Performance Vps provider in Chile&lt;br /&gt;
* [http://www.hostname.cl/ Hostname Ltda] - VPS Hosting with Datacenter in Chile&lt;br /&gt;
* [http://www.inc.cl/ INC Internet Limitada] - VPS Hosting provider in Chile&lt;br /&gt;
&lt;br /&gt;
== Denmark ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.vpsfast.us/denmark-cloud-server VPSFast] - VPS Provider with good prices in Denmark.&lt;br /&gt;
&lt;br /&gt;
== Ecuador ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.dedi.space/ DediSpace Telecom] - VPS Servers in Ecuador - USA, France, Germany, Ecuador Datacenter.&lt;br /&gt;
&lt;br /&gt;
== France ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.BargainVPS.co.uk/ BargainVPS] - UK / US / EU Instant setup VPS - We have some great Linux &amp;amp; Windows Bargain VPS packages on offer for you here all available Fully Managed.&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in France from 1.88EUR/month.&lt;br /&gt;
* [http://www.fixweb.com Fixweb] Great managed hosting provider with strong anti ddos solution - openvz only - leader in managed openvz solution with horizontal scaling and high availability&lt;br /&gt;
* [http://www.Freaksol.com/ FreaKs VPS Hosting] Self reliant hosted on independent networks &amp;amp; DC low ping,No restrictions on file types,Unlimited resources,high ram servers &lt;br /&gt;
* [https://galaxyhostplus.com/ovz GalaxyHostPlus] Cheap VPS Hosting based in Roubaix with new 2016 line starts from $2/Month &lt;br /&gt;
* [http://www.harmony-hosting.com Harmony-Hosting] A high performance VPS hosting - The leader in France&lt;br /&gt;
* [https://www.delimiter.com/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [http://www.lws.fr/serveur_dedie_linux.php LWS - Linux VPS ] - Linux VPS Hosting - Only 9.99€/month, Affordable and Secure OpenVZ VPS Servers with 99.99% up-time, web hosting control panel Included. French datacenter&lt;br /&gt;
* [http://www.ovh.co.uk/vps/ OVH VPS] linux from 3€/month, [http://www.ovh.co.uk/vps/vps-cloud.xml windows] from 12€/month.&lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [https://VPSZ.FR VPSZ] VPS Hosting in France. Starting from 2,99€, Unlimited traffic.&lt;br /&gt;
* [http://www.1euro-hosting.eu BEST EU VPS - 1€ Hosting] - Providing reliable and secure OpenVZ VPS Servers with 99.99% up-time, starting from 8€&lt;br /&gt;
* [https://www.shape.host/linux-vps/ Shape Host - Linux VPS] - OpenVZ virtual servers, Instant Linux VPS&lt;br /&gt;
* [https://undergroundprivate.com/russiaoffshorevps.html  UndergroundPrivate.com] - OpenVZ with highly privacy, offshore , DMCA ignored , high confidence, SolusVM and cPanel, managed and non managed service.&lt;br /&gt;
* [https://www.host-stage.net/linux-vps/ HostStage - Linux VPS] - Simple, Reliable OpenVZ VPS packed with 1 GBPS port speed, RAID 10 SSD, Intel Xeon CPU from $4.95/month&lt;br /&gt;
* [https://www.yoorshop.hosting/hosting-vps-ssd-europe.php YOORshop SAS] - High performance NVMe SSD OpenVZ 7 VPS within 13 countries in Europe, Canada and Singapore. Daily backup included. From €7,49 /month&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Germany ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://afterburst.com Afterburst (Previously FanaticalVPS)]: affordable unmetered, unmanaged VPS servers in Germany.&lt;br /&gt;
* [http://www.b2b-hosting.de/vps/ B2B Hosting]: Professional virtual servers for business applications. Performance and reliability at a fair price. Made with OpenVZ.&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in Germany from 1.88EUR/month.&lt;br /&gt;
* [https://www.delimiter.com/dedicated-servers/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [https://galaxyhostplus.com/ovz GalaxyHostPlus] Cheap VPS Hosting based in Frankfurt with new 2016 line starts from  $2/Month&lt;br /&gt;
* [http://hostmist.com/openvz-vps-germany.html Host Mist]: features budget OpenVZ VPS hosting in Germany.&lt;br /&gt;
* [http://www.host1plus.com/ Host1Plus] Servers based in Frankfurt am Main. Offering reliable OpenVZ based VPS servers in Germany starting from $2.50 per month.&lt;br /&gt;
* [http://www.hostingjuice.com/ HostingJuice] The Superioum VPS and Web Hosting provider, low prices - Premium packages.&lt;br /&gt;
* [http://www.ingate.de/managed-server.html Ingate] offers managed servers with openVZ virtualization. located in germany, great support.&lt;br /&gt;
* [http://linevast.de/angebote/linux-openvz-vserver-mieten.html Linevast] Reliable OpenVZ based VPS with fast support, located in germany&lt;br /&gt;
* [https://cp.myvirtualserver.com/?affid=42 MyVirtualServer]: Cheap VPS (OpenVZ/KVM, 5TB Traffic, 10Gigabit), servers located in Frankfurt (best ping, starting 1.99€) good support (en/de) //New Design!&lt;br /&gt;
* [https://www.nogics.com Nogics Technologies]: Affordable VPS based in Germany. Starts from $5.96/mo.&lt;br /&gt;
* [http://www.plambee.de/vserver.php Plambee.de Webhosting]: Powerfull OpenVZ based VPS servers at low cost with hosting in Germany&lt;br /&gt;
* [https://rackset.com/ Rackset Hosting] Managed Dedicated / VPS and Website Hosting services since 2004.&lt;br /&gt;
* [http://www.serverbiz.de/vserver Serverbiz] Powerful VPS at very low prices.&lt;br /&gt;
* [http://www.synapseglobal.com/voip_vps.html SynapseGlobal.com] Elastix, Trixbox, PBX in a Flash and Asterisk VPS - OpenVZ based Asterisk VOIP servers located in Munich Germany.&lt;br /&gt;
* [http://www.vStarVPS.com vStarVPS]: Reliable VPS Hosting at lowest prices, with 99.9% uptime, Premium Unmetered Bandwidth and Custom HDD/RAM of your choice. Instant and FREE Setup. RapidLeech Allowed.&lt;br /&gt;
* [http://whynotavps.com WhyNOTaVPS]: Instant activated VPS SERVERS!!&lt;br /&gt;
* [http://squote.de/index.php?ref=1421485383 SQuote]: SQuote VPS Hosting and more. VPS 1 Core, 1.024MB RAM, 512MB RAM SWAP, 50 GB HDD, 1x IPv4. 3,89EUR/month. For the best VPS SQuote.de&lt;br /&gt;
* [http://www.vpsfast.us/germany-vps VPSFast] - VPS Provider with good prices in Germany.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Guatemala ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.globalnetcafe.com/gnc/menu/hospedaje.htm Global Net Cafe]: Servicios de hospedaje, reseller, vps, colocacion y servidores. Incluyendo OpenVZ.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Hong Kong ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [https://hostus.us HostUS] features unmanaged and managed OpenVZ VPS in Hong Kong as well as 3 USA locations. Unparalleled connectivity to the Asia Pacific. Enjoy 15% off with coupon VPS15OFF.&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides self-managed OpenVZ based SSD VPS in Hong Kong, located at the Pacnet datacenter. &lt;br /&gt;
* [http://vps.timway.com/linux_vps.html Timway VPS Hosting] - Quality, non-oversold hosting provider focused on being security conscious and offering a positive client experience.   Centos, Debian, Fedora, OpenSuse and Ubuntu Containers are available.&lt;br /&gt;
* [http://www.vpsfast.us/hong-kong-cloud-server VPSFast] - VPS Provider with good prices in Hong Kong.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Hungary ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://elin.hu/index.php?menu=8&amp;amp;nyelv=hu&amp;amp;cim=Virtualis-szerver Virtual server] OpenVZ server: 2xX5650 Intel Xeon, 32GB RAM, 15.000rpm SAS disks, 100Mbit/s, unlimited bandwith.&lt;br /&gt;
* [https://www.ivirtual.co/vps-hosting/ iVirtual.co ] OpenVZ Master Server: 2x Intel Xeon @ 3.0GHZ, 64 GB ECC Ram, 15k RPM SAS HDD's, 1Gbit/s Network, Unlimited bandwith.&lt;br /&gt;
&lt;br /&gt;
== Iceland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
&lt;br /&gt;
== Ireland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== India ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://cochinwebhost.in/budget-vps-hosting/ Low Cost VPS Hosting] Fast SSD VPS Server for Hosting Solutions at budget prices with 24x7 Technical Support.&lt;br /&gt;
&lt;br /&gt;
* [http://www.datacorporate.in/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
&lt;br /&gt;
*[http://www.fastwebhost.in/vps-hosting.html fastwebhost VPS Hosting] VPS hosting offered by fastwebhost are powered by ''VPS hosting, virtual server hosting and Linux VPS hosting services''. Fully Managed VPS with control panels.&lt;br /&gt;
&lt;br /&gt;
* [http://www.Freaksol.com/ Freaksol VPS Hosting] Self reliant hosted on independent networks &amp;amp; DC low ping to India,No restrictions on file types,Unlimited resources,high ram servers&lt;br /&gt;
&lt;br /&gt;
* [https://www.geniushost.in Genius Host] Fully managed [https://www.geniushost.in SSD Web Hosting] offered by Genius Host are powered by ''OpenVZ'' With LiteSpeed Web Server &amp;amp; Mariadb.&lt;br /&gt;
&lt;br /&gt;
* [http://www.hioxindia.com/virtual-private-server.php VPS Hosting] Reliable and quality VPS Virtual Private Server Hosting&lt;br /&gt;
&lt;br /&gt;
* [https://www.hostnamaste.com HostNamaste] is your high-performance [https://www.hostnamaste.com/openvz-vps.php OpenVZ VPS Hosting] Provider. Get your perfect [https://www.hostnamaste.com/openvz-vps.php VPS Hosting] account today! Available in [https://www.hostnamaste.com/datacenter-losangeles.php Los Angeles], [https://www.hostnamaste.com/datacenter-dallas.php Dallas], [https://www.hostnamaste.com/datacenter-jacksonville.php Jacksonville], USA,  [https://www.hostnamaste.com/datacenter-france.php France], Europe, [https://www.hostnamaste.com/datacenter-mumbai-pune.php Mumbai], India and [https://www.hostnamaste.com/openvz-vps-moscow-russia.php Moscow], Russia.&lt;br /&gt;
&lt;br /&gt;
* [https://www.hostsoch.in/windows-hosting.html HostSoch Windows Hosting] Windows hosting offered by HostSoch are powered by ''Windows 2012, ASP.NET, MVC, IIS, PHP and More''. 99.9% Uptime, 24/7 Dedicated support guaranteed. &lt;br /&gt;
&lt;br /&gt;
* [https://www.miditech.co.in/ MidiTech VPS Hosting] VPS hosting offered by MidiTech are powered by ''VMware, ''. Fully Managed VPS with control panels. &lt;br /&gt;
&lt;br /&gt;
* [http://www.milesweb.com/vps-hosting.php Milesweb VPS Hosting] VPS hosting offered by Milesweb are powered by ''VMware, OpenVZ''. Fully Managed VPS with control panels. &lt;br /&gt;
&lt;br /&gt;
* [https://www.nogics.com/web/vps-hosting/ Nogics Technologies] Instant provisioning of VPS, VPS starts from $5.96/mo. 30+ OS templates.&lt;br /&gt;
&lt;br /&gt;
* [http://overlineindia.net/vpshosting-p-62.html Overline India VPS Hosting] Fully managed cPanel Installed VPS Hosting with 24x7x365 Live Chat Tech support, powered by OpenVZ&lt;br /&gt;
&lt;br /&gt;
* [http://www.prohosterz.com/linux-vps.php ProHosterZ VPS Hosting] Reliable and quality Virtual Dedicated Servers | Virtual Private Servers | XEN VPS | OpenVZ VPS | Virtual Hosting&lt;br /&gt;
&lt;br /&gt;
* [http://pve.proxmox.com/wiki/User:Apmuthu Ap.Muthu] sponsored by [http://www.gnuacademy.org GNUAcademy], [http://www.planettel.com.sg PlaNetTel] and [http://www.sacollege.net S A College] creates OpenVZ Templates for the Open Source Community and provides hosting in datacenters of clients choice or on site.&lt;br /&gt;
&lt;br /&gt;
* [http://www.servers.co.in/vps/vps_hosting.php Server Web Hosting] Offers Fully Managed OpenVZ VPS Web hosting in India/US/UK at affordable and cheap rates with best hardware quality and customer service 24/7/365 days&lt;br /&gt;
&lt;br /&gt;
* [http://vpsbeach.com VpsBeach Managed Hosting] Fully managed cPanel Installed VPS Hosting with 24x7x365 Live Chat Tech support, powered by OpenVZ&lt;br /&gt;
&lt;br /&gt;
* [http://www.vpsfast.us/india-vps VPSFast] - VPS Provider with good prices in India.&lt;br /&gt;
&lt;br /&gt;
* [http://www.vpshostingindia.net/ VPS Hosting India, Fully Managed Server] A Committed Fully Managed VPS Server for Hosting solution in India, Complete Technical Support assistance with commitment of fast, clustered and most supportive DataCenters.&lt;br /&gt;
* [http://touchstone.hosting/ Touchstone Solutions Private Limited] High-performance Enterprise VPS Hosting in India. One of the highest performing VPS Servers available with cPanel Installed.&lt;br /&gt;
* [http://www.hostitsmart.com/ Host IT Smart] - One of the best VPS Hosting Provider in India with 24X7X365 Customer support.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Indonesia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.herza.id/vps-murah/ Herza.ID] Low Cost OpenVZ Virtual Server, starting from IDR 50.000 / Month with RAID 10 SSD, Unlimited Bandwidth with 1 Gbps IIX &amp;amp; OIXP Connection, and 24/7 Technical Support.&lt;br /&gt;
&lt;br /&gt;
== Iran==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.ehost.ir EHost.ir] - OpenVZ Servers , DUAL XEON Cpus , 12 Gb Ram , 100Mbit Dedicated Connection , SAS HardDisk&lt;br /&gt;
* [http://www.vpsfa.com VPSFa.com] - OpenVZ Servers , DUAL XEON Cpus -  , 24Gb Ram , 1000Mbit Dedicated Connection , SAS HardDisk&lt;br /&gt;
* [https://webramz.com Webramz Host] - With more than 15 years experience in Managed Hosting, Webramz was first vps provider in Iran which used to setup OpenVZ servers. Nowadays we provide wide range of services including CloudLinux based OpenVZ and Managed Vps Servers.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Italy ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
* [http://www.hosting-italia.net hosting italia] - OpenVZ Servers and panel enduser Virtualizor Intel® Core™ i7-920 Quad-Core 48 GB DDR3 RAM - Guaranteed Bandwidth 200 Mbit/s&lt;br /&gt;
* [http://www.vpsfast.us/italy-vps VPSFast] - VPS Provider with good prices in Italy.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Liechtenstein ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
&lt;br /&gt;
== Lithuania ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.cloudlix.com/ CloudLix.com] - Managed and unmanaged OpenVZ virtual servers based on 2.6.32 kernel. Up to 20GHz (Intel SandyBridge) CPU and 10GB RAM. Located in Vilnius and Siauliai.&lt;br /&gt;
* [http://www.databank.lt/ databank.lt] - high-quality professional OpenVZ hosting with cloud computing solutions.&lt;br /&gt;
* [https://www.hostens.com Hostens] - Fast and reliable OpenVZ servers in Lithuania.&lt;br /&gt;
* [https://www.lavavps.lt/ lavavps.lt] - Professional high-quality OpenVZ containers (VPS servers) affordable for everyone. Powerful control panel for VPS management.&lt;br /&gt;
* [https://monovm.com/ monovm.com] - High Quality VPS Hosting Provider&lt;br /&gt;
* [http://www.serveriai.lt/ Serveriai.lt] - Affordable OpenVZ containers on quality HP hardware. Wide choice of virtual dedicated servers up to 8 CPU cores and 8 GB RAM. Full management available. Located in Vilnius.&lt;br /&gt;
* [https://billing.time4vps.eu/?affid=1359 Time4VPS.EU] - Powerful cloud technology based infrastructure will let you build custom virtual machine and pay only for what you really need. Located in Vilnius city.(0.99€/month(2Yr) 512mbRAM, 1TB Traffic// 4.5€/month(2Yr) StorageVps, 1TB, 10TB Traffic)&lt;br /&gt;
* [https://www.vpsnet.lt/en/ VPSnet.lt] - Powerful and high quality servers for a competitive price in Lithuania (Eastern Europe).&lt;br /&gt;
* [http://www.vpsfast.us/lithuania-vps VPSFast] - VPS Provider with good prices in Lithuania.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Latvia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.altnet.lv/ Altnet] - Hosting and colocation services. Any flawor, you name it. &lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
&lt;br /&gt;
* [http://www.vpsfast.us/latvia-vps VPSFast] - VPS Provider with good prices in Latvia.&lt;br /&gt;
&lt;br /&gt;
== Luxembourg ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.vpsfast.us/luxembourg-vps VPSFast] - VPS Provider with good prices in Luxembourg.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Malaysia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.cubiex.com/ Cubiex] - Malaysia Affordable Web Hosting and Domain Name. Affordable Linux VPS Hosting in Malaysia. OpenVZ based, Quad Core Xeon node. cPanel/WHM and DirectAdmin also available.&lt;br /&gt;
* [https://controlvm.com ControlVM] ControlVM Sdn. Bhd. offering OpenVZ VPS in Singapore, Malaysia, USA and Germany.&lt;br /&gt;
* [https://www.yoorshop.fr/hosting-ssd-vps-singapore-asia.php YOORshop SAS] - High performance SSD Linux VPS In Singapore with daily backup included. Starting from €7,49 /month&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Malta ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.a6it.com/ A6iT] - Stable, quality managed OpenVZ VPSs based in Malta.  Redundant network.&lt;br /&gt;
&lt;br /&gt;
== Morocco ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.belsemtech.com/ BelsemTech.CoM] BelsemTech SARL offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from 300 DH. Virtual Private Server (VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://www.hostoweb.com/ HosToWeb] is the only company providing VPS hosting in Morocco Data Center.&lt;br /&gt;
* [http://www.adk-media.com/ ADK Media] provides affordable managed and unmanaged virtual servers based on OpenVZ, Xen Paravirtualization and Xen HVM platforms. 24/7 Technical Support. Distros: Centos, Fedora, Debian, Ubuntu and more.&lt;br /&gt;
* [http://www.naja7host.com/ Naja7Host.CoM] The Naja7host SARL provides affordable VPS hosting using the OpenVZ platform. Running on Full Quality Nodes of up to 8 CPU and 16 GB RAM. . All VPS's come with Real 24/7/365  Technical Support and cPanel free (if option selected  ). Multiple choice of OS 32/64Bits (Centos, fedora, ubuntu, debian .ect ...)&lt;br /&gt;
* [http://www.lehoster.com/ Le Hoster] offers affordable Virtual Private Servers using the OpenVZ and KVM platform. Backed with our amazing customer support.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Netherlands ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.avanpad.com/ Avanpad] offers OpenVZ VPS hosting with 24\7 online support. Customer can request different control panels or templates for installation on his VPS.&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in Netherlands from 1.88EUR/month.&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
* [http://www.Freaksol.com/ FreaKs VPS Hosting] Self reliant hosted on independent networks &amp;amp; DC low ping around the world,No restrictions on file types,Unlimited resources,high ram servers&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [http://www.HostSailor.com/ HostSailor] Number 1 Netherlands Provider HostSailor provides affordable &amp;amp; high quality services such as VPS (XEN, OpenVZ and KVM) Linux or Windows, Dedicated servers, SSL certificates and domain name services.&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides self-managed OpenVZ SSD VPS in Telecity AMS 5, one of the best datacenters located in the Amsterdam area.&lt;br /&gt;
* [https://iniz.com/ INIZ VPS Hosting] INIZ provides affordable VPS Hosting in Amsterdam, Netherlands with high resources at low prices.&lt;br /&gt;
* [https://www.liteserver.nl/ LiteServer] Looking for a quality and affordable VPS in the center of The Netherlands? We provide SSD, Storage and High Bandwidth VPSes, starting at only €16 per year. We operate AS60404.&lt;br /&gt;
* [https://www.mangelot-hosting.nl/ Mangelot Hosting] Mangelot Hosting, A webhosting company located in the Netherlands, offers budget OpenVZ hosting solutions for maximum scalability en performance.&lt;br /&gt;
* [http://www.osbox.nl OsBoX Dutch Network Engineering] Cheap VPS host as low as $1 per month. Very great uptime and a overall good support. Check the website for the server plans.&lt;br /&gt;
* [http://www.signet.nl/ Signet VPS Hosting] - Signet delivers VPS hosting plans based on CentOS or Debian templates, including control-panel Virtualmin.&lt;br /&gt;
* [http://simple-webhosting.eu/ Simple-webhosting.eu] - OpenVZ based web hosting starting from €0.98 per month.&lt;br /&gt;
* [https://www.seedvps.com SeedVPS] Provides Powerful &amp;amp; Reliable OVZ/KVM VPS Hosting in The Netherlands&lt;br /&gt;
* [http://www.touchvps.com/ TouchVPS] is a company who offer Support and Managed Services for OpenVZ Servers ,also offer templates for openvz ready to go with cPanel , DirectAdmin , Plesk , Games, IRC Services, Desktop and many more.&lt;br /&gt;
* [http://www.voipcomplete.com/product-overview/dedicated-vps.html VOIPcomplete] offers dedicated VPS plans based on CentOS including a VPS management interface.&lt;br /&gt;
* [https://www.waveride.at/ Waveride] Waveride, an EDIS company, offers budget full gigabit OpenVZ + solusVM VPS in Austria, USA and the Netherlands&lt;br /&gt;
* [https://undergroundprivate.com/russiaoffshorevps.html  UndergroundPrivate.com] - OpenVZ with highly privacy, offshore , DMCA ignored , high confidence, SolusVM and cPanel, managed and non managed service.&lt;br /&gt;
* [https://www.totallyhosted.nl/ TotallyHosted] OpenVZ based Premium VPS services located in the Netherlands @ Serverius DC.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [http://www.vpsfast.us/netherlands-vps VPSFast] - VPS Provider with good prices in Netherlands.&lt;br /&gt;
&lt;br /&gt;
== Norway ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.vpsfast.us/norway-vps VPSFast] - VPS Provider with good prices in Norway.&lt;br /&gt;
&lt;br /&gt;
== Pakistan ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://vimzaa.com/ Vimzaa] The best hosting in Pakistan.&lt;br /&gt;
&lt;br /&gt;
== Philippines ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.web.com.ph/vps.php Web.com.ph] - provides OpenVZ virtual servers in the Philippines.&lt;br /&gt;
&lt;br /&gt;
== Perú ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.hn.pe/ Hostname] Hostname offers business OpenVZ containers in Perú&lt;br /&gt;
* [http://www.hostingandino.pe/ Hostingandino Lima - Peru] - VPS with OpenVZ in Peru&lt;br /&gt;
* [http://www.hostingplus.pe/ HostingPlus Internet Limitada] - High Performance Vps provider in Peru&lt;br /&gt;
* [https://www.hostingroup.com/ Hostingroup] Web hosting for small businness in Perú.&lt;br /&gt;
* [https://hostingweb.pe/ Hosting Web] The best hosting in PERU.&lt;br /&gt;
* [https://www.inchosting.pe/ HostingINC SAC] OpenVZ virtualization solutions for business in Perú.&lt;br /&gt;
* [https://www.mejorhosting.pe/ Mejor Hosting Perú] Hosting comparison for peruvian hosting providers.&lt;br /&gt;
* [https://webuniversal.pe/ Web Universal] The best hosting in PERU in the World.&lt;br /&gt;
&lt;br /&gt;
== Poland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://hosteam.pl/ HosTeam] offers OpenVZ VPS hosting from their DataCenter in Poland. Customer has choice of all major Linux distros (WARNING!!! restoring your backup is VERY expensive and they charge even if it wasn't restored correctly!), NATIVE IPV6 AVAILABLE!&lt;br /&gt;
&lt;br /&gt;
* [http://ultimahost.pl/ UltimaHost] high grade OpenVZ VPS and FreeBSD jail (DC in Łódź, Poland), brand of statnet.pl, SSD available for more expensive packets, NO IPV6 AVAILABLE (but they can load you tun module)&lt;br /&gt;
&lt;br /&gt;
* [http://budgetvps.pl/ BudgetVPS] very cheap, low end grade OpenVZ VPSes (DC in Gdańsk, Poland), brand of HitMe.pl&lt;br /&gt;
&lt;br /&gt;
* [https://hitme.pl/ HitMe.pl] high grade OpenVZ/Xen PV/Xen HVM VPSes, Virtuozzo (DC in Gdańsk, Poland), NATIVE IPV6 AVAILABLE (/64 on demand for free)!&lt;br /&gt;
&lt;br /&gt;
* [http://www.kr-cpd.pl/oferta/serwery-vps/ KR-CPD] Cracow's Center of Data Processing (DC of course in Cracow, Poland)&lt;br /&gt;
&lt;br /&gt;
* [http://livenet.pl Livenet] cheap, middle/low end OpenVZ VPSes (DC in Łódź, Poland)&lt;br /&gt;
&lt;br /&gt;
* [http://slaskdatacenter.pl/ Śląsk Data Center] high/middle grade OpenVZ VPSes (DC in Silesia province, Poland), SSD available for more expensive packets&lt;br /&gt;
&lt;br /&gt;
* [https://www.ionic.pl/ IONIC.pl] VPS OpenVZ with SolusVM control panel, own DC in Cracow&lt;br /&gt;
&lt;br /&gt;
* [https://microvps.pl/ MicroVPS.pl] Middle And low end OpenVZv7 VPS plans. SSD for regular VPS and HHD for storage plans (up to 1TB)&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Portugal ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.ptservidor.pt/ PTServidor] - OpenVZ virtual servers with free management based in Portugal.&lt;br /&gt;
* [http://www.efeito.net/ Weblevel.pt] - OpenVZ virtual servers based in Portugal.&lt;br /&gt;
* [https://www.webtuga.pt/ WebTuga] - Managed/Unmanaged Virtual Private Servers hosted in a Portuguese Datacenter with lots of extras&lt;br /&gt;
* [https://www.cloudfire.pt/ CloudFire] - OpenVZ VPS at very low prices hosted in Portugal&lt;br /&gt;
* [https://www.linxisp.com/ LINXISP] - High Availability &amp;amp; Performance OpenVZ Containers&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] - Build an OpenVZ VPS in 14 locations WordWide From £2.49&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Romania ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.intovps.com IntoVPS] - offers unmanaged OpenVZ virtual servers based in Romania, Netherlands and USA. A lot of resources for decent prices.&lt;br /&gt;
* [http://www.ename.ro/dedicated.html eName] - managed OpenVZ virtual servers in Bucharest, Romania&lt;br /&gt;
* [http://www.ch-center.com/virtual-servers Ch-center] - unmanaged OpenVZ virtual servers, based in Romania in it's own Data Center&lt;br /&gt;
* [http://www.clouds.ro/servere-virtuale/ Clouds] - OpenVZ virtual servers hosted on premium hardware, in Romania&lt;br /&gt;
* [http://www.HostSailor.com/ HostSailor] HostSailor provides affordable &amp;amp; high quality OpenVZ and KVM servers in Romania&lt;br /&gt;
* [https://www.shape.host/linux-vps/ Linux VPS] - OpenVZ virtual servers, Instant Linux VPS&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Russia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.internoc24.host Internoc24.HOST] is an international [https://www.www.internoc24.host Offshore VPS ] provider with reliable SSD VPS in Moscow, Russia. Focus ist on high privacy protection so they accept several Cryptocurrencies like Bitcoin, Ethereum and others for anonymous payments.&lt;br /&gt;
* [http://www.ihc.ru/vps.html IHC.RU] - VPS hosting in Moscow, Russia starting at $10/month with good set of precreated templates&lt;br /&gt;
* [http://mchost.ru/services/linux-vps/ McHost.ru] - Linux VDS Hosting from McHost.&lt;br /&gt;
* [http://hosting.agava.ru/vps/ AGAVA] - Linux VPS hosting based on OpenVZ.&lt;br /&gt;
* [http://vdsplanet.ru/ VDSPlanet.ru] - unmanaged VDS/VPS hosting starting at 3.99$ a month. Large variety of OS templates and free ISPmanager Lite control panel. Total automation is our goal.&lt;br /&gt;
* [http://www.demos.ru/service/datacenter/vps.html Demos-Internet] - we offer OpenVZ Virtual Private Server based on Linux.  All VPS come with ISPmanager control panel.&lt;br /&gt;
* [http://www.net.ru/service/net9/ www.net.ru] - OpenVZ virtual private servers.&lt;br /&gt;
* [http://www.eurobyte.ru/ Eurobyte.ru] - Linux VDS Hosting from Eurobyte.&lt;br /&gt;
* [https://undergroundprivate.com/russiaoffshorevps.html  UndergroundPrivate.com] - OpenVZ with highly privacy, offshore , DMCA ignored , high confidence, SolusVM and cPanel, managed and non managed service.&lt;br /&gt;
* [http://www.telekom.ru/service/vps.html Elvis Telekom] - OpenVZ hosting with base and cpanel templates from Elvis Telekom.&lt;br /&gt;
* [http://fastvps.ru/vds/ FastVPS] - OpenVZ hosting, ISPmanager, Hetzner, MayFlower.&lt;br /&gt;
* [https://lepus.su/vps.html Lepus] - OpenVZ hosting, SSD, ISPmanager free, Hetzner.&lt;br /&gt;
* [http://www.hts.ru/vds/ HTS] - OpenVZ hosting, ISPmanager, Linux VPS hosting based on OpenVZ in Moscow.&lt;br /&gt;
* [https://selectel.ru/services/vds/ Selectel] - OpenVZ hosting.&lt;br /&gt;
* [https://galaxydata.ru/root-server/ GalaxyData] - Virtuozzo Containers in Cloud Storage.&lt;br /&gt;
* [http://hosterbox.ru/servers/ Hosterbox.ru] - Managed VPS hosting. Based on OpenVZ + SolusVM + ISPmanager.&lt;br /&gt;
* [https://firstvds.ru FirstVDS.ru] - One of the leading hosting companies providing virtual private servers.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Singapore ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://conceptlane.com/?t=hostingservices#ratesvps ConceptLane Pte Ltd] - OpenVZ VPS on dual octa-core AMD Opterons running Debian Wheezy 7, custom control panel with bandwidth graphs, reboot/reinit and web-based VNC access.&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [http://www.qoxy.com/vps QOXY.com] Affordable and Reliable OpenVZ VPS Hosting in a Singapore Data Center.&lt;br /&gt;
* [http://www.secureax.com/ SecureAX Pte Ltd] - Singapore Premium Internet Solution Provider&lt;br /&gt;
* [http://www.planettel.com.sg PlaNetTel] - Affordable and customised OpenVZ containers across 3 data centers - contact Thomas Festus at +65-66936881. [http://pve.proxmox.com/wiki/User:Apmuthu#Squeeze_based_Templates Sponsors OpenVZ Container Template]s for the Open Source community.&lt;br /&gt;
* [http://www.vpsfast.us/singapore-vps VPSFast] - VPS Provider with good prices in Singapore.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Serbia ==&lt;br /&gt;
* [https://www.skyhosting.rs/en/vps-servers SkyHosting] - Fast Linux OpenVZ VPS SSD Hosting with SolusVM control panel.&lt;br /&gt;
* [https://www.ninet.rs/en/vps-servers NiNet Company] - Linux OpenVZ VPS servers. Well known VPS hosting company from Serbia with their own data center&lt;br /&gt;
* [http://www.suonline.net SuOnline.Net ISP] - Linux OpenVZ VPS servers, Docker enabled !!!&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== South Africa ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.host1plus.com/ Host1Plus] - Local South African servers hosted in Johannesburg. OpenVZ VPS servers starting from $3.00 per month.&lt;br /&gt;
* [http://www.vps.co.za/ VPS.CO.ZA] - South Africa's oldest VPS provider. Local South African servers with SolusVM control panel. OpenVZ, Xen and OnApp Cloud.&lt;br /&gt;
* [http://247hosting.co.za/vpshosting.php 247Hosting] - OpenVZ virtual servers locally in South Africa with SolusVM control panel. cPanel option available!&lt;br /&gt;
* [http://www.SoftDux.co.za/ SoftDux] - OpenVZ virtual servers based America &amp;amp; South Africa. All VPS's come with cPanel or Plesk control panels. XEN VPS's also available.&lt;br /&gt;
* [http://www.clickworks.co.za/ Clickworks] - OpenVZ / Xen VPS servers hosted in RSA. Backed by Solusvm control panel.&lt;br /&gt;
* [http://www.elitehost.co.za/ Elite Host] - OpenVZ virtual servers based in America &amp;amp; South Africa. All VPS's come with cPanel and unlimited bandwidth.&lt;br /&gt;
* [http://www.telasera.com/ Telasera] - OpenVZ VPS servers hosted in South Africa. Supermicro Servers powered by Intel Xeon with 24/7 Support.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Spain ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.actiu.net/pro/ Actiu informatica]&lt;br /&gt;
* [http://www.corpresa.com/servidores-virtuales.html Corpresa Hosting] - Tiene algún proyecto entre manos y un plan de hosting no le hes sufuciente y un servidor dedicado no está dentro de su presupuesto?, una solución de VPS a medida será la que cubrirá todas sus necesidades.&amp;quot;&lt;br /&gt;
* [https://www.datomedia.es Datomedia] - Cloud alta disponibilidad powered by Virtuozzo 6 y Servidores VPS bajo openvz y kvm.&lt;br /&gt;
* [https://www.evidaliahost.com/vps/ EvidaliaHosting] - Servidores VPS totalmente configurados con panel de gestión Plesk 12.5, garantía de devolución de 30 días y posibilidad de discos SSD.&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
* [https://ginernet.com/vps-ssd.php GINERNET] - Servidores VPS alojados en España desde 1.99€/mes.&lt;br /&gt;
* [https://www.hostingplus.com.es Hosting Plus España] provide OpenVZ containers at our own datacenter. Starting from us20/month RAID 10 SSD.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Sweden ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.admax.se/vps/ Admax] - Admax offers enterprise grade virtual servers with great pricing. Custom control panel, API, remote access &amp;amp; more.&lt;br /&gt;
* [https://www.acon.se/vps Acon VPS Server] - VPS Server and Dedicated server provider in Sweden.&lt;br /&gt;
* [https://www.glesys.com/vps.php GleSYS] - VPS Provider with a great control panel and good prices&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides the highest quality SSD VPS in Stockholm, Sweden. Based on completely pure SSD in RAID-10 and delivering extremely high network &amp;amp; hardware performance along with reliability.&lt;br /&gt;
* [https://www.nametyper.com NameTyper] - VPS and Shared hosting provider. Customize your own OpenVZ Container with 1-12 cores running on SSD and ECC RAM. &lt;br /&gt;
* [https://virtualcenter.se VirtualCenter] - The first Cloud provider with SSD VPS in Sweden. Offer enterprise class hardware and network infrastructure&lt;br /&gt;
* [http://www.vpsfast.us/sweden-vps VPSFast] - VPS Provider with good prices in Sweden.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Switzerland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
* [http://www.vpsfast.us/switzerland-vps VPSFast] - VPS Provider with good prices in Switzerland.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Tanzania==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.aptus.co.tz/ Aptus Solutions] - OpenVZ / SolusVM VPS Servers located in Dar es Salaam - 100meg to TIX. CentOS &amp;amp; Ubuntu.&lt;br /&gt;
&lt;br /&gt;
== UK ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.34sp.com/ 34SP.com] - We're a UK based web hosting company, bridging the gap between sophisticated hosting solutions &amp;amp; affordable prices&lt;br /&gt;
* [http://www.AceShells.com/ AceShells] - Fast, stable, high quality UK based virtual private servers from just £5 a month, operating since 2001&lt;br /&gt;
* [http://www.AtlanticServers.com/ Atlantic Servers] - Affordable VPS, stable, high quality VPS, UK based Data Centre&lt;br /&gt;
* [https://awebhosting.uk/ AWebHosting.uk] VPS hosting offered by [https://awebsolutions.uk/ AWEBSOLUTIONS LIMITED] reliable UK hosting provider located in London, UK and Hosted in UK DataCentre.* [http://www.BargainVPS.co.uk/ BargainVPS] - UK / US / EU Instant setup VPS - We have some great Linux &amp;amp; Windows Bargain VPS packages on offer for you here all available Fully Managed.&lt;br /&gt;
* [http://www.cheapvps.co.uk/ CheapVPS] - CheapVPS provide cheap, UK based OpenVZ VPS servers. Hosted on high end hardware, in a top UK datacenter backed up with 24/7/365 support. Choice from a wide range of Linux distros. OpenVZ VPS managed with SolusVM.&lt;br /&gt;
* [http://www.chilliserver.com/ Chilliserver] - Affordable plans starting from just £3.99, not oversold. RHEL6 Kernel with VSwap, TUN/TAP/FUSE and ACL support enabled. SolusVM control panel with custom snapshot system and rescue system. Based in a European data Centre with UK based support.&lt;br /&gt;
* [http://www.chvps.com/ CHVPS] - Switzerland Based VPS, Cheap Pricing with solusVM control panel.&lt;br /&gt;
* [http://www.cislondon.co.uk/virtual-private-servers/ Commercial Internet Solutions] - CIS provides premium hosting at competitive rates, focused on Small Businesses within the M25 orbital. Hosting is on Dual Quad core Intel Xeon supermicro servers in Tier 4 datacenters around London.&lt;br /&gt;
* [http://www.datacorporate.co.uk/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [http://domvps.com/ domVPS] - OpenVZ Virtual Servers in the USA, Germany, France &amp;amp; the Netherlands at a low cost.&lt;br /&gt;
* [http://www.DubHosting.co.uk/ DubHosting] - DubHosting started in 2004 has been providing cost effective hosting to clients world wide. Fully managed OpenVZ servers based in Europe &amp;amp; US are one of their many strong points. They can provide you with a dedicated server and install openvz allowing you to sell your own vps servers. Their servers are located at UKGrid in Manchester with 24/7/365 support&lt;br /&gt;
* [http://www.europhase.net/virtual-private-servers/ Europhase UK Limited, UK VPS] - OpenVZ VPS Hosting, Virtual Dedicated Servers, UK VPS hosted at multiple UK datacentres from £4.99&lt;br /&gt;
* [https://farbyte.uk/vps Farbyte VPS] - UK based OpenVZ VPS and shared web hosting services&lt;br /&gt;
* [http://www.fdqwholesale.co.uk FDQ Wholesale] - UK based hosting services&lt;br /&gt;
* [http://www.gemvps.net/ GemVPS.NET] - UK (Manchester) Based Company, OpenVZ Virtual Servers in the UK &amp;amp; France on Fast nodes.&lt;br /&gt;
* [http://www.hadrill.org.uk Hadrill Online] - Fully managed hosting with unlimited bandwidth. Quotes available through contact form.&lt;br /&gt;
* [http://www.infrenion.com./uk_vps_hosting.html Infrenion Networks UK] Cheap, economical and reliable web hosting solutions, VPS based on the openVZ platform. You can host any YouTube Clone scripts with free FFMPEG setup on our vps servers. Also offers with a choice of selecting DataCenter.&lt;br /&gt;
* [https://www.laws-hosting.co.uk/vps-hosting.php Laws Web Hosting] - Laws Web Hosting offers OpenVZ VPS Hosting with packages starting from £5.50/m that will cater for anyone. We have OpenVZ VPS hosting solutions, and come with moderate DDoS protection.&lt;br /&gt;
* [http://www.letstalkdigital.com/index.php?option=com_content&amp;amp;view=article&amp;amp;id=73&amp;amp;Itemid=65 LetsTalkDigital VPS Hosting] - LetsTalkDigital.com offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from $14.99. Virtual Private Server(VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://www.meteorvps.com/ MeteorVPS] - Professional, Non-Oversold amazing VPS plans pretty cheap using SolusVM management, range from 512MB -&amp;gt; 16GB&lt;br /&gt;
* [http://www.minivps.co.uk miniVPS] miniVPS offers VPS hosting solutions with nodes located in UK, utilising openvz/solusvm with future locations of USA and UK. &lt;br /&gt;
* [https://www.first2host.co.uk First2Host Cheap VPS] - Intel Xeon E5-2630v3 OpenVZ VPS Servers. Don't be defined by a pre-made VPS plan. Create your own VPS Plan by assigning the resources that you require. SATA, SSD or NVMe storage 100 MBPS, 250 MBPS, 500 MBPS, 1GBPS speeds and free cPanel licenses.&lt;br /&gt;
* [http://www.phurix.co.uk/ Phurix] - A UK based web solutions company that provides you with reliable hosting at extremely affordable prices, VPS server virtualization using OpenVZ.&lt;br /&gt;
* [http://www.qualityservers.co.uk Quality Servers] - Affordable OpenVZ virtual servers based in the UK and USA. Choice of control panels and management options.&lt;br /&gt;
* [http://www.rackburst.net/ Rackburst] - UK SSD VPS Hosting with fast UK-based Live Support available from £1.49 per month.&lt;br /&gt;
* [http://www.rshosting.co.uk/vps.html RSHosting UK] - Offering the most secure, reliable, stable and fast UK VPS Web Hosting based on OpenVZ architecture. Our Virtual Dedicated Servers are physically hosted on powerfull Quad Core servers located in multiple UK datacentres.&lt;br /&gt;
* [http://www.sharkserve.rs SharkServers] - Low Cost OpenVZ virtual servers in the UK. Choice of control panels and management options. Own Datacentre.&lt;br /&gt;
* [https://www.ukhost4u.com/ UKHost4u] - A leading provider of VPS solutions for over 19 years!&lt;br /&gt;
* [http://www.vpsfast.us/united-kingdom-vps VPSFast] - VPS Provider with good prices in UK.&lt;br /&gt;
* [http://www.vpsmachine.co.uk/ vpsMachine] Quality openvz hosting platform with a large choice of customer OS templates.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [https://www.webhostuk.co.uk/vps-hosting.html WebHostUK LTD] - Offers Cheap yet Best UK VPS Web Hosting working on OpenVZ Platform.We offers fully Managed UK VPS with true 24/7/365 days support.All our Servers are located in UK London DC.&lt;br /&gt;
* [http://www.webhostinguk.com/vps/vps-hosting.html Web Hosting UK] - Fully managed OpenVZ VPS Hosting offered on fast and reliable and affordable servers in UK &amp;amp; European datacenter with 24x7x365 days lightning fast support.&lt;br /&gt;
* [http://www.weycrest.co.uk/vps-hosting.php Weycrest VPS] - Low Cost, Stable OpenVZ and Parallels' Virtuozzo Virtual Private Server solutions. London UK Hosted at Coreix with a choice of operating systems, and root and control panel options.&lt;br /&gt;
* [http://www.xilo.net/virtual_private_servers-vps/ XILO] - UK-based hosting with UK-based support. VPS services offered with a choice of cPanel, Webmin and other useful applications, VoIP, SIP, VPN to name a few.&lt;br /&gt;
* [http://www.zxvps.co.uk/ ZxVPS VPS Hosting] - Quality, non-oversold VPS based on the openVZ platform, using SolusVM management panel, VPS from 128mb - 2gb, cpanel, direct admin, kloxo, etc.&lt;br /&gt;
&lt;br /&gt;
== Ukraine ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://ekvia.com/ Ekvia] - VDS/VPS based on OpenVZ. Free trial 14 days. Domain registration for VDS/VPS.&lt;br /&gt;
* [http://www.gelihost.com/ Geliar Hosting Solutions] - Fast virtual dedicated servers based on OpenVZ. Geliar Hosting Solutions offering many control panels and other useful services.&lt;br /&gt;
* [http://www.hostpro.ua/ Hostpro.ua] - Full managed OpenVZ servers.&lt;br /&gt;
* [http://www.vpsfast.us/ukraine-vps VPSFast] - VPS Provider with good prices in Ukraine.&lt;br /&gt;
&lt;br /&gt;
== USA ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.a2hosting.com A2 Hosting] is your high-performance [http://a2hosting.com/openvz-vps-hosting OpenVZ VPS Hosting] provider. Design your perfect [http://a2hosting.com/vps-hosting VPS Hosting] account today! Featuring SwiftServers and SSDs with page load speeds up to 300% faster compared to standard drives.&lt;br /&gt;
* [http://www.afterburst.com Afterburst] (Previously FanaticalVPS): affordable unmetered, unmanaged VPS servers in NY.&lt;br /&gt;
* [https://www.asurahosting.com/ AsuraHosting] offers powerful, reliable, and simple OpenVZ VPS to clients. AsuraHosting has a dedicated support team, and quality hosting; Pricing starts at just $5/month!&lt;br /&gt;
* [http://beyondhosting.net BeyondHosting.net] High Performance OpenVZ Virtual Private Servers (VPS)  Tier 1 US Datacenter.&lt;br /&gt;
* [http://buyvm.net BuyVM.net] DDoS Protection, three datacenter locations, Stallion control panel. Affordable quality VPS hosting since 2010!&lt;br /&gt;
* [https://www.binarycpu.com Binary Computer Solutions] has provided OpenVZ based Virtual Private Server hosting for over 5 years.  Network outages are a thing of the past, and oversold services are never heard of here.  Built on solid technology, with infrastructure to match - Binary Computer Solutions will give you hosting you need, without the cost others ask for.  Starting at $30.00/mo.&lt;br /&gt;
* [http://www.bodhost.com/ Bodhost.com] Fast, Reliable and secure web hosting service with 24*7 free customer service.&lt;br /&gt;
* [http://www.buildyourvps.com/ BuildYourVPS.com] mix ‘n’ match your VPS; choose only the bandwidth, RAM, disk capacity, type of IP connection, level server redundancy, and the support/monitoring you want. [http://www.buildyourvps.com/ BuildYourVPS] is the 1st to offer you a highly-customized VPS solution, without making you pay for unused extra features.&lt;br /&gt;
* [https://www.budgetvm.com/openvz-linux-vps.php BudgetVM.com] Each server includes our industry-leading SLA, DDoS protection, 200Gbps networks and 7 * 24-hour customer support.&lt;br /&gt;
* [http://www.byethost.com Byethost.com] offers OpenVZ based VPS Hosting as its main VPS solution, with the hypervm panel. Centos, Debian, Fedora, OpenSuse and Ubuntu Containers are available.&lt;br /&gt;
* [http://cheaperasp.net CheaperASP.Net] provides Quality web hosting on the OpenVZ platform. You also help you get best options at [http://cheaperasp.net/godaddy-1-hosting-free-domain-promo/ affordable] cost.&lt;br /&gt;
* [http://www.chhost.net/vps.htm CH Hosting VPS Hosting] CH Hosting or chhost.net offers OpenVZ based VPS Hosting. 24/7 Support. Upgrade/Downgrade your plan as needed on-the-fly without the risk of downtime. Since 2006. Non-Oversell&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in USA from 1.88EUR/month.&lt;br /&gt;
* [http://www.cloudshards.com Cloud Shards] High Performance, reliable, stable and affordable OpenVZ Virtual Private Servers (VPS) in data centers across the USA.&lt;br /&gt;
* [https://cloudgearhosting.com CloudGear Hosting] - offers OpenVZ hosting in 4 locations across the USA. Including free DDoS Protection and free SSL with cPanel.&lt;br /&gt;
* [http://www.datacorporate.com/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [https://www.delimiter.com/storage-vps/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [https://www.cheapdomainnamesdot.com Domain Host SSL] provides Reliable web hosting with OpenVZ platform Since 2003, Located New York city, Atlanta, Los Angeles. &lt;br /&gt;
* [http://www.DubHosting.com/ DubHosting] - DubHosting started in 2004 has been providing cost effective hosting to clients world wide. Fully managed OpenVZ servers based in Europe &amp;amp; US are one of their many strong points. They can provide you with a dedicated server and install openvz allowing you to sell your own vps servers.&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
* [http://www.ethernetservers.com/ Ethernet Servers] A leading provider of OpenVZ Virtual Servers in Los Angeles, Miami and Buffalo with SolusVM.&lt;br /&gt;
* [http://www.evolucix.com/ Evolucix.com] Evolucix offers state of the art, professional, and reliable OpenVZ VPS solutions on top-notch hardware while providing quality support.&lt;br /&gt;
* [http://www.evolvedservers.com Evolvedservers.com] Openvz based vps servers. Hosted in Michigan, USA. 24/7 Support. Hosted in tier-3 and tier-4 datacenter's with multiple redundancies.&lt;br /&gt;
* [http://fastwebhost.com/vps-hosting.html Fastwebhost]: affordable cloud VPS servers using OpenVZ. &lt;br /&gt;
* [http://www.fliphost.net Fliphost.net]: Powerful, affordable instant setup VPS systems. Servers based in Phoenix Az with another location coming soon.&lt;br /&gt;
* [http://www.frontrangehosting.com Front Range Hosting]: SSD Cached KVM &amp;amp; OpenVZ VPS Hosting Prices Start at 2.00/mo, located in Colorado Springs, Colorado.&lt;br /&gt;
* [http://glesys.se GleSYS] is a hosting company specialized in serverhosting. Also offering VPS hosting mainly based on OpenVZ. GleSYS has provided access to server and Cisco hardware for developers from OpenVZ to find problem with VLAN implementation.&lt;br /&gt;
* [http://goodealhosting.com/ GOODEALHOSTING.com] Quality Hosting Solutions! Provides affordable unmanaged/managed VPS based on OpenVZ! start from $10.00, real 24/7 support.&lt;br /&gt;
* [http://gothost.net GotHost.net] Providing OpenVZ based VPS Hosting with SolusVM. All nodes are Quad Core Xeon with RAID-10 for speed and redundancy. Budget plans starting at $7.99.&lt;br /&gt;
* [http://www.greengeeks.com/ GreenGeeks Hosting] VPS Hosting. Dual Intel Xeon 64-Bit CPU's, DDR3 RAM, RAID-10 SSD Storage Arrays. 24/7 Support. cPanel/WHM + more!&lt;br /&gt;
* [http://hostarmor.com HostArmor™] - is best known for low-cost and reliable shared hosting and dedicated servers. Recently the company expanded to offer OpenVZ virtual server plans at 8 worldwide locations, five in the U.S., one in Germany, one in France, and one in the Netherlands. VPS plans start at $13.99/month.&lt;br /&gt;
* [http://www.host4geeks.com Host4Geeks] - Host4Geeks is a premium Fully Managed VPS provider with datacenters across 2 locations in US and in UK. All servers offer a free cPanel license.&lt;br /&gt;
* [http://www.host1plus.com Host1Plus] - OpenVZ based virtual servers in Chicago and Los Angeles. VPS plans start at $2.00 per month.&lt;br /&gt;
* [http://www.hostavps.com HostAVPS] - Providing Fully Managed VPS's on both the West &amp;amp; East Coast.&lt;br /&gt;
* [https://www.hostcapitol.com Host Capitol] offers fast and reliable web hosting services, including OpenVZ VPS Hosting, to clients ranging from small businesses to corporations. Located in Piscataway, New Jersey.&lt;br /&gt;
* [http://www.hostcolor.com Host Color] - OpenVZ based virtual servers hosted in a Tier 4 class data center based out of South Bend, Indiana. Juniper managed, fully-redundant network with uplinks to Level 3, Cogent and Internap.&lt;br /&gt;
* [https://www.hostgalaxy.com HostGalaxy] - OpenVZ based virtual servers. The fastest hosting in the Galaxy!&lt;br /&gt;
* [http://www.hostigation.com Hostigation] - High resource unmanage VPS hosting solutions.&lt;br /&gt;
* [http://www.hostingrails.com Hosting Rails] offers Rails-targeted OpenVZ VPS Hosting and updated Rails-ready OS images.&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [http://www.hostmist.com Host Mist] features budget OpenVZ VPS hosting from four major cities across the US.&lt;br /&gt;
* [http://www.hostrush.com HostRush] Self managed, ssd vps for business and non business. &lt;br /&gt;
* [http://www.dailyhosting.net hostoople] We offer OpenVZ VPS hosting from Dallas Texas, Starting at $29.95/month &lt;br /&gt;
* [https://hostus.us HostUS] provides unmanaged and managed OpenVZ VPS in Atlanta, Dallas and Los Angeles with custom control panel. A large variety of Linux distros are available. Enjoy 15% off with coupon VPS15OFF.&lt;br /&gt;
* [https://www.hostwinds.com Hostwinds] Affordable managed/unmanaged VPS Solutions.&lt;br /&gt;
* [http://hostsia.com Hostsia] With HOSTSIA Web services, you can get an OpenVZ VPS for only $15.00/mo. Each OpenVZ VPS includes multiple free-of-charge bonuses and offers a 99.9% uptime guarantee. You can also use our charge-free Hepsia CP, which is available with each OS – it permits you to host an unmetered number of domains and comprises heaps of handy tools, which will help you better manage your site and your VPS web hosting account.&lt;br /&gt;
* [http://www.infrenion.com./vps_hosting.html Infrenion Networks] Cheap, reliable and secure VPS hosting solutions, based on the openVZ platform. You can host any YouTube Clone scripts with enhanced support quality round the clock.&lt;br /&gt;
* [http://iniz.com/ INIZ VPS Hosting] INIZ provides affordable VPS Hosting in Los Angeles &amp;amp; New York with high resources at low prices.&lt;br /&gt;
* [https://www.interserver.net/ InterServer Web Hosting] Fast &amp;amp; Reliable VPS - 24x7 Support. 99.9% Up-time, Hosting Since 1999!.&lt;br /&gt;
* [http://www.joinvps.com JoinVPS.com] ISPmanager OpenVZ based VPS hosting. 24/7 Technical Support. Free ISPmanager control panel.&lt;br /&gt;
* [http://www.lovevps.com LoveVPS] Budget VPS provider starting at $5.99/month located in the US with Xeon nodes.&lt;br /&gt;
* [http://www.letstalkdigital.com/index.php?option=com_content&amp;amp;view=article&amp;amp;id=73&amp;amp;Itemid=65 LetsTalkDigital VPS Hosting] LetsTalkDigital.com offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from $14.99 Virtual Private Server(VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://lylix.net LYLIX] offers affordable VPS hosting with a choice of eight different Linux distributions, dedicated VPS hosting, and specializes in Asterisk/VOIP based hosting including Trixbox, AsteriskNow, Elastix, and PBX-in-a-Flash.  Popular choice for unmanaged IP-PBX services; entire infrastructure built on a High-availability (HA) network across three regional NOCs.&lt;br /&gt;
* [http://www.micfo.com Micfo.com] offers VPS hosting services for both Linux VPS hosting and Window VPS hosting on affordable price combined with world-class 24x7x365 support.&lt;br /&gt;
* [http://www.neostreams.info/neoshop/cart.php?gid=9 nEo Stream Services] Offer's Top Quality OpenVZ Servers, Starting at $18.95 per month! SolusVM Control panel , 7 day Money Back Guarantee , 24x7 Professional Support.&lt;br /&gt;
* [http://pogiweb.com/vps/ PogiWeb LLC] Instant and free setup. Includes SolusVM control panel and free level 1 support during first month.&lt;br /&gt;
* [http://www.theserverexperts.com TheServerExperts.com] TheServerExperts VPS line is the ideal solution for clients who require the control of a dedicated server matched with the affordability and simplicity of a traditional shared hosting account.&lt;br /&gt;
* [http://thenynoc.com New York NOC] affordable Linux VPS hosting out of New York and Chicago. Plans as low as $5 a month and are backed by a redundant infrastructure and 24/7 support.&lt;br /&gt;
* [http://railsplayground.com RailsPlayground.com] Ruby on Rails VPS with ready to go Rails images with the LxAdmin control panel&lt;br /&gt;
* [http://www.raidlogic.net RaidLogic.NET] RaidLogic.NET offers OpenVZ based Linux VPS out of multiple facilities across the United States, including Miami, Los Angeles, and Chicago. Starting as low as $3.95/month.&lt;br /&gt;
* [http://www.ramhost.us RAM Host] RAM Host offers OpenVZ based Linux VPS out of multiple facilities across the United States, including Atlanta, Kansas City, and Phoenix.&lt;br /&gt;
* [http://www.reconhosting.com Recon Hosting] Recon Hosting offers affordable OpenVZ VPS solutions where you get Quality Hosting at a Fraction of the price. Instant setup with the latest Operating System templates including cPanel.&lt;br /&gt;
* [http://www.rokabear.com Rokabear] Rokabear offers OpenVZ Linux VPS, Dedicated Server, and Colocation. All Hardware setup in High Availability mode including raided drives and redudnant power and network connections. With multiple upstream providers, Rokabear's connectivity is fast and reliable! Rokabear supports LAMP, Openvpn, and Asterisk configurations. VPSes start at $7.99!&lt;br /&gt;
* [https://www.rosehosting.com RoseHosting] offers OpenVZ Linux virtual servers equipped with Enterprise Grade SSD drives. All hosting plans are fully-managed with FREE 24/7 support, FREE website migration, FREE weekly backups and FREE server monitoring included.&lt;br /&gt;
* [http://www.rshosting.com/vps.html RSHosting.com] RSHosting offers the most secure, reliable and stable VPS - Virtual Private Servers based on OpenVZ architecture, powered by the most professional and qualified 24/7 lightening fast support.&lt;br /&gt;
* [http://www.servercomplete.com Server Complete, LLC] Server Complete offers OpenVZ based Linux VPS out of multiple facilities across the United States, including Atlanta, Dallas, and Chicago.&lt;br /&gt;
* [http://www.servergrove.com ServerGrove] uses OpenVZ as the main virtualization platform for its state of the art VPS hosting services.&lt;br /&gt;
* [http://serverswarm.com ServerSwarm] provides stable, affordable, high performance OpenVZ virtual private servers.&lt;br /&gt;
* [http://Sharktech.net Sharktech] provides custom OpenVZ solutions DDOS-protected up to 100Gbps.&lt;br /&gt;
* [http://www.silverrack.com/ SilverRack VPS Hosting] - SilverRack provides affordable VPS hosting using the OpenVZ platform.&lt;br /&gt;
* [http://www.soficol.com/ Soficol] Offers Enterprise OpenVZ based VPS, hosted on a clustered infrastructure and redundant network. Easy to use user management and instant setup.&lt;br /&gt;
* [http://www.spectrohost.com/ Spectro Host] - Offers performance VPS Servers running openvz. Always the most resources and never over committing OpenVZ nodes.&lt;br /&gt;
* [http://www.budgetvds.com/ BudgetVDS] - Offers VPS Servers running openvz we've been in business for 2 years now using openvz platform.&lt;br /&gt;
* [http://www.syera.net/ Syera Networks] Unmetered VPS From $18.88/M, 24/7 Support, OpenVZ/HyperVM, Instant Setup!, Free 1Gbps Upgrade with Coupon: syera1G&lt;br /&gt;
* [http://www.synapseglobal.com/voip_vps.html SynapseGlobal.com] Elastix, Trixbox, PBX in a Flash and Asterisk VPS - OpenVZ based Asterisk VOIP servers with 14 Tier 1 premium bandwidth providers.&lt;br /&gt;
* [http://www.tektonic.net TekTonic] provides VPS hosting services using both Virtuozzo and OpenVZ technology.&lt;br /&gt;
* [http://www.tigerservers.com/ TigerServers] - Provides affordable managed VPS based on OpenVZ. Servers located in Chicago, Illinois&lt;br /&gt;
* [http://www.tocici.com/ TOCICI VPS Hosting Services] Since 1995 TOCICI has offered web hosting services, with 24/7 support commitments and a strong non-oversell policy. Our purpose-built hosting infrastructure has serviced many organizations for over a decade. Offering OpenVZ VPS, data center colocation, and equipment leasing options, visit our website for prices and more details.&lt;br /&gt;
* [http://www.ultravps.com UltraVPS] UltraVPS offers managed and unmanaged OpenVZ-based VPS hosting utilizing dual CPU hardware nodes with redundant, high-performance RAID-10 storage.  UltraVPS offers VPS servers with many popular control panel options and turn-key applications.&lt;br /&gt;
* [http://www.vpsfx.com VPSFX] VPSFX.com offers OpenVZ VPS, data center colocation, and dedicated servers.&lt;br /&gt;
* [http://www.Webhost.US.Com/linuxvps.html US Web Hosting]  Webhost.US.Com offers powerful GUI based VPS management system with full OpenVZ, Xen Paravirtualization and Xen HVM support.All our Virtual Private servers are fully Managed with 99.9% uptime and 24/7 top notch support.&lt;br /&gt;
* [http://unixservice.com Unixservice/unxsVZ] Low cost OpenVZ ONLY hosting we specialize in Mail, DNS and RADIUS multiple container hosting. At the world famous Market St. San Jose, CA Silicon Valley datacenter. Ping times from your containers to local yahoo and google sites guaranteed single digit ms times. Your containers are backed up at 4 local and 2 remote locations. Contact supportgrp at unixservice dot com.&lt;br /&gt;
* [http://www.vogenic.xyz Vogenic: Cloud Services] If you are searching for an upgrade to the shared hosting service, then you should consider our OpenVZ or KVM VPS hosting services.&lt;br /&gt;
* [http://vpslink.com VPSLink.com] provides virtual private server hosting on the OpenVZ platform.&lt;br /&gt;
* [http://www.vpsspeed.com/ VPSSpeed] - VPSSpeed provides unmanaged OpenVZ based VPS hosting with over 50 OS Templates, real 24/7/365 support and fast US servers. No overselling.&lt;br /&gt;
* [http://vpsnoc.com VPSNOC] offers unmanaged vps hosting based in the USA utilizing OpenVZ hypervisor behind an in-house VPS control panel.&lt;br /&gt;
* [https://www.waveride.at/ Waveride] Waveride, an EDIS company, offers budget full gigabit OpenVZ + solusVM VPS in Austria, USA and the Netherlands&lt;br /&gt;
* [http://www.webappcabaret.com WebAppCabaret] provides VPS solutions for hosting applications. We offer OpenVZ with cPanel or Plesk for web site management; and NGASI Universal App Manager for deploying and managing JAVA and RAILS applications.&lt;br /&gt;
* [http://www.wirenine.com/vps-hosting/ WireNine.com VPS Hosting] Low cost fully managed and unmanaged OpenVZ based VPS Hosting with SAS 15k enterprise drives in high-performance RAID-10 storage.&lt;br /&gt;
* [http://www.zoidial.com/ Zoidial Hosting and VPS] - offers VPS and Virtual Dedicated Server solutions utilizing OpenVZ.  In business since 1998, Zoidial Incorporated is a small hosting provider focused on being security conscious, proactive, and offering a positive client experience.&lt;br /&gt;
* [http://zensix.com ZenSix Hosting] Cheap OpenVZ based VPS accounts with the SolusVM control panel.&lt;br /&gt;
* [http://zigothosting.com Zigot Hosting] Affordable and Reliable OpenVZ based VPS's within the SolusVM control panel.&lt;br /&gt;
* [http://www.vpsfast.us/usa-vps VPSFast] - VPS Provider with good prices in USA (Los Angeles, New Jersey, New York, Seattle, Washington, Dallas, Chicago, Atlanta, Ashburn, Miami, Piscataway).&lt;br /&gt;
* [http://www.xarixlite.com Xarix Lite] - offers OpenVZ hosting in Charlotte, SC. OpenVZ plans starting at $2.50/mo&lt;br /&gt;
* [https://www.yourlasthost.com YourLastHost] is your high-performance [https://www.yourlasthost.com/openvz-vps.php OpenVZ VPS Hosting] Provider. Get your perfect [https://www.yourlasthost.com/openvz-vps.php VPS Hosting] account today! Available in Los Angeles, Dallas, Jacksonville, USA and France, Europe.&lt;br /&gt;
&lt;br /&gt;
== Vietnam ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://appvz.com AppVZ.com] (www.appvz.com) is a leading web solution provider offering domain, hosting, reseller and VPS hosting packages from 2009. Just recently, the company has offered discount packages where customers can avail managed and un-managed VPS for only $9.5 per month.&lt;br /&gt;
&lt;br /&gt;
= Hosting providers comparison =&lt;br /&gt;
&lt;br /&gt;
It is hard to compare all virtual private server offers provided by different hosting providers.&lt;br /&gt;
Sites below can help you with it.&lt;br /&gt;
&lt;br /&gt;
* [https://www.cheapvpsservers.co.uk/ Cheap VPS Servers]&lt;br /&gt;
* [https://www.hostingmyths.com/ Hosting Myths]&lt;br /&gt;
* [https://cheapwebhosting.review/ VPS servers comparison]&lt;br /&gt;
* [https://reviewsquirrel.com/web-hosting-reviews/ Review Squirrel]&lt;br /&gt;
* [http://lowendstock.com/ Lowendstock]&lt;br /&gt;
* [https://www.websitehostingrating.com/ Best Web Hosting Services]&lt;br /&gt;
* [http://serverbear.com/compare?Sort=RAM&amp;amp;Order=asc&amp;amp;Server+Type=VPS&amp;amp;Monthly+Cost=-&amp;amp;HDD=-&amp;amp;RAM=-&amp;amp;Virtualization=OpenVZ Serverbear]&lt;br /&gt;
* [https://www.comparethehosts.com/vps-web-hosting.htm VPS Web Hosting Reviews]&lt;br /&gt;
* [https://thishosting.rocks/best-cheap-managed-vps/ ThisHosting.Rocks - Managed VPS Providers Comparison]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
http://vpscomp.com&lt;br /&gt;
http://reviewsignal.com/webhosting/compare/&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= See also =&lt;br /&gt;
&lt;br /&gt;
* [[Partners]]&lt;br /&gt;
* [[Download mirrors]]&lt;br /&gt;
* [[VPS vs Dedicated]]&lt;/div&gt;</summary>
		<author><name>Vvs</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.openvz.org/index.php?title=Hosting_providers&amp;diff=23289</id>
		<title>Hosting providers</title>
		<link rel="alternate" type="text/html" href="https://wiki.openvz.org/index.php?title=Hosting_providers&amp;diff=23289"/>
		<updated>2020-03-31T05:25:11Z</updated>

		<summary type="html">&lt;p&gt;Vvs: /* Argentina */ Sorted&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''OpenVZ is free and open implementation of Virtuozzo containers for Linux.&lt;br /&gt;
Don't forget to keep [[testimonials|testimonial]] and [[donate]] to OpenVZ.'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
OpenVZ makes for a great hosting platform for VPS hosting. The providers below offer VPS services using OpenVZ.&lt;br /&gt;
&lt;br /&gt;
[[File:UsageLocation.svg]]&lt;br /&gt;
&lt;br /&gt;
= OpenVZ hosting providers =&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- @@@@@@@@@@@@@@@@@@@@@@@&lt;br /&gt;
&lt;br /&gt;
IF YOU EDIT THIS PAGE,  PLEASE OBEY TO THE FOLLOWING RULES:&lt;br /&gt;
&lt;br /&gt;
1. Keep your record on ONE line&lt;br /&gt;
2. Keep the list of providers alphabetically sorted, DO NOT insert your record on top.&lt;br /&gt;
3. Keep the list of countries alphabetically sorted as well.&lt;br /&gt;
&lt;br /&gt;
     @@@@@@@@@@@@@@@@@@@@@@@@ --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Andorra ==&lt;br /&gt;
* [https://www.actiu.net/pro/ Actiu informatica] amb servidors dins i fora del principat.&lt;br /&gt;
&lt;br /&gt;
== Argentina ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.fulltech.com.ar/ Full Tech Solutions] Specializes in the virtualization of OpenVZ &amp;amp; Virtuozzo containers, installed in the Full Tech Solutions Data Center located in Villa Elisa, Entre Rios Argentina.  It also offers services hosted in the United States, Netherlands and Germany&lt;br /&gt;
* [http://www.g2khosting.com/ G2K Hosting] offer OpenVZ containers with high level hardware technology from 25 US with Control Panel, various Linux Dists and full support.&lt;br /&gt;
* [https://hostingplus.com.ar/ HostingPlus Argentina] provide OpenVZ containers at our own datacenter in South America with triple internet provider. Starting from  us20/month&lt;br /&gt;
* [https://ibumu.com/ Ibumu] Best containers for wordpress starting from $5.5.&lt;br /&gt;
* [http://www.ihserver.net/ IHServer] Specialized virtualization on OpenVZ containers at Gigared datacenter. We have in Argentina one of the better fiber connection to the US, but also provides services from LSTN in Texas.&lt;br /&gt;
* [https://www.infranetworking.com.ar/ Infranetworking] All our Cloud VPS container solutions for Argentine customers are powered by the all mighty OpenVZ virtualization software.&lt;br /&gt;
* [https://www.neolo.com/ Neolo] provide OpenVZ containers at our own datacenter in South America with double internet provider. Choose your Linux OS and apps. Full support.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [http://www.wiredhosting.com.ar/ WiredHosting] offer XEN and OpenVZ containers with SSD drives, cloudflare security and weekly backups to protect your information. Phone and Helpdesk support. &lt;br /&gt;
&lt;br /&gt;
== Australia == &lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.auhost4u.com/ AUHost4u] - VPS Solutions provided from our D.C. in Sydney.&lt;br /&gt;
* [https://www.conetix.com.au/ Conetix Hosting] Specialising in business grade, fully managed Virtuozzo containers with Virtuzzo Cloud Storage. 100% Australian owned and operated. Brisbane based DC with Enterprise Dell servers.&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides self-managed OpenVZ based SSD VPS located at Equinix SY3 in Sydney, one of the best and well-connected datacenters in the region.&lt;br /&gt;
* [http://www.vpsfast.us/australia-cloud-server VPSFast] - VPS Provider with good prices in Australia.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Austria ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
* [https://kapper.net/ kapper.net] kapper.net offers OpenVZ and Virtuozzo (and other HyperVisors) based server-solutions with kind support and 24x7 maintenance.&lt;br /&gt;
* [https://mdhost.eu/vserver.php MDHost.eu] New Hosting Provider with nice Prices and many Server locations. Austria, Germany, France and more.&lt;br /&gt;
* [https://www.snb.at/ SNB] offers OpenVZ containers and support's also existing vm's in customers environment&lt;br /&gt;
* [https://www.waveride.at/ Waveride] Waveride, an EDIS company, offers budget full gigabit OpenVZ + solusVM VPS in Austria, USA and the Netherlands&lt;br /&gt;
* [http://www.vpsfast.us/austria-cloud-server VPSFast] - VPS Provider with good prices in Austria.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Brazil ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.datacorporate.com.br/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [http://www.globalmedia.com.br/ GlobalMedia] We offers OpenVZ containers hosted on a very fast network with fast setup. Ubuntu, Debian, CentOS.&lt;br /&gt;
* [http://www.host1plus.com.br/ Host1Plus] Servers hosted in São Paulo. We offering reliable and secure OpenVZ VPS Servers with 99.99% up-time, starting from $5.00 per month.&lt;br /&gt;
* [http://www.ipdeck.net/ IPDECK] VPS Linux server from R$15,00/month! Fully customizable according to your needs.&lt;br /&gt;
* [https://www.quantivehost.com.br/ QuantiveHost] VPS Linux with 99.99% uptime. Prices starting from R$ 29,35.&lt;br /&gt;
* [https://www.elevahost.com.br/ Eleva host] Server hosted in Brazil. The best support.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [https://www.ferenz.com.br/ Ferenz Networks] VPS Linux with best support. Prices starting from R$ 29,90.&lt;br /&gt;
&lt;br /&gt;
== Bulgaria ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.cloudhostinghub.com Offshore VPS Hsoting] CloudHostingHub.com is an [https://www.cloudhostinghub.com Cloud Offshore VPS Hosting] located in Buglaria. They provide both OpenVZ and KVM virtualization. CloudHostingHub.com is known for the high privacy protection , performance and stability.&lt;br /&gt;
* [https://www.cyberhour.com CyberHour.com] CyberHour.com is an [https://www.cyberhour.com offshore VPS hosting] provider located in Europe. The provide blazing fast servers and premium Bandwidth of 200Mbps. With high privacy protection.&lt;br /&gt;
* [https://www.linuxssdvps.com Bulgaria VPS] Linux SSD VPS is an [https://www.linuxssdvps.com offshore VPS hosting] provider located in Sofia, Bulgaria. Privacy is very respected and anonymous registrations are allowed, as well as payments via Bitcoin / PayPal.&lt;br /&gt;
* [http://www.webuzo.net Bulgaria VPS] Webuzo Network is an offshore SSD VPS hosting provider located in Bulgaria. Privacy is very respected and anonymous registrations are allowed, as well as payments via Bitcoin / PayPal.&lt;br /&gt;
* [https://vpsbg.eu/en Bulgaria VPS] VPSBG.eu is an offshore SSD VPS hosting provider located in Sofia, Bulgaria. Privacy is very respected and anonymous registrations are allowed, as well as payments via Bitcoin.&lt;br /&gt;
* [http://www.bul.net/ Bul.net] Provides OpenVZ based VPS, perfect user/VPS management via [http://ispsystem.com VDSManager]. Instant creation after online payment. Debian/Ubuntu/CentOS with ISPManager Control panel. Optimal price policy.&lt;br /&gt;
* [http://www.cointech.eu/vps-hosting/ CoInTech] provides OpenVZ based VPS containers, free webmin managment. Containers can be CentOS, Slackware, Ubuntu, custom or our special [http://www.mandriva.com Mandriva Linux] container with own [http://mandriva.cointech.net repository].&lt;br /&gt;
* [http://www.rax.bg/ RAX.bg] Offers OpenVZ based VPS, hosted on a clustered infrastructure and redundant network. Easy to use user management, Instant setup, CentOS (OS).&lt;br /&gt;
* [http://www.jump.bg/ Jump.bg] Provides OpenVZ VPS servers hosted on a redundant network which provides a very easy to manage platform for all clients which gain instant access to their OS ( Ubuntu, CentOS , Debian etc ... )&lt;br /&gt;
* [https://www.fitvps.com/ FitVPS.com] Offers affordable and reliable OpenVZ based VPS in Varna, Bulgaria. Own data center, own multihomed network, with SLA. Instant automatic setup, SolusVM control panel.&lt;br /&gt;
* [http://www.qhoster.com/ QHoster.com] Instant activation OpenVZ VPS in UK, USA, Germany, France and Switzerland. Both 32/64 bit OpenVZ OS VPS templates : CentOS 5/6, Debian 6/7, Ubuntu 12/13.&lt;br /&gt;
* [https://www.verdina.net Verdina.NET] Verdina.net offers dedicated hosting services, provided by powerful dell hardware. Servers are located in Telepoint Datacenter, a Tier 3 DC located in Sofia, Bulgaria.&lt;br /&gt;
* [https://www.vps.ag/ VPS.AG] Affordable and reliable OpenVZ VPS based in Sofia, Bulgaria. Instant setup and 24/7 support.&lt;br /&gt;
* [http://www.vpsfast.us/bulgaria-vps VPSFast] - VPS Provider with good prices in Bulgaria.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Canada ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://4goodhosting.com/linux-vps-hosting 4GooodHosting] - Canadian OpenVZ VPS Servers, Starting from  $18.99/month SSD,. Canada VPS hosting in three different Canadian Data Centers with nightly backups.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [https://whc.ca/canadian-cloud-servers Web Hosting Canada Cloud Servers] - Powerful Cloud servers powered by OpenVZ and located in Canadian datacenters, with fast RAID-10 storage, fully managed with cPanel.&lt;br /&gt;
* [http://compevo.com compevo Clustered VPS Server Hosting Provider] - We offer clustered VPS Servers to avoid downtime and dataloss. Our network and service is second to none and is used by businesses around the world.&lt;br /&gt;
* [http://www.datacorporate.ca/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [https://www.delimiter.com/storage-vps/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [https://www.miditech.com/ MidiTech Hosting Canada] VPS hosting offered by MidiTech Canada are powered by VMware, . Fully Managed VPS with control panels&lt;br /&gt;
* [http://www.gotekky.com Gotekky Cloud VPS Hosting] High quality Cloud VPS packages powered by our own infrastructure and network in Toronto. Scalable from our $5/mo plan all the way to your own dedicated cloud server. Based on OpenVZ and our own proprietary panel.&lt;br /&gt;
* [https://gigebox.com GIGEBOX.COM] GIGEBOX are expert providers of secure business hosting services, we operate high-performance professional servers, specially designed for businesses, powered by the Intel(R) Xeon(R) Hexa-Core CPU Processors and 128 GB DDR3 minimum RAM. Enjoy high availability, performance and security for multiple uses.&lt;br /&gt;
* [http://www.letstalkdigital.com/index.php?option=com_content&amp;amp;view=article&amp;amp;id=73&amp;amp;Itemid=65 LetsTalkDigital VPS Hosting] LetsTalkDigital.com offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from $14.99. Virtual Private Server (VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://secure.media-hosts.com/link.php?id=7 Media-Hosts.com] Provides Quality and Scalable OpenVZ based Virtual Private Servers. 100% network uptime guaranteed. Located in Montreal Quebec with 5 Tier1 upstream providers.&lt;br /&gt;
* [http://www.openvz.ca OpenVZ.ca] Canadian Budget VPS Servers on OpenVZ Platform. &lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [http://protoserver.com ProtoServer] Advanced VPS Hosting from $4.95/month. Many pre-installed VPS Templates available (CMS, E-commerce, Web development, Online community, Media streaming, etc.) No bundles or service plans - mix VPS resources as needed and change VPS configuration anytime. Also offering DNS Hosting, E-mail hosting, Domains Registration.&lt;br /&gt;
* [http://www.vistapages.com/vps Vistapages VPS] - IBM &amp;amp; Dell Hardware. MCI/Verizon Backbone. Distros: Centos, Fedora, Debian &amp;amp; more. Full management available. Located in Toronto.&lt;br /&gt;
* [http://vpsville.ca/ VPSVille] - Good network. Good CPU. Good choice of distros: Centos, Fedora, Debian, Ubuntu, Slackware, Gentoo, OpenSUSE, CERN. My favorite OpenVZ provider. [mailto:jak@isp2dial.com John Kelly]&lt;br /&gt;
* [http://solib.ca/services-offerts/hebergement-haute-vitesse/serveurs-vps/ SOLIB Logiciel Libre Québec] Our company offers DDoS protected server solutions including OpenVZ containers. Very high availability and reliability, all our VPS are located in Quebec, Canada.&lt;br /&gt;
* [https://www.host-stage.net/linux-vps/ HostStage - Linux VPS] - Simple, Reliable OpenVZ VPS packed with 1 GBPS port speed, RAID 10 SSD, Intel Xeon CPU, DDoS Protection from $4.95/month&lt;br /&gt;
* [https://undergroundprivate.com/russiaoffshorevps.html  UndergroundPrivate.com] - OpenVZ with highly privacy, offshore , DMCA ignored , high confidence, SolusVM and cPanel, managed and non managed service.&lt;br /&gt;
* [http://www.vpsfast.us/canada-vps VPSFast] - VPS Provider with good prices in Canada.&lt;br /&gt;
* [https://websavers.ca/canadian-vps-hosting Websavers Inc in Halifax] - VZ containers priced by the resource. Resource changes entirely client-level.&lt;br /&gt;
* [https://www.yoorshop.fr/hosting-ssd-vps-usa-canada.php YOORshop SAS] - High performance NVMe SSD Linux VPS in Canada, daily backup included. Starting from €7,49 /month&lt;br /&gt;
&lt;br /&gt;
== Colombia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.datacorporate.co/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [http://www.soficol.com/ Soficol] Offers Enterprise OpenVZ based VPS, hosted on a clustered infrastructure and redundant network. Easy to use user management and instant setup.&lt;br /&gt;
* [https://www.hostingplus.com.co/ Hosting Plus Colombia] provide OpenVZ containers at our own datacenter in South America with triple internet provider. Starting from  us20/month&lt;br /&gt;
* [https://ibumu.com/ Ibumu] Best containers for wordpress starting from $5.5.&lt;br /&gt;
&lt;br /&gt;
== Czech Republic ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://4smart.cz 4Smart.cz] - prepaid, you are charged only by the system resources you use, therefore you can run a VPS for as little as  1 EUR a month if your vps is not resource hungry. Even if you pay  0,50 EUR  month, you still have 3 GB of RAM and 8 cores available to you VPS.&lt;br /&gt;
* [http://www.freecloud.cz FREECLOUD.CZ] - Free OpenVZ VPS Server - own IP, 800Mhz CPU, 512MB RAM, 50Mbits LAN, 10GB HDD, 100GB Traffic - Debian, Ubuntu, Gentoo, Slackware, Fedora, Centos&lt;br /&gt;
* [http://www.hukot.cz Hukot.cz] - OpenVZ VPS Servers starting from 2.92 €, XEON, 1 Gbps uplink, unlimited traffic. Debian, Ubuntu, CentOS, Scientific, SuSe, Fedora, Elastix.&lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [http://www.ultimatehosting.eu UltimateHosting.eu] - OpenVZ VPS Servers starting from $8 with custom configuration - up to 100 GB HDD, 2048 MB RAM, 2 GHz CPU, and unlimited traffic.&lt;br /&gt;
* [http://www.mujhost.net MUJHOST.NET] - OpenVZ VPS Servers starting from 160 Kč, 100Mbps / 1 Gbps uplink, unlimited traffic. Debian, Ubuntu, CentOS ...&lt;br /&gt;
&lt;br /&gt;
== Chile ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.1h.cl/ 1h.cl Vps - Chile] - VPS High Performance with OpenVZ in Chile&lt;br /&gt;
* [http://www.1hosting.cl/ 1hosting Virtual servers - Chile] - VPS Professional with OpenVZ&lt;br /&gt;
* [http://www.dch.cl/ DCH] - DCH.cl Hosting Chile - High Performance VPS Servers with OpenVZ &lt;br /&gt;
* [http://ecohosting.cl/ EcoHosting.cl Santiago - Chile] - VPS with OpenVZ in Chile&lt;br /&gt;
* [http://www.host.cl/ Host.cl] - Cloud Computing&lt;br /&gt;
* [http://www.hostingplus.cl/ HostingPlus Internet Limitada] - High Performance Vps provider in Chile&lt;br /&gt;
* [http://www.hostname.cl/ Hostname Ltda] - VPS Hosting with Datacenter in Chile&lt;br /&gt;
* [http://www.inc.cl/ INC Internet Limitada] - VPS Hosting provider in Chile&lt;br /&gt;
&lt;br /&gt;
== Denmark ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.vpsfast.us/denmark-cloud-server VPSFast] - VPS Provider with good prices in Denmark.&lt;br /&gt;
&lt;br /&gt;
== Ecuador ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.dedi.space/ DediSpace Telecom] - VPS Servers in Ecuador - USA, France, Germany, Ecuador Datacenter.&lt;br /&gt;
&lt;br /&gt;
== France ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.BargainVPS.co.uk/ BargainVPS] - UK / US / EU Instant setup VPS - We have some great Linux &amp;amp; Windows Bargain VPS packages on offer for you here all available Fully Managed.&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in France from 1.88EUR/month.&lt;br /&gt;
* [http://www.fixweb.com Fixweb] Great managed hosting provider with strong anti ddos solution - openvz only - leader in managed openvz solution with horizontal scaling and high availability&lt;br /&gt;
* [http://www.Freaksol.com/ FreaKs VPS Hosting] Self reliant hosted on independent networks &amp;amp; DC low ping,No restrictions on file types,Unlimited resources,high ram servers &lt;br /&gt;
* [https://galaxyhostplus.com/ovz GalaxyHostPlus] Cheap VPS Hosting based in Roubaix with new 2016 line starts from $2/Month &lt;br /&gt;
* [http://www.harmony-hosting.com Harmony-Hosting] A high performance VPS hosting - The leader in France&lt;br /&gt;
* [https://www.delimiter.com/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [http://www.lws.fr/serveur_dedie_linux.php LWS - Linux VPS ] - Linux VPS Hosting - Only 9.99€/month, Affordable and Secure OpenVZ VPS Servers with 99.99% up-time, web hosting control panel Included. French datacenter&lt;br /&gt;
* [http://www.ovh.co.uk/vps/ OVH VPS] linux from 3€/month, [http://www.ovh.co.uk/vps/vps-cloud.xml windows] from 12€/month.&lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [https://VPSZ.FR VPSZ] VPS Hosting in France. Starting from 2,99€, Unlimited traffic.&lt;br /&gt;
* [http://www.1euro-hosting.eu BEST EU VPS - 1€ Hosting] - Providing reliable and secure OpenVZ VPS Servers with 99.99% up-time, starting from 8€&lt;br /&gt;
* [https://www.shape.host/linux-vps/ Shape Host - Linux VPS] - OpenVZ virtual servers, Instant Linux VPS&lt;br /&gt;
* [https://undergroundprivate.com/russiaoffshorevps.html  UndergroundPrivate.com] - OpenVZ with highly privacy, offshore , DMCA ignored , high confidence, SolusVM and cPanel, managed and non managed service.&lt;br /&gt;
* [https://www.host-stage.net/linux-vps/ HostStage - Linux VPS] - Simple, Reliable OpenVZ VPS packed with 1 GBPS port speed, RAID 10 SSD, Intel Xeon CPU from $4.95/month&lt;br /&gt;
* [https://www.yoorshop.hosting/hosting-vps-ssd-europe.php YOORshop SAS] - High performance NVMe SSD OpenVZ 7 VPS within 13 countries in Europe, Canada and Singapore. Daily backup included. From €7,49 /month&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Germany ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://afterburst.com Afterburst (Previously FanaticalVPS)]: affordable unmetered, unmanaged VPS servers in Germany.&lt;br /&gt;
* [http://www.b2b-hosting.de/vps/ B2B Hosting]: Professional virtual servers for business applications. Performance and reliability at a fair price. Made with OpenVZ.&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in Germany from 1.88EUR/month.&lt;br /&gt;
* [https://www.delimiter.com/dedicated-servers/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [https://www.first2host.co.uk/linux-vps-servers/ OpenVZ VPS Servers] Provision an OpenVZ VPS server with the exact resources your project needs. Assign up to 29 vCores and choose between SSD and SATA space. 14 Locations WordWide&lt;br /&gt;
* [https://galaxyhostplus.com/ovz GalaxyHostPlus] Cheap VPS Hosting based in Frankfurt with new 2016 line starts from  $2/Month&lt;br /&gt;
* [http://hostmist.com/openvz-vps-germany.html Host Mist]: features budget OpenVZ VPS hosting in Germany.&lt;br /&gt;
* [http://www.host1plus.com/ Host1Plus] Servers based in Frankfurt am Main. Offering reliable OpenVZ based VPS servers in Germany starting from $2.50 per month.&lt;br /&gt;
* [http://www.hostingjuice.com/ HostingJuice] The Superioum VPS and Web Hosting provider, low prices - Premium packages.&lt;br /&gt;
* [http://www.ingate.de/managed-server.html Ingate] offers managed servers with openVZ virtualization. located in germany, great support.&lt;br /&gt;
* [http://linevast.de/angebote/linux-openvz-vserver-mieten.html Linevast] Reliable OpenVZ based VPS with fast support, located in germany&lt;br /&gt;
* [https://cp.myvirtualserver.com/?affid=42 MyVirtualServer]: Cheap VPS (OpenVZ/KVM, 5TB Traffic, 10Gigabit), servers located in Frankfurt (best ping, starting 1.99€) good support (en/de) //New Design!&lt;br /&gt;
* [https://www.nogics.com Nogics Technologies]: Affordable VPS based in Germany. Starts from $5.96/mo.&lt;br /&gt;
* [http://www.plambee.de/vserver.php Plambee.de Webhosting]: Powerfull OpenVZ based VPS servers at low cost with hosting in Germany&lt;br /&gt;
* [https://rackset.com/ Rackset Hosting] Managed Dedicated / VPS and Website Hosting services since 2004.&lt;br /&gt;
* [http://www.serverbiz.de/vserver Serverbiz] Powerful VPS at very low prices.&lt;br /&gt;
* [http://www.synapseglobal.com/voip_vps.html SynapseGlobal.com] Elastix, Trixbox, PBX in a Flash and Asterisk VPS - OpenVZ based Asterisk VOIP servers located in Munich Germany.&lt;br /&gt;
* [http://www.vStarVPS.com vStarVPS]: Reliable VPS Hosting at lowest prices, with 99.9% uptime, Premium Unmetered Bandwidth and Custom HDD/RAM of your choice. Instant and FREE Setup. RapidLeech Allowed.&lt;br /&gt;
* [http://whynotavps.com WhyNOTaVPS]: Instant activated VPS SERVERS!!&lt;br /&gt;
* [http://squote.de/index.php?ref=1421485383 SQuote]: SQuote VPS Hosting and more. VPS 1 Core, 1.024MB RAM, 512MB RAM SWAP, 50 GB HDD, 1x IPv4. 3,89EUR/month. For the best VPS SQuote.de&lt;br /&gt;
* [http://www.vpsfast.us/germany-vps VPSFast] - VPS Provider with good prices in Germany.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Guatemala ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.globalnetcafe.com/gnc/menu/hospedaje.htm Global Net Cafe]: Servicios de hospedaje, reseller, vps, colocacion y servidores. Incluyendo OpenVZ.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Hong Kong ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [https://hostus.us HostUS] features unmanaged and managed OpenVZ VPS in Hong Kong as well as 3 USA locations. Unparalleled connectivity to the Asia Pacific. Enjoy 15% off with coupon VPS15OFF.&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides self-managed OpenVZ based SSD VPS in Hong Kong, located at the Pacnet datacenter. &lt;br /&gt;
* [http://vps.timway.com/linux_vps.html Timway VPS Hosting] - Quality, non-oversold hosting provider focused on being security conscious and offering a positive client experience.   Centos, Debian, Fedora, OpenSuse and Ubuntu Containers are available.&lt;br /&gt;
* [http://www.vpsfast.us/hong-kong-cloud-server VPSFast] - VPS Provider with good prices in Hong Kong.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Hungary ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://elin.hu/index.php?menu=8&amp;amp;nyelv=hu&amp;amp;cim=Virtualis-szerver Virtual server] OpenVZ server: 2xX5650 Intel Xeon, 32GB RAM, 15.000rpm SAS disks, 100Mbit/s, unlimited bandwith.&lt;br /&gt;
* [https://www.ivirtual.co/vps-hosting/ iVirtual.co ] OpenVZ Master Server: 2x Intel Xeon @ 3.0GHZ, 64 GB ECC Ram, 15k RPM SAS HDD's, 1Gbit/s Network, Unlimited bandwith.&lt;br /&gt;
&lt;br /&gt;
== Iceland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
&lt;br /&gt;
== Ireland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== India ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://cochinwebhost.in/budget-vps-hosting/ Low Cost VPS Hosting] Fast SSD VPS Server for Hosting Solutions at budget prices with 24x7 Technical Support.&lt;br /&gt;
&lt;br /&gt;
* [http://www.datacorporate.in/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
&lt;br /&gt;
*[http://www.fastwebhost.in/vps-hosting.html fastwebhost VPS Hosting] VPS hosting offered by fastwebhost are powered by ''VPS hosting, virtual server hosting and Linux VPS hosting services''. Fully Managed VPS with control panels.&lt;br /&gt;
&lt;br /&gt;
* [http://www.Freaksol.com/ Freaksol VPS Hosting] Self reliant hosted on independent networks &amp;amp; DC low ping to India,No restrictions on file types,Unlimited resources,high ram servers&lt;br /&gt;
&lt;br /&gt;
* [https://www.geniushost.in Genius Host] Fully managed [https://www.geniushost.in SSD Web Hosting] offered by Genius Host are powered by ''OpenVZ'' With LiteSpeed Web Server &amp;amp; Mariadb.&lt;br /&gt;
&lt;br /&gt;
* [http://www.hioxindia.com/virtual-private-server.php VPS Hosting] Reliable and quality VPS Virtual Private Server Hosting&lt;br /&gt;
&lt;br /&gt;
* [https://www.hostnamaste.com HostNamaste] is your high-performance [https://www.hostnamaste.com/openvz-vps.php OpenVZ VPS Hosting] Provider. Get your perfect [https://www.hostnamaste.com/openvz-vps.php VPS Hosting] account today! Available in [https://www.hostnamaste.com/datacenter-losangeles.php Los Angeles], [https://www.hostnamaste.com/datacenter-dallas.php Dallas], [https://www.hostnamaste.com/datacenter-jacksonville.php Jacksonville], USA,  [https://www.hostnamaste.com/datacenter-france.php France], Europe, [https://www.hostnamaste.com/datacenter-mumbai-pune.php Mumbai], India and [https://www.hostnamaste.com/openvz-vps-moscow-russia.php Moscow], Russia.&lt;br /&gt;
&lt;br /&gt;
* [https://www.hostsoch.in/windows-hosting.html HostSoch Windows Hosting] Windows hosting offered by HostSoch are powered by ''Windows 2012, ASP.NET, MVC, IIS, PHP and More''. 99.9% Uptime, 24/7 Dedicated support guaranteed. &lt;br /&gt;
&lt;br /&gt;
* [https://www.miditech.co.in/ MidiTech VPS Hosting] VPS hosting offered by MidiTech are powered by ''VMware, ''. Fully Managed VPS with control panels. &lt;br /&gt;
&lt;br /&gt;
* [http://www.milesweb.com/vps-hosting.php Milesweb VPS Hosting] VPS hosting offered by Milesweb are powered by ''VMware, OpenVZ''. Fully Managed VPS with control panels. &lt;br /&gt;
&lt;br /&gt;
* [https://www.nogics.com/web/vps-hosting/ Nogics Technologies] Instant provisioning of VPS, VPS starts from $5.96/mo. 30+ OS templates.&lt;br /&gt;
&lt;br /&gt;
* [http://overlineindia.net/vpshosting-p-62.html Overline India VPS Hosting] Fully managed cPanel Installed VPS Hosting with 24x7x365 Live Chat Tech support, powered by OpenVZ&lt;br /&gt;
&lt;br /&gt;
* [http://www.prohosterz.com/linux-vps.php ProHosterZ VPS Hosting] Reliable and quality Virtual Dedicated Servers | Virtual Private Servers | XEN VPS | OpenVZ VPS | Virtual Hosting&lt;br /&gt;
&lt;br /&gt;
* [http://pve.proxmox.com/wiki/User:Apmuthu Ap.Muthu] sponsored by [http://www.gnuacademy.org GNUAcademy], [http://www.planettel.com.sg PlaNetTel] and [http://www.sacollege.net S A College] creates OpenVZ Templates for the Open Source Community and provides hosting in datacenters of clients choice or on site.&lt;br /&gt;
&lt;br /&gt;
* [http://www.servers.co.in/vps/vps_hosting.php Server Web Hosting] Offers Fully Managed OpenVZ VPS Web hosting in India/US/UK at affordable and cheap rates with best hardware quality and customer service 24/7/365 days&lt;br /&gt;
&lt;br /&gt;
* [http://vpsbeach.com VpsBeach Managed Hosting] Fully managed cPanel Installed VPS Hosting with 24x7x365 Live Chat Tech support, powered by OpenVZ&lt;br /&gt;
&lt;br /&gt;
* [http://www.vpsfast.us/india-vps VPSFast] - VPS Provider with good prices in India.&lt;br /&gt;
&lt;br /&gt;
* [http://www.vpshostingindia.net/ VPS Hosting India, Fully Managed Server] A Committed Fully Managed VPS Server for Hosting solution in India, Complete Technical Support assistance with commitment of fast, clustered and most supportive DataCenters.&lt;br /&gt;
&lt;br /&gt;
* [http://touchstone.hosting/ Touchstone Solutions Private Limited] High-performance Enterprise VPS Hosting in India. One of the highest performing VPS Servers available with cPanel Installed.&lt;br /&gt;
&lt;br /&gt;
* [http://www.hostitsmart.com/ Host IT Smart] - One of the best VPS Hosting Provider in India with 24X7X365 Customer support.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Iran==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.ehost.ir EHost.ir] - OpenVZ Servers , DUAL XEON Cpus , 12 Gb Ram , 100Mbit Dedicated Connection , SAS HardDisk&lt;br /&gt;
* [http://www.vpsfa.com VPSFa.com] - OpenVZ Servers , DUAL XEON Cpus -  , 24Gb Ram , 1000Mbit Dedicated Connection , SAS HardDisk&lt;br /&gt;
* [https://webramz.com Webramz Host] - With more than 15 years experience in Managed Hosting, Webramz was first vps provider in Iran which used to setup OpenVZ servers. Nowadays we provide wide range of services including CloudLinux based OpenVZ and Managed Vps Servers.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Italy ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
* [http://www.hosting-italia.net hosting italia] - OpenVZ Servers and panel enduser Virtualizor Intel® Core™ i7-920 Quad-Core 48 GB DDR3 RAM - Guaranteed Bandwidth 200 Mbit/s&lt;br /&gt;
* [http://www.vpsfast.us/italy-vps VPSFast] - VPS Provider with good prices in Italy.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Liechtenstein ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
&lt;br /&gt;
== Lithuania ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.cloudlix.com/ CloudLix.com] - Managed and unmanaged OpenVZ virtual servers based on 2.6.32 kernel. Up to 20GHz (Intel SandyBridge) CPU and 10GB RAM. Located in Vilnius and Siauliai.&lt;br /&gt;
* [http://www.databank.lt/ databank.lt] - high-quality professional OpenVZ hosting with cloud computing solutions.&lt;br /&gt;
* [https://www.hostens.com Hostens] - Fast and reliable OpenVZ servers in Lithuania.&lt;br /&gt;
* [https://www.lavavps.lt/ lavavps.lt] - Professional high-quality OpenVZ containers (VPS servers) affordable for everyone. Powerful control panel for VPS management.&lt;br /&gt;
* [https://monovm.com/ monovm.com] - High Quality VPS Hosting Provider&lt;br /&gt;
* [http://www.serveriai.lt/ Serveriai.lt] - Affordable OpenVZ containers on quality HP hardware. Wide choice of virtual dedicated servers up to 8 CPU cores and 8 GB RAM. Full management available. Located in Vilnius.&lt;br /&gt;
* [https://billing.time4vps.eu/?affid=1359 Time4VPS.EU] - Powerful cloud technology based infrastructure will let you build custom virtual machine and pay only for what you really need. Located in Vilnius city.(0.99€/month(2Yr) 512mbRAM, 1TB Traffic// 4.5€/month(2Yr) StorageVps, 1TB, 10TB Traffic)&lt;br /&gt;
* [https://www.vpsnet.lt/en/ VPSnet.lt] - Powerful and high quality servers for a competitive price in Lithuania (Eastern Europe).&lt;br /&gt;
* [http://www.vpsfast.us/lithuania-vps VPSFast] - VPS Provider with good prices in Lithuania.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Latvia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.altnet.lv/ Altnet] - Hosting and colocation services. Any flawor, you name it. &lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
&lt;br /&gt;
* [http://www.vpsfast.us/latvia-vps VPSFast] - VPS Provider with good prices in Latvia.&lt;br /&gt;
&lt;br /&gt;
== Luxembourg ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.vpsfast.us/luxembourg-vps VPSFast] - VPS Provider with good prices in Luxembourg.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Malaysia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.cubiex.com/ Cubiex] - Malaysia Affordable Web Hosting and Domain Name. Affordable Linux VPS Hosting in Malaysia. OpenVZ based, Quad Core Xeon node. cPanel/WHM and DirectAdmin also available.&lt;br /&gt;
* [https://controlvm.com ControlVM] ControlVM Sdn. Bhd. offering OpenVZ VPS in Singapore, Malaysia, USA and Germany.&lt;br /&gt;
* [https://www.yoorshop.fr/hosting-ssd-vps-singapore-asia.php YOORshop SAS] - High performance SSD Linux VPS In Singapore with daily backup included. Starting from €7,49 /month&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Malta ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.a6it.com/ A6iT] - Stable, quality managed OpenVZ VPSs based in Malta.  Redundant network.&lt;br /&gt;
&lt;br /&gt;
== Morocco ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.belsemtech.com/ BelsemTech.CoM] BelsemTech SARL offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from 300 DH. Virtual Private Server (VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://www.hostoweb.com/ HosToWeb] is the only company providing VPS hosting in Morocco Data Center.&lt;br /&gt;
* [http://www.adk-media.com/ ADK Media] provides affordable managed and unmanaged virtual servers based on OpenVZ, Xen Paravirtualization and Xen HVM platforms. 24/7 Technical Support. Distros: Centos, Fedora, Debian, Ubuntu and more.&lt;br /&gt;
* [http://www.naja7host.com/ Naja7Host.CoM] The Naja7host SARL provides affordable VPS hosting using the OpenVZ platform. Running on Full Quality Nodes of up to 8 CPU and 16 GB RAM. . All VPS's come with Real 24/7/365  Technical Support and cPanel free (if option selected  ). Multiple choice of OS 32/64Bits (Centos, fedora, ubuntu, debian .ect ...)&lt;br /&gt;
* [http://www.lehoster.com/ Le Hoster] offers affordable Virtual Private Servers using the OpenVZ and KVM platform. Backed with our amazing customer support.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Netherlands ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.avanpad.com/ Avanpad] offers OpenVZ VPS hosting with 24\7 online support. Customer can request different control panels or templates for installation on his VPS.&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in Netherlands from 1.88EUR/month.&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
* [http://www.Freaksol.com/ FreaKs VPS Hosting] Self reliant hosted on independent networks &amp;amp; DC low ping around the world,No restrictions on file types,Unlimited resources,high ram servers&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [http://www.HostSailor.com/ HostSailor] Number 1 Netherlands Provider HostSailor provides affordable &amp;amp; high quality services such as VPS (XEN, OpenVZ and KVM) Linux or Windows, Dedicated servers, SSL certificates and domain name services.&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides self-managed OpenVZ SSD VPS in Telecity AMS 5, one of the best datacenters located in the Amsterdam area.&lt;br /&gt;
* [https://iniz.com/ INIZ VPS Hosting] INIZ provides affordable VPS Hosting in Amsterdam, Netherlands with high resources at low prices.&lt;br /&gt;
* [https://www.liteserver.nl/ LiteServer] Looking for a quality and affordable VPS in the center of The Netherlands? We provide SSD, Storage and High Bandwidth VPSes, starting at only €16 per year. We operate AS60404.&lt;br /&gt;
* [https://www.mangelot-hosting.nl/ Mangelot Hosting] Mangelot Hosting, A webhosting company located in the Netherlands, offers budget OpenVZ hosting solutions for maximum scalability en performance.&lt;br /&gt;
* [http://www.osbox.nl OsBoX Dutch Network Engineering] Cheap VPS host as low as $1 per month. Very great uptime and a overall good support. Check the website for the server plans.&lt;br /&gt;
* [http://www.signet.nl/ Signet VPS Hosting] - Signet delivers VPS hosting plans based on CentOS or Debian templates, including control-panel Virtualmin.&lt;br /&gt;
* [http://simple-webhosting.eu/ Simple-webhosting.eu] - OpenVZ based web hosting starting from €0.98 per month.&lt;br /&gt;
* [https://www.seedvps.com SeedVPS] Provides Powerful &amp;amp; Reliable OVZ/KVM VPS Hosting in The Netherlands&lt;br /&gt;
* [http://www.touchvps.com/ TouchVPS] is a company who offer Support and Managed Services for OpenVZ Servers ,also offer templates for openvz ready to go with cPanel , DirectAdmin , Plesk , Games, IRC Services, Desktop and many more.&lt;br /&gt;
* [http://www.voipcomplete.com/product-overview/dedicated-vps.html VOIPcomplete] offers dedicated VPS plans based on CentOS including a VPS management interface.&lt;br /&gt;
* [https://www.waveride.at/ Waveride] Waveride, an EDIS company, offers budget full gigabit OpenVZ + solusVM VPS in Austria, USA and the Netherlands&lt;br /&gt;
* [https://undergroundprivate.com/russiaoffshorevps.html  UndergroundPrivate.com] - OpenVZ with highly privacy, offshore , DMCA ignored , high confidence, SolusVM and cPanel, managed and non managed service.&lt;br /&gt;
* [https://www.totallyhosted.nl/ TotallyHosted] OpenVZ based Premium VPS services located in the Netherlands @ Serverius DC.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [http://www.vpsfast.us/netherlands-vps VPSFast] - VPS Provider with good prices in Netherlands.&lt;br /&gt;
&lt;br /&gt;
== Norway ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.vpsfast.us/norway-vps VPSFast] - VPS Provider with good prices in Norway.&lt;br /&gt;
&lt;br /&gt;
== Pakistan ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://vimzaa.com/ Vimzaa] The best hosting in Pakistan.&lt;br /&gt;
&lt;br /&gt;
== Philippines ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.web.com.ph/vps.php Web.com.ph] - provides OpenVZ virtual servers in the Philippines.&lt;br /&gt;
&lt;br /&gt;
== Perú ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.hn.pe/ Hostname] Hostname offers business OpenVZ containers in Perú&lt;br /&gt;
* [http://www.hostingandino.pe/ Hostingandino Lima - Peru] - VPS with OpenVZ in Peru&lt;br /&gt;
* [http://www.hostingplus.pe/ HostingPlus Internet Limitada] - High Performance Vps provider in Peru&lt;br /&gt;
* [https://www.hostingroup.com/ Hostingroup] Web hosting for small businness in Perú.&lt;br /&gt;
* [https://hostingweb.pe/ Hosting Web] The best hosting in PERU.&lt;br /&gt;
* [https://www.inchosting.pe/ HostingINC SAC] OpenVZ virtualization solutions for business in Perú.&lt;br /&gt;
* [https://www.mejorhosting.pe/ Mejor Hosting Perú] Hosting comparison for peruvian hosting providers.&lt;br /&gt;
* [https://webuniversal.pe/ Web Universal] The best hosting in PERU in the World.&lt;br /&gt;
&lt;br /&gt;
== Poland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://hosteam.pl/ HosTeam] offers OpenVZ VPS hosting from their DataCenter in Poland. Customer has choice of all major Linux distros (WARNING!!! restoring your backup is VERY expensive and they charge even if it wasn't restored correctly!), NATIVE IPV6 AVAILABLE!&lt;br /&gt;
&lt;br /&gt;
* [http://ultimahost.pl/ UltimaHost] high grade OpenVZ VPS and FreeBSD jail (DC in Łódź, Poland), brand of statnet.pl, SSD available for more expensive packets, NO IPV6 AVAILABLE (but they can load you tun module)&lt;br /&gt;
&lt;br /&gt;
* [http://budgetvps.pl/ BudgetVPS] very cheap, low end grade OpenVZ VPSes (DC in Gdańsk, Poland), brand of HitMe.pl&lt;br /&gt;
&lt;br /&gt;
* [https://hitme.pl/ HitMe.pl] high grade OpenVZ/Xen PV/Xen HVM VPSes, Virtuozzo (DC in Gdańsk, Poland), NATIVE IPV6 AVAILABLE (/64 on demand for free)!&lt;br /&gt;
&lt;br /&gt;
* [http://www.kr-cpd.pl/oferta/serwery-vps/ KR-CPD] Cracow's Center of Data Processing (DC of course in Cracow, Poland)&lt;br /&gt;
&lt;br /&gt;
* [http://livenet.pl Livenet] cheap, middle/low end OpenVZ VPSes (DC in Łódź, Poland)&lt;br /&gt;
&lt;br /&gt;
* [http://slaskdatacenter.pl/ Śląsk Data Center] high/middle grade OpenVZ VPSes (DC in Silesia province, Poland), SSD available for more expensive packets&lt;br /&gt;
&lt;br /&gt;
* [https://www.ionic.pl/ IONIC.pl] VPS OpenVZ with SolusVM control panel, own DC in Cracow&lt;br /&gt;
&lt;br /&gt;
* [https://microvps.pl/ MicroVPS.pl] Middle And low end OpenVZv7 VPS plans. SSD for regular VPS and HHD for storage plans (up to 1TB)&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Portugal ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.ptservidor.pt/ PTServidor] - OpenVZ virtual servers with free management based in Portugal.&lt;br /&gt;
* [http://www.efeito.net/ Weblevel.pt] - OpenVZ virtual servers based in Portugal.&lt;br /&gt;
* [https://www.webtuga.pt/ WebTuga] - Managed/Unmanaged Virtual Private Servers hosted in a Portuguese Datacenter with lots of extras&lt;br /&gt;
* [https://www.cloudfire.pt/ CloudFire] - OpenVZ VPS at very low prices hosted in Portugal&lt;br /&gt;
* [https://www.linxisp.com/ LINXISP] - High Availability &amp;amp; Performance OpenVZ Containers&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] - Build an OpenVZ VPS in 14 locations WordWide From £2.49&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Romania ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.intovps.com IntoVPS] - offers unmanaged OpenVZ virtual servers based in Romania, Netherlands and USA. A lot of resources for decent prices.&lt;br /&gt;
* [http://www.ename.ro/dedicated.html eName] - managed OpenVZ virtual servers in Bucharest, Romania&lt;br /&gt;
* [http://www.ch-center.com/virtual-servers Ch-center] - unmanaged OpenVZ virtual servers, based in Romania in it's own Data Center&lt;br /&gt;
* [http://www.clouds.ro/servere-virtuale/ Clouds] - OpenVZ virtual servers hosted on premium hardware, in Romania&lt;br /&gt;
* [http://www.HostSailor.com/ HostSailor] HostSailor provides affordable &amp;amp; high quality OpenVZ and KVM servers in Romania&lt;br /&gt;
* [https://www.shape.host/linux-vps/ Linux VPS] - OpenVZ virtual servers, Instant Linux VPS&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Russia ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.internoc24.host Internoc24.HOST] is an international [https://www.www.internoc24.host Offshore VPS ] provider with reliable SSD VPS in Moscow, Russia. Focus ist on high privacy protection so they accept several Cryptocurrencies like Bitcoin, Ethereum and others for anonymous payments.&lt;br /&gt;
* [http://www.ihc.ru/vps.html IHC.RU] - VPS hosting in Moscow, Russia starting at $10/month with good set of precreated templates&lt;br /&gt;
* [http://mchost.ru/services/linux-vps/ McHost.ru] - Linux VDS Hosting from McHost.&lt;br /&gt;
* [http://hosting.agava.ru/vps/ AGAVA] - Linux VPS hosting based on OpenVZ.&lt;br /&gt;
* [http://vdsplanet.ru/ VDSPlanet.ru] - unmanaged VDS/VPS hosting starting at 3.99$ a month. Large variety of OS templates and free ISPmanager Lite control panel. Total automation is our goal.&lt;br /&gt;
* [http://www.demos.ru/service/datacenter/vps.html Demos-Internet] - we offer OpenVZ Virtual Private Server based on Linux.  All VPS come with ISPmanager control panel.&lt;br /&gt;
* [http://www.net.ru/service/net9/ www.net.ru] - OpenVZ virtual private servers.&lt;br /&gt;
* [http://www.eurobyte.ru/ Eurobyte.ru] - Linux VDS Hosting from Eurobyte.&lt;br /&gt;
* [https://undergroundprivate.com/russiaoffshorevps.html  UndergroundPrivate.com] - OpenVZ with highly privacy, offshore , DMCA ignored , high confidence, SolusVM and cPanel, managed and non managed service.&lt;br /&gt;
* [http://www.telekom.ru/service/vps.html Elvis Telekom] - OpenVZ hosting with base and cpanel templates from Elvis Telekom.&lt;br /&gt;
* [http://fastvps.ru/vds/ FastVPS] - OpenVZ hosting, ISPmanager, Hetzner, MayFlower.&lt;br /&gt;
* [https://lepus.su/vps.html Lepus] - OpenVZ hosting, SSD, ISPmanager free, Hetzner.&lt;br /&gt;
* [http://www.hts.ru/vds/ HTS] - OpenVZ hosting, ISPmanager, Linux VPS hosting based on OpenVZ in Moscow.&lt;br /&gt;
* [https://selectel.ru/services/vds/ Selectel] - OpenVZ hosting.&lt;br /&gt;
* [https://galaxydata.ru/root-server/ GalaxyData] - Virtuozzo Containers in Cloud Storage.&lt;br /&gt;
* [http://hosterbox.ru/servers/ Hosterbox.ru] - Managed VPS hosting. Based on OpenVZ + SolusVM + ISPmanager.&lt;br /&gt;
* [https://firstvds.ru FirstVDS.ru] - One of the leading hosting companies providing virtual private servers.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Singapore ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://conceptlane.com/?t=hostingservices#ratesvps ConceptLane Pte Ltd] - OpenVZ VPS on dual octa-core AMD Opterons running Debian Wheezy 7, custom control panel with bandwidth graphs, reboot/reinit and web-based VNC access.&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [http://www.qoxy.com/vps QOXY.com] Affordable and Reliable OpenVZ VPS Hosting in a Singapore Data Center.&lt;br /&gt;
* [http://www.secureax.com/ SecureAX Pte Ltd] - Singapore Premium Internet Solution Provider&lt;br /&gt;
* [http://www.planettel.com.sg PlaNetTel] - Affordable and customised OpenVZ containers across 3 data centers - contact Thomas Festus at +65-66936881. [http://pve.proxmox.com/wiki/User:Apmuthu#Squeeze_based_Templates Sponsors OpenVZ Container Template]s for the Open Source community.&lt;br /&gt;
* [http://www.vpsfast.us/singapore-vps VPSFast] - VPS Provider with good prices in Singapore.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Serbia ==&lt;br /&gt;
* [https://www.skyhosting.rs/en/vps-servers SkyHosting] - Fast Linux OpenVZ VPS SSD Hosting with SolusVM control panel.&lt;br /&gt;
* [https://www.ninet.rs/en/vps-servers NiNet Company] - Linux OpenVZ VPS servers. Well known VPS hosting company from Serbia with their own data center&lt;br /&gt;
* [http://www.suonline.net SuOnline.Net ISP] - Linux OpenVZ VPS servers, Docker enabled !!!&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== South Africa ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.host1plus.com/ Host1Plus] - Local South African servers hosted in Johannesburg. OpenVZ VPS servers starting from $3.00 per month.&lt;br /&gt;
* [http://www.vps.co.za/ VPS.CO.ZA] - South Africa's oldest VPS provider. Local South African servers with SolusVM control panel. OpenVZ, Xen and OnApp Cloud.&lt;br /&gt;
* [http://247hosting.co.za/vpshosting.php 247Hosting] - OpenVZ virtual servers locally in South Africa with SolusVM control panel. cPanel option available!&lt;br /&gt;
* [http://www.SoftDux.co.za/ SoftDux] - OpenVZ virtual servers based America &amp;amp; South Africa. All VPS's come with cPanel or Plesk control panels. XEN VPS's also available.&lt;br /&gt;
* [http://www.clickworks.co.za/ Clickworks] - OpenVZ / Xen VPS servers hosted in RSA. Backed by Solusvm control panel.&lt;br /&gt;
* [http://www.elitehost.co.za/ Elite Host] - OpenVZ virtual servers based in America &amp;amp; South Africa. All VPS's come with cPanel and unlimited bandwidth.&lt;br /&gt;
* [http://www.telasera.com/ Telasera] - OpenVZ VPS servers hosted in South Africa. Supermicro Servers powered by Intel Xeon with 24/7 Support.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Spain ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.actiu.net/pro/ Actiu informatica]&lt;br /&gt;
* [http://www.corpresa.com/servidores-virtuales.html Corpresa Hosting] - Tiene algún proyecto entre manos y un plan de hosting no le hes sufuciente y un servidor dedicado no está dentro de su presupuesto?, una solución de VPS a medida será la que cubrirá todas sus necesidades.&amp;quot;&lt;br /&gt;
* [https://www.datomedia.es Datomedia] - Cloud alta disponibilidad powered by Virtuozzo 6 y Servidores VPS bajo openvz y kvm.&lt;br /&gt;
* [https://www.evidaliahost.com/vps/ EvidaliaHosting] - Servidores VPS totalmente configurados con panel de gestión Plesk 12.5, garantía de devolución de 30 días y posibilidad de discos SSD.&lt;br /&gt;
* [https://www.first2host.co.uk/ First2Host] First2Host provides Virtuozzo OpenVZ servers in 14 locations around the world. You choose how many vCores you require, How much Ram to deploy, Which OS you use and the connection speed together with any additional IPs you require. Free cPanel licenses on NVMe, SSD and SATA Servers&lt;br /&gt;
* [https://ginernet.com/vps-ssd.php GINERNET] - Servidores VPS alojados en España desde 1.99€/mes.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Sweden ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.admax.se/vps/ Admax] - Admax offers enterprise grade virtual servers with great pricing. Custom control panel, API, remote access &amp;amp; more.&lt;br /&gt;
* [https://www.acon.se/vps Acon VPS Server] - VPS Server and Dedicated server provider in Sweden.&lt;br /&gt;
* [https://www.glesys.com/vps.php GleSYS] - VPS Provider with a great control panel and good prices&lt;br /&gt;
* [https://hosthatch.com HostHatch] provides the highest quality SSD VPS in Stockholm, Sweden. Based on completely pure SSD in RAID-10 and delivering extremely high network &amp;amp; hardware performance along with reliability.&lt;br /&gt;
* [https://www.nametyper.com NameTyper] - VPS and Shared hosting provider. Customize your own OpenVZ Container with 1-12 cores running on SSD and ECC RAM. &lt;br /&gt;
* [https://virtualcenter.se VirtualCenter] - The first Cloud provider with SSD VPS in Sweden. Offer enterprise class hardware and network infrastructure&lt;br /&gt;
* [http://www.vpsfast.us/sweden-vps VPSFast] - VPS Provider with good prices in Sweden.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Switzerland ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
* [http://www.vpsfast.us/switzerland-vps VPSFast] - VPS Provider with good prices in Switzerland.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
&lt;br /&gt;
== Tanzania==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.aptus.co.tz/ Aptus Solutions] - OpenVZ / SolusVM VPS Servers located in Dar es Salaam - 100meg to TIX. CentOS &amp;amp; Ubuntu.&lt;br /&gt;
&lt;br /&gt;
== UK ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.34sp.com/ 34SP.com] - We're a UK based web hosting company, bridging the gap between sophisticated hosting solutions &amp;amp; affordable prices&lt;br /&gt;
* [http://www.AceShells.com/ AceShells] - Fast, stable, high quality UK based virtual private servers from just £5 a month, operating since 2001&lt;br /&gt;
* [http://www.AtlanticServers.com/ Atlantic Servers] - Affordable VPS, stable, high quality VPS, UK based Data Centre&lt;br /&gt;
* [https://awebhosting.uk/ AWebHosting.uk] VPS hosting offered by [https://awebsolutions.uk/ AWEBSOLUTIONS LIMITED] reliable UK hosting provider located in London, UK and Hosted in UK DataCentre.* [http://www.BargainVPS.co.uk/ BargainVPS] - UK / US / EU Instant setup VPS - We have some great Linux &amp;amp; Windows Bargain VPS packages on offer for you here all available Fully Managed.&lt;br /&gt;
* [http://www.cheapvps.co.uk/ CheapVPS] - CheapVPS provide cheap, UK based OpenVZ VPS servers. Hosted on high end hardware, in a top UK datacenter backed up with 24/7/365 support. Choice from a wide range of Linux distros. OpenVZ VPS managed with SolusVM.&lt;br /&gt;
* [http://www.chilliserver.com/ Chilliserver] - Affordable plans starting from just £3.99, not oversold. RHEL6 Kernel with VSwap, TUN/TAP/FUSE and ACL support enabled. SolusVM control panel with custom snapshot system and rescue system. Based in a European data Centre with UK based support.&lt;br /&gt;
* [http://www.chvps.com/ CHVPS] - Switzerland Based VPS, Cheap Pricing with solusVM control panel.&lt;br /&gt;
* [http://www.cislondon.co.uk/virtual-private-servers/ Commercial Internet Solutions] - CIS provides premium hosting at competitive rates, focused on Small Businesses within the M25 orbital. Hosting is on Dual Quad core Intel Xeon supermicro servers in Tier 4 datacenters around London.&lt;br /&gt;
* [http://www.datacorporate.co.uk/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [http://domvps.com/ domVPS] - OpenVZ Virtual Servers in the USA, Germany, France &amp;amp; the Netherlands at a low cost.&lt;br /&gt;
* [http://www.DubHosting.co.uk/ DubHosting] - DubHosting started in 2004 has been providing cost effective hosting to clients world wide. Fully managed OpenVZ servers based in Europe &amp;amp; US are one of their many strong points. They can provide you with a dedicated server and install openvz allowing you to sell your own vps servers. Their servers are located at UKGrid in Manchester with 24/7/365 support&lt;br /&gt;
* [http://www.europhase.net/virtual-private-servers/ Europhase UK Limited, UK VPS] - OpenVZ VPS Hosting, Virtual Dedicated Servers, UK VPS hosted at multiple UK datacentres from £4.99&lt;br /&gt;
* [https://farbyte.uk/vps Farbyte VPS] - UK based OpenVZ VPS and shared web hosting services&lt;br /&gt;
* [http://www.fdqwholesale.co.uk FDQ Wholesale] - UK based hosting services&lt;br /&gt;
* [http://www.gemvps.net/ GemVPS.NET] - UK (Manchester) Based Company, OpenVZ Virtual Servers in the UK &amp;amp; France on Fast nodes.&lt;br /&gt;
* [http://www.hadrill.org.uk Hadrill Online] - Fully managed hosting with unlimited bandwidth. Quotes available through contact form.&lt;br /&gt;
* [http://www.infrenion.com./uk_vps_hosting.html Infrenion Networks UK] Cheap, economical and reliable web hosting solutions, VPS based on the openVZ platform. You can host any YouTube Clone scripts with free FFMPEG setup on our vps servers. Also offers with a choice of selecting DataCenter.&lt;br /&gt;
* [https://www.laws-hosting.co.uk/vps-hosting.php Laws Web Hosting] - Laws Web Hosting offers OpenVZ VPS Hosting with packages starting from £5.50/m that will cater for anyone. We have OpenVZ VPS hosting solutions, and come with moderate DDoS protection.&lt;br /&gt;
* [http://www.letstalkdigital.com/index.php?option=com_content&amp;amp;view=article&amp;amp;id=73&amp;amp;Itemid=65 LetsTalkDigital VPS Hosting] - LetsTalkDigital.com offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from $14.99. Virtual Private Server(VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://www.meteorvps.com/ MeteorVPS] - Professional, Non-Oversold amazing VPS plans pretty cheap using SolusVM management, range from 512MB -&amp;gt; 16GB&lt;br /&gt;
* [http://www.minivps.co.uk miniVPS] miniVPS offers VPS hosting solutions with nodes located in UK, utilising openvz/solusvm with future locations of USA and UK. &lt;br /&gt;
* [https://www.first2host.co.uk First2Host Cheap VPS] - Intel Xeon E5-2630v3 OpenVZ VPS Servers. Don't be defined by a pre-made VPS plan. Create your own VPS Plan by assigning the resources that you require. SATA, SSD or NVMe storage 100 MBPS, 250 MBPS, 500 MBPS, 1GBPS speeds and free cPanel licenses.&lt;br /&gt;
* [http://www.phurix.co.uk/ Phurix] - A UK based web solutions company that provides you with reliable hosting at extremely affordable prices, VPS server virtualization using OpenVZ.&lt;br /&gt;
* [http://www.qualityservers.co.uk Quality Servers] - Affordable OpenVZ virtual servers based in the UK and USA. Choice of control panels and management options.&lt;br /&gt;
* [http://www.rackburst.net/ Rackburst] - UK SSD VPS Hosting with fast UK-based Live Support available from £1.49 per month.&lt;br /&gt;
* [http://www.rshosting.co.uk/vps.html RSHosting UK] - Offering the most secure, reliable, stable and fast UK VPS Web Hosting based on OpenVZ architecture. Our Virtual Dedicated Servers are physically hosted on powerfull Quad Core servers located in multiple UK datacentres.&lt;br /&gt;
* [http://www.sharkserve.rs SharkServers] - Low Cost OpenVZ virtual servers in the UK. Choice of control panels and management options. Own Datacentre.&lt;br /&gt;
* [https://www.ukhost4u.com/ UKHost4u] - A leading provider of VPS solutions for over 19 years!&lt;br /&gt;
* [http://www.vpsfast.us/united-kingdom-vps VPSFast] - VPS Provider with good prices in UK.&lt;br /&gt;
* [http://www.vpsmachine.co.uk/ vpsMachine] Quality openvz hosting platform with a large choice of customer OS templates.&lt;br /&gt;
* [https://www.wantete.com/hosting/virtual-private-servers/ WANTETE] - OpenVZ virtual servers, Starting from  €2,99/month RAID 10 SSD,  Unlimited traffic. A high performance VPS hosting&lt;br /&gt;
* [https://www.webhostuk.co.uk/vps-hosting.html WebHostUK LTD] - Offers Cheap yet Best UK VPS Web Hosting working on OpenVZ Platform.We offers fully Managed UK VPS with true 24/7/365 days support.All our Servers are located in UK London DC.&lt;br /&gt;
* [http://www.webhostinguk.com/vps/vps-hosting.html Web Hosting UK] - Fully managed OpenVZ VPS Hosting offered on fast and reliable and affordable servers in UK &amp;amp; European datacenter with 24x7x365 days lightning fast support.&lt;br /&gt;
* [http://www.weycrest.co.uk/vps-hosting.php Weycrest VPS] - Low Cost, Stable OpenVZ and Parallels' Virtuozzo Virtual Private Server solutions. London UK Hosted at Coreix with a choice of operating systems, and root and control panel options.&lt;br /&gt;
* [http://www.xilo.net/virtual_private_servers-vps/ XILO] - UK-based hosting with UK-based support. VPS services offered with a choice of cPanel, Webmin and other useful applications, VoIP, SIP, VPN to name a few.&lt;br /&gt;
* [http://www.zxvps.co.uk/ ZxVPS VPS Hosting] - Quality, non-oversold VPS based on the openVZ platform, using SolusVM management panel, VPS from 128mb - 2gb, cpanel, direct admin, kloxo, etc.&lt;br /&gt;
&lt;br /&gt;
== Ukraine ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://ekvia.com/ Ekvia] - VDS/VPS based on OpenVZ. Free trial 14 days. Domain registration for VDS/VPS.&lt;br /&gt;
* [http://www.gelihost.com/ Geliar Hosting Solutions] - Fast virtual dedicated servers based on OpenVZ. Geliar Hosting Solutions offering many control panels and other useful services.&lt;br /&gt;
* [http://www.hostpro.ua/ Hostpro.ua] - Full managed OpenVZ servers.&lt;br /&gt;
* [http://www.vpsfast.us/ukraine-vps VPSFast] - VPS Provider with good prices in Ukraine.&lt;br /&gt;
&lt;br /&gt;
== USA ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://www.a2hosting.com A2 Hosting] is your high-performance [http://a2hosting.com/openvz-vps-hosting OpenVZ VPS Hosting] provider. Design your perfect [http://a2hosting.com/vps-hosting VPS Hosting] account today! Featuring SwiftServers and SSDs with page load speeds up to 300% faster compared to standard drives.&lt;br /&gt;
* [http://www.afterburst.com Afterburst] (Previously FanaticalVPS): affordable unmetered, unmanaged VPS servers in NY.&lt;br /&gt;
* [https://www.asurahosting.com/ AsuraHosting] offers powerful, reliable, and simple OpenVZ VPS to clients. AsuraHosting has a dedicated support team, and quality hosting; Pricing starts at just $5/month!&lt;br /&gt;
* [http://beyondhosting.net BeyondHosting.net] High Performance OpenVZ Virtual Private Servers (VPS)  Tier 1 US Datacenter.&lt;br /&gt;
* [http://buyvm.net BuyVM.net] DDoS Protection, three datacenter locations, Stallion control panel. Affordable quality VPS hosting since 2010!&lt;br /&gt;
* [https://www.binarycpu.com Binary Computer Solutions] has provided OpenVZ based Virtual Private Server hosting for over 5 years.  Network outages are a thing of the past, and oversold services are never heard of here.  Built on solid technology, with infrastructure to match - Binary Computer Solutions will give you hosting you need, without the cost others ask for.  Starting at $30.00/mo.&lt;br /&gt;
* [http://www.bodhost.com/ Bodhost.com] Fast, Reliable and secure web hosting service with 24*7 free customer service.&lt;br /&gt;
* [http://www.buildyourvps.com/ BuildYourVPS.com] mix ‘n’ match your VPS; choose only the bandwidth, RAM, disk capacity, type of IP connection, level server redundancy, and the support/monitoring you want. [http://www.buildyourvps.com/ BuildYourVPS] is the 1st to offer you a highly-customized VPS solution, without making you pay for unused extra features.&lt;br /&gt;
* [https://www.budgetvm.com/openvz-linux-vps.php BudgetVM.com] Each server includes our industry-leading SLA, DDoS protection, 200Gbps networks and 7 * 24-hour customer support.&lt;br /&gt;
* [http://www.byethost.com Byethost.com] offers OpenVZ based VPS Hosting as its main VPS solution, with the hypervm panel. Centos, Debian, Fedora, OpenSuse and Ubuntu Containers are available.&lt;br /&gt;
* [http://cheaperasp.net CheaperASP.Net] provides Quality web hosting on the OpenVZ platform. You also help you get best options at [http://cheaperasp.net/godaddy-1-hosting-free-domain-promo/ affordable] cost.&lt;br /&gt;
* [http://www.chhost.net/vps.htm CH Hosting VPS Hosting] CH Hosting or chhost.net offers OpenVZ based VPS Hosting. 24/7 Support. Upgrade/Downgrade your plan as needed on-the-fly without the risk of downtime. Since 2006. Non-Oversell&lt;br /&gt;
* [http://www.cinfu.com/vps/ Cinfu] offers budget, unmanaged, unmetered, OpenVZ based VPS servers in USA from 1.88EUR/month.&lt;br /&gt;
* [http://www.cloudshards.com Cloud Shards] High Performance, reliable, stable and affordable OpenVZ Virtual Private Servers (VPS) in data centers across the USA.&lt;br /&gt;
* [https://cloudgearhosting.com CloudGear Hosting] - offers OpenVZ hosting in 4 locations across the USA. Including free DDoS Protection and free SSL with cPanel.&lt;br /&gt;
* [http://www.datacorporate.com/ DataCorporate] OpenVZ cheap and fast, clustered solution on our own datacenter, instanst signup and install, over 10 popular templates.&lt;br /&gt;
* [https://www.delimiter.com/storage-vps/ Delimiter] Cheap Storage VPS Hosting 500GB &amp;amp; Up High Storage Backup VPS Hosting From just $7/Month&lt;br /&gt;
* [https://www.cheapdomainnamesdot.com Domain Host SSL] provides Reliable web hosting with OpenVZ platform Since 2003, Located New York city, Atlanta, Los Angeles. &lt;br /&gt;
* [http://www.DubHosting.com/ DubHosting] - DubHosting started in 2004 has been providing cost effective hosting to clients world wide. Fully managed OpenVZ servers based in Europe &amp;amp; US are one of their many strong points. They can provide you with a dedicated server and install openvz allowing you to sell your own vps servers.&lt;br /&gt;
* [https://www.edis.at/ EDIS] EDIS offers business OpenVZ containers in Austria, Iceland, Liechtenstein, Switzerland and USA (as well as other virtualization technologies in 20 countries worldwiede)&lt;br /&gt;
* [http://www.ethernetservers.com/ Ethernet Servers] A leading provider of OpenVZ Virtual Servers in Los Angeles, Miami and Buffalo with SolusVM.&lt;br /&gt;
* [http://www.evolucix.com/ Evolucix.com] Evolucix offers state of the art, professional, and reliable OpenVZ VPS solutions on top-notch hardware while providing quality support.&lt;br /&gt;
* [http://www.evolvedservers.com Evolvedservers.com] Openvz based vps servers. Hosted in Michigan, USA. 24/7 Support. Hosted in tier-3 and tier-4 datacenter's with multiple redundancies.&lt;br /&gt;
* [http://fastwebhost.com/vps-hosting.html Fastwebhost]: affordable cloud VPS servers using OpenVZ. &lt;br /&gt;
* [http://www.fliphost.net Fliphost.net]: Powerful, affordable instant setup VPS systems. Servers based in Phoenix Az with another location coming soon.&lt;br /&gt;
* [http://www.frontrangehosting.com Front Range Hosting]: SSD Cached KVM &amp;amp; OpenVZ VPS Hosting Prices Start at 2.00/mo, located in Colorado Springs, Colorado.&lt;br /&gt;
* [http://glesys.se GleSYS] is a hosting company specialized in serverhosting. Also offering VPS hosting mainly based on OpenVZ. GleSYS has provided access to server and Cisco hardware for developers from OpenVZ to find problem with VLAN implementation.&lt;br /&gt;
* [http://goodealhosting.com/ GOODEALHOSTING.com] Quality Hosting Solutions! Provides affordable unmanaged/managed VPS based on OpenVZ! start from $10.00, real 24/7 support.&lt;br /&gt;
* [http://gothost.net GotHost.net] Providing OpenVZ based VPS Hosting with SolusVM. All nodes are Quad Core Xeon with RAID-10 for speed and redundancy. Budget plans starting at $7.99.&lt;br /&gt;
* [http://www.greengeeks.com/ GreenGeeks Hosting] VPS Hosting. Dual Intel Xeon 64-Bit CPU's, DDR3 RAM, RAID-10 SSD Storage Arrays. 24/7 Support. cPanel/WHM + more!&lt;br /&gt;
* [http://hostarmor.com HostArmor™] - is best known for low-cost and reliable shared hosting and dedicated servers. Recently the company expanded to offer OpenVZ virtual server plans at 8 worldwide locations, five in the U.S., one in Germany, one in France, and one in the Netherlands. VPS plans start at $13.99/month.&lt;br /&gt;
* [http://www.host4geeks.com Host4Geeks] - Host4Geeks is a premium Fully Managed VPS provider with datacenters across 2 locations in US and in UK. All servers offer a free cPanel license.&lt;br /&gt;
* [http://www.host1plus.com Host1Plus] - OpenVZ based virtual servers in Chicago and Los Angeles. VPS plans start at $2.00 per month.&lt;br /&gt;
* [http://www.hostavps.com HostAVPS] - Providing Fully Managed VPS's on both the West &amp;amp; East Coast.&lt;br /&gt;
* [https://www.hostcapitol.com Host Capitol] offers fast and reliable web hosting services, including OpenVZ VPS Hosting, to clients ranging from small businesses to corporations. Located in Piscataway, New Jersey.&lt;br /&gt;
* [http://www.hostcolor.com Host Color] - OpenVZ based virtual servers hosted in a Tier 4 class data center based out of South Bend, Indiana. Juniper managed, fully-redundant network with uplinks to Level 3, Cogent and Internap.&lt;br /&gt;
* [https://www.hostgalaxy.com HostGalaxy] - OpenVZ based virtual servers. The fastest hosting in the Galaxy!&lt;br /&gt;
* [http://www.hostigation.com Hostigation] - High resource unmanage VPS hosting solutions.&lt;br /&gt;
* [http://www.hostingrails.com Hosting Rails] offers Rails-targeted OpenVZ VPS Hosting and updated Rails-ready OS images.&lt;br /&gt;
* [https://hostmada.com/ HostMada] - Cheap and budget Linux VPS with HDD storage &amp;amp; high RAM for high-load applications! Affordable, reliable, high performance VPS hosting!&lt;br /&gt;
* [http://www.hostmist.com Host Mist] features budget OpenVZ VPS hosting from four major cities across the US.&lt;br /&gt;
* [http://www.hostrush.com HostRush] Self managed, ssd vps for business and non business. &lt;br /&gt;
* [http://www.dailyhosting.net hostoople] We offer OpenVZ VPS hosting from Dallas Texas, Starting at $29.95/month &lt;br /&gt;
* [https://hostus.us HostUS] provides unmanaged and managed OpenVZ VPS in Atlanta, Dallas and Los Angeles with custom control panel. A large variety of Linux distros are available. Enjoy 15% off with coupon VPS15OFF.&lt;br /&gt;
* [https://www.hostwinds.com Hostwinds] Affordable managed/unmanaged VPS Solutions.&lt;br /&gt;
* [http://hostsia.com Hostsia] With HOSTSIA Web services, you can get an OpenVZ VPS for only $15.00/mo. Each OpenVZ VPS includes multiple free-of-charge bonuses and offers a 99.9% uptime guarantee. You can also use our charge-free Hepsia CP, which is available with each OS – it permits you to host an unmetered number of domains and comprises heaps of handy tools, which will help you better manage your site and your VPS web hosting account.&lt;br /&gt;
* [http://www.infrenion.com./vps_hosting.html Infrenion Networks] Cheap, reliable and secure VPS hosting solutions, based on the openVZ platform. You can host any YouTube Clone scripts with enhanced support quality round the clock.&lt;br /&gt;
* [http://iniz.com/ INIZ VPS Hosting] INIZ provides affordable VPS Hosting in Los Angeles &amp;amp; New York with high resources at low prices.&lt;br /&gt;
* [https://www.interserver.net/ InterServer Web Hosting] Fast &amp;amp; Reliable VPS - 24x7 Support. 99.9% Up-time, Hosting Since 1999!.&lt;br /&gt;
* [http://www.joinvps.com JoinVPS.com] ISPmanager OpenVZ based VPS hosting. 24/7 Technical Support. Free ISPmanager control panel.&lt;br /&gt;
* [http://www.lovevps.com LoveVPS] Budget VPS provider starting at $5.99/month located in the US with Xeon nodes.&lt;br /&gt;
* [http://www.letstalkdigital.com/index.php?option=com_content&amp;amp;view=article&amp;amp;id=73&amp;amp;Itemid=65 LetsTalkDigital VPS Hosting] LetsTalkDigital.com offers both OpenVZ and XEN™ based VPS technologies. Cheap Linux and Windows VPS Hosting, start from $14.99 Virtual Private Server(VPS) hosting is for those who want the control and flexibility of a dedicated server at a much lower cost. All VPS packages come with a web hosting control panel option such as cPanel™, full root user access and all the features listed below, with 24/7 customer service.&lt;br /&gt;
* [http://lylix.net LYLIX] offers affordable VPS hosting with a choice of eight different Linux distributions, dedicated VPS hosting, and specializes in Asterisk/VOIP based hosting including Trixbox, AsteriskNow, Elastix, and PBX-in-a-Flash.  Popular choice for unmanaged IP-PBX services; entire infrastructure built on a High-availability (HA) network across three regional NOCs.&lt;br /&gt;
* [http://www.micfo.com Micfo.com] offers VPS hosting services for both Linux VPS hosting and Window VPS hosting on affordable price combined with world-class 24x7x365 support.&lt;br /&gt;
* [http://www.neostreams.info/neoshop/cart.php?gid=9 nEo Stream Services] Offer's Top Quality OpenVZ Servers, Starting at $18.95 per month! SolusVM Control panel , 7 day Money Back Guarantee , 24x7 Professional Support.&lt;br /&gt;
* [http://pogiweb.com/vps/ PogiWeb LLC] Instant and free setup. Includes SolusVM control panel and free level 1 support during first month.&lt;br /&gt;
* [http://www.theserverexperts.com TheServerExperts.com] TheServerExperts VPS line is the ideal solution for clients who require the control of a dedicated server matched with the affordability and simplicity of a traditional shared hosting account.&lt;br /&gt;
* [http://thenynoc.com New York NOC] affordable Linux VPS hosting out of New York and Chicago. Plans as low as $5 a month and are backed by a redundant infrastructure and 24/7 support.&lt;br /&gt;
* [http://railsplayground.com RailsPlayground.com] Ruby on Rails VPS with ready to go Rails images with the LxAdmin control panel&lt;br /&gt;
* [http://www.raidlogic.net RaidLogic.NET] RaidLogic.NET offers OpenVZ based Linux VPS out of multiple facilities across the United States, including Miami, Los Angeles, and Chicago. Starting as low as $3.95/month.&lt;br /&gt;
* [http://www.ramhost.us RAM Host] RAM Host offers OpenVZ based Linux VPS out of multiple facilities across the United States, including Atlanta, Kansas City, and Phoenix.&lt;br /&gt;
* [http://www.reconhosting.com Recon Hosting] Recon Hosting offers affordable OpenVZ VPS solutions where you get Quality Hosting at a Fraction of the price. Instant setup with the latest Operating System templates including cPanel.&lt;br /&gt;
* [http://www.rokabear.com Rokabear] Rokabear offers OpenVZ Linux VPS, Dedicated Server, and Colocation. All Hardware setup in High Availability mode including raided drives and redudnant power and network connections. With multiple upstream providers, Rokabear's connectivity is fast and reliable! Rokabear supports LAMP, Openvpn, and Asterisk configurations. VPSes start at $7.99!&lt;br /&gt;
* [https://www.rosehosting.com RoseHosting] offers OpenVZ Linux virtual servers equipped with Enterprise Grade SSD drives. All hosting plans are fully-managed with FREE 24/7 support, FREE website migration, FREE weekly backups and FREE server monitoring included.&lt;br /&gt;
* [http://www.rshosting.com/vps.html RSHosting.com] RSHosting offers the most secure, reliable and stable VPS - Virtual Private Servers based on OpenVZ architecture, powered by the most professional and qualified 24/7 lightening fast support.&lt;br /&gt;
* [http://www.servercomplete.com Server Complete, LLC] Server Complete offers OpenVZ based Linux VPS out of multiple facilities across the United States, including Atlanta, Dallas, and Chicago.&lt;br /&gt;
* [http://www.servergrove.com ServerGrove] uses OpenVZ as the main virtualization platform for its state of the art VPS hosting services.&lt;br /&gt;
* [http://serverswarm.com ServerSwarm] provides stable, affordable, high performance OpenVZ virtual private servers.&lt;br /&gt;
* [http://Sharktech.net Sharktech] provides custom OpenVZ solutions DDOS-protected up to 100Gbps.&lt;br /&gt;
* [http://www.silverrack.com/ SilverRack VPS Hosting] - SilverRack provides affordable VPS hosting using the OpenVZ platform.&lt;br /&gt;
* [http://www.soficol.com/ Soficol] Offers Enterprise OpenVZ based VPS, hosted on a clustered infrastructure and redundant network. Easy to use user management and instant setup.&lt;br /&gt;
* [http://www.spectrohost.com/ Spectro Host] - Offers performance VPS Servers running openvz. Always the most resources and never over committing OpenVZ nodes.&lt;br /&gt;
* [http://www.budgetvds.com/ BudgetVDS] - Offers VPS Servers running openvz we've been in business for 2 years now using openvz platform.&lt;br /&gt;
* [http://www.syera.net/ Syera Networks] Unmetered VPS From $18.88/M, 24/7 Support, OpenVZ/HyperVM, Instant Setup!, Free 1Gbps Upgrade with Coupon: syera1G&lt;br /&gt;
* [http://www.synapseglobal.com/voip_vps.html SynapseGlobal.com] Elastix, Trixbox, PBX in a Flash and Asterisk VPS - OpenVZ based Asterisk VOIP servers with 14 Tier 1 premium bandwidth providers.&lt;br /&gt;
* [http://www.tektonic.net TekTonic] provides VPS hosting services using both Virtuozzo and OpenVZ technology.&lt;br /&gt;
* [http://www.tigerservers.com/ TigerServers] - Provides affordable managed VPS based on OpenVZ. Servers located in Chicago, Illinois&lt;br /&gt;
* [http://www.tocici.com/ TOCICI VPS Hosting Services] Since 1995 TOCICI has offered web hosting services, with 24/7 support commitments and a strong non-oversell policy. Our purpose-built hosting infrastructure has serviced many organizations for over a decade. Offering OpenVZ VPS, data center colocation, and equipment leasing options, visit our website for prices and more details.&lt;br /&gt;
* [http://www.ultravps.com UltraVPS] UltraVPS offers managed and unmanaged OpenVZ-based VPS hosting utilizing dual CPU hardware nodes with redundant, high-performance RAID-10 storage.  UltraVPS offers VPS servers with many popular control panel options and turn-key applications.&lt;br /&gt;
* [http://www.vpsfx.com VPSFX] VPSFX.com offers OpenVZ VPS, data center colocation, and dedicated servers.&lt;br /&gt;
* [http://www.Webhost.US.Com/linuxvps.html US Web Hosting]  Webhost.US.Com offers powerful GUI based VPS management system with full OpenVZ, Xen Paravirtualization and Xen HVM support.All our Virtual Private servers are fully Managed with 99.9% uptime and 24/7 top notch support.&lt;br /&gt;
* [http://unixservice.com Unixservice/unxsVZ] Low cost OpenVZ ONLY hosting we specialize in Mail, DNS and RADIUS multiple container hosting. At the world famous Market St. San Jose, CA Silicon Valley datacenter. Ping times from your containers to local yahoo and google sites guaranteed single digit ms times. Your containers are backed up at 4 local and 2 remote locations. Contact supportgrp at unixservice dot com.&lt;br /&gt;
* [http://www.vogenic.xyz Vogenic: Cloud Services] If you are searching for an upgrade to the shared hosting service, then you should consider our OpenVZ or KVM VPS hosting services.&lt;br /&gt;
* [http://vpslink.com VPSLink.com] provides virtual private server hosting on the OpenVZ platform.&lt;br /&gt;
* [http://www.vpsspeed.com/ VPSSpeed] - VPSSpeed provides unmanaged OpenVZ based VPS hosting with over 50 OS Templates, real 24/7/365 support and fast US servers. No overselling.&lt;br /&gt;
* [http://vpsnoc.com VPSNOC] offers unmanaged vps hosting based in the USA utilizing OpenVZ hypervisor behind an in-house VPS control panel.&lt;br /&gt;
* [https://www.waveride.at/ Waveride] Waveride, an EDIS company, offers budget full gigabit OpenVZ + solusVM VPS in Austria, USA and the Netherlands&lt;br /&gt;
* [http://www.webappcabaret.com WebAppCabaret] provides VPS solutions for hosting applications. We offer OpenVZ with cPanel or Plesk for web site management; and NGASI Universal App Manager for deploying and managing JAVA and RAILS applications.&lt;br /&gt;
* [http://www.wirenine.com/vps-hosting/ WireNine.com VPS Hosting] Low cost fully managed and unmanaged OpenVZ based VPS Hosting with SAS 15k enterprise drives in high-performance RAID-10 storage.&lt;br /&gt;
* [http://www.zoidial.com/ Zoidial Hosting and VPS] - offers VPS and Virtual Dedicated Server solutions utilizing OpenVZ.  In business since 1998, Zoidial Incorporated is a small hosting provider focused on being security conscious, proactive, and offering a positive client experience.&lt;br /&gt;
* [http://zensix.com ZenSix Hosting] Cheap OpenVZ based VPS accounts with the SolusVM control panel.&lt;br /&gt;
* [http://zigothosting.com Zigot Hosting] Affordable and Reliable OpenVZ based VPS's within the SolusVM control panel.&lt;br /&gt;
* [http://www.vpsfast.us/usa-vps VPSFast] - VPS Provider with good prices in USA (Los Angeles, New Jersey, New York, Seattle, Washington, Dallas, Chicago, Atlanta, Ashburn, Miami, Piscataway).&lt;br /&gt;
* [http://www.xarixlite.com Xarix Lite] - offers OpenVZ hosting in Charlotte, SC. OpenVZ plans starting at $2.50/mo&lt;br /&gt;
* [https://www.yourlasthost.com YourLastHost] is your high-performance [https://www.yourlasthost.com/openvz-vps.php OpenVZ VPS Hosting] Provider. Get your perfect [https://www.yourlasthost.com/openvz-vps.php VPS Hosting] account today! Available in Los Angeles, Dallas, Jacksonville, USA and France, Europe.&lt;br /&gt;
&lt;br /&gt;
== Vietnam ==&lt;br /&gt;
&amp;lt;!-- @@@@@ Keep the list of providers alphabetically sorted, DO NOT insert your record on top. @@@@@ --&amp;gt;&lt;br /&gt;
* [http://appvz.com AppVZ.com] (www.appvz.com) is a leading web solution provider offering domain, hosting, reseller and VPS hosting packages from 2009. Just recently, the company has offered discount packages where customers can avail managed and un-managed VPS for only $9.5 per month.&lt;br /&gt;
&lt;br /&gt;
= Hosting providers comparison =&lt;br /&gt;
&lt;br /&gt;
It is hard to compare all virtual private server offers provided by different hosting providers.&lt;br /&gt;
Sites below can help you with it.&lt;br /&gt;
&lt;br /&gt;
* [https://www.cheapvpsservers.co.uk/ Cheap VPS Servers]&lt;br /&gt;
* [https://www.hostingmyths.com/ Hosting Myths]&lt;br /&gt;
* [https://cheapwebhosting.review/ VPS servers comparison]&lt;br /&gt;
* [https://reviewsquirrel.com/web-hosting-reviews/ Review Squirrel]&lt;br /&gt;
* [http://lowendstock.com/ Lowendstock]&lt;br /&gt;
* [https://www.websitehostingrating.com/ Best Web Hosting Services]&lt;br /&gt;
* [http://serverbear.com/compare?Sort=RAM&amp;amp;Order=asc&amp;amp;Server+Type=VPS&amp;amp;Monthly+Cost=-&amp;amp;HDD=-&amp;amp;RAM=-&amp;amp;Virtualization=OpenVZ Serverbear]&lt;br /&gt;
* [https://www.comparethehosts.com/vps-web-hosting.htm VPS Web Hosting Reviews]&lt;br /&gt;
* [https://thishosting.rocks/best-cheap-managed-vps/ ThisHosting.Rocks - Managed VPS Providers Comparison]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
http://vpscomp.com&lt;br /&gt;
http://reviewsignal.com/webhosting/compare/&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= See also =&lt;br /&gt;
&lt;br /&gt;
* [[Partners]]&lt;br /&gt;
* [[Download mirrors]]&lt;br /&gt;
* [[VPS vs Dedicated]]&lt;/div&gt;</summary>
		<author><name>Vvs</name></author>
		
	</entry>
</feed>