<?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=Unixservice</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=Unixservice"/>
	<link rel="alternate" type="text/html" href="https://wiki.openvz.org/Special:Contributions/Unixservice"/>
	<updated>2026-08-14T05:39:53Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.31.1</generator>
	<entry>
		<id>https://wiki.openvz.org/index.php?title=Ploop/Getting_started&amp;diff=16474</id>
		<title>Ploop/Getting started</title>
		<link rel="alternate" type="text/html" href="https://wiki.openvz.org/index.php?title=Ploop/Getting_started&amp;diff=16474"/>
		<updated>2015-05-17T16:48:01Z</updated>

		<summary type="html">&lt;p&gt;Unixservice: /* Converting an existing CT */  added section about removing old container files that are not needed anymore&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This article describes how to use container-in-a-file technology aka [[ploop]]&lt;br /&gt;
&lt;br /&gt;
== Requirements ==&lt;br /&gt;
&lt;br /&gt;
The following is required for ploop to work:&lt;br /&gt;
&lt;br /&gt;
# [[Download/kernel/rhel6|RHEL6-based OpenVZ kernel]], i.e. 042stabXXX.&lt;br /&gt;
# &amp;lt;code&amp;gt;/vz&amp;lt;/code&amp;gt; partition formatted as &amp;lt;code&amp;gt;ext4&amp;lt;/code&amp;gt; and mounted in ordered mode, or residing on NFS. No other filesystem is supported.&lt;br /&gt;
# ploop library and tools installed (run &amp;lt;code&amp;gt;yum install ploop&amp;lt;/code&amp;gt;).&lt;br /&gt;
&lt;br /&gt;
== Making a CT on ploop ==&lt;br /&gt;
&lt;br /&gt;
=== Global configuration ===&lt;br /&gt;
&lt;br /&gt;
In global VZ configuration file [[Man/vz.conf.5|/etc/vz/vz.conf]], set&lt;br /&gt;
&lt;br /&gt;
 VE_LAYOUT=ploop &lt;br /&gt;
&lt;br /&gt;
This means that all new containers you will create will have ploop layout by default.&lt;br /&gt;
&lt;br /&gt;
You don't have to set this option if you don't want ploop to be default. Alternatively, you can:&lt;br /&gt;
&lt;br /&gt;
* use &amp;lt;code&amp;gt;--layout&amp;lt;/code&amp;gt; option of &amp;lt;code&amp;gt;vzctl create&amp;lt;/code&amp;gt; command;&lt;br /&gt;
* convert existing container to ploop.&lt;br /&gt;
&lt;br /&gt;
=== Creating a new CT ===&lt;br /&gt;
&lt;br /&gt;
To create a new container on ploop, use:&lt;br /&gt;
&lt;br /&gt;
 vzctl create ''CTID'' [--layout ploop] [--diskspace ''nnn''G] [--diskinodes ''mmm'']&lt;br /&gt;
&lt;br /&gt;
# You can omit &amp;lt;code&amp;gt;--layout&amp;lt;/code&amp;gt; option if you have set &amp;lt;code&amp;gt;VE_LAYOUT=ploop&amp;lt;/code&amp;gt; in {{Man|vz.conf|5}}&lt;br /&gt;
# You can specify initial file system size using &amp;lt;code&amp;gt;--diskspace&amp;lt;/code&amp;gt; option (example: 10G for 10 gigabytes)&lt;br /&gt;
# If &amp;lt;code&amp;gt;--diskspace&amp;lt;/code&amp;gt; is not specified, the size defaults to DISKSPACE limit value in sample CT config used&lt;br /&gt;
# If &amp;lt;code&amp;gt;--diskinodes&amp;lt;/code&amp;gt; is not specified, 1 inode per 16K of disk space will be created (see [[../diskinodes/]] for more info)&lt;br /&gt;
&lt;br /&gt;
=== Converting an existing CT ===&lt;br /&gt;
&lt;br /&gt;
1. Stop the container:&lt;br /&gt;
 vzctl stop ''CTID''&lt;br /&gt;
&lt;br /&gt;
2. Set some sane diskspace value, and reset the [[../diskinodes/]] value. New value for diskspace will be used as a size of newly created ploop image. Here is the example to set diskspace to 10 gigabytes:&lt;br /&gt;
 vzctl set ''CTID'' --diskspace 10G --diskinodes 0 --save&lt;br /&gt;
&lt;br /&gt;
3. Convert:&lt;br /&gt;
 vzctl convert ''CTID''&lt;br /&gt;
&lt;br /&gt;
4. Once your CT is well tested, you can free disk space by removing files that may have remained from the old container file system in /vz/root/''CTID''. VERY CAREFULLY (and after testing your converted container) you can stop, remove old files and start container again, e.g.:&lt;br /&gt;
 vzctl stop ''CTID''&lt;br /&gt;
 rm -rf /vz/root/''CTID'';mkdir /vz/root/''CTID''&lt;br /&gt;
 vzctl start ''CTID''&lt;br /&gt;
&lt;br /&gt;
== Resizing a ploop image ==&lt;br /&gt;
&lt;br /&gt;
Ploop image can be resized in both directions (i.e. either shrank or grown). Ploop also supports online/live resize so you don't have to stop a CT to do resize.&lt;br /&gt;
&lt;br /&gt;
To resize a ploop CT image, use&lt;br /&gt;
&lt;br /&gt;
 vzctl set ''CTID'' --diskspace ''nnn''G --save&lt;br /&gt;
&lt;br /&gt;
Note that&lt;br /&gt;
* resize can safely be performed online (i.e. when container is running)&lt;br /&gt;
* there is no need to specify two values for diskspace (unlike simfs, there is no soft and hard quota).&lt;br /&gt;
* there is no way to limit or change the number of inodes available for an existing container (i.e. option &amp;lt;code&amp;gt;--diskinodes&amp;lt;/code&amp;gt; is ignored); see [[../diskinodes/]] for more details&lt;br /&gt;
&lt;br /&gt;
== Showing disk space usage / limits ==&lt;br /&gt;
&lt;br /&gt;
You can use {{Man|vzlist|8}} to see CT disk space usage and limits in a uniform way for any containers (simfs or ploop, started or stopped).&lt;br /&gt;
&lt;br /&gt;
The field '''diskspace''' is showing the current disk space usage, and the fields '''diskspace.s''' and '''diskspace.h''' are showing the filesystem size (or disk space quotas, for simfs case).&lt;br /&gt;
&lt;br /&gt;
The field '''diskinodes''' is showing the current inodes usage, and the fields '''diskinodes.s''' and '''diskinodes.h''' are showing the filesystem size (or disk inodes quotas, for simfs case).&lt;br /&gt;
&lt;br /&gt;
Examples:&lt;br /&gt;
&lt;br /&gt;
 vzlist -o smart_name,diskspace.h,diskspace&lt;br /&gt;
 vzlist -o smart_name,diskinodes.h,diskinodes&lt;br /&gt;
&lt;br /&gt;
On a lower level, same info can be obtained via '''ploop info''' command:&lt;br /&gt;
&lt;br /&gt;
 ploop info /vz/private/501/root.hdd/DiskDescriptor.xml&lt;br /&gt;
&lt;br /&gt;
== Using disk quotas inside container ==&lt;br /&gt;
&lt;br /&gt;
If you want to use standard Linux per-user and per-group disk quota inside a container, you have to enable it using&lt;br /&gt;
&lt;br /&gt;
 vzctl set ''CTID'' --quotaugidlimit 1000 --save&lt;br /&gt;
&lt;br /&gt;
Note that:&lt;br /&gt;
* unlike with simfs, &amp;lt;code&amp;gt;--quotaugidlimit&amp;lt;/code&amp;gt; argument can be any non-zero value;&lt;br /&gt;
* enabling or disabling in-container disk quotas requires a container restart, so you might find &amp;lt;code&amp;gt;--setmode&amp;lt;/code&amp;gt; option helpful.&lt;br /&gt;
&lt;br /&gt;
See {{Man|vzctl|8}} for more details.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
* [[Ploop]]&lt;br /&gt;
* [[Ploop/backup]]&lt;br /&gt;
* {{Man|ploop|8}}&lt;br /&gt;
* {{Man|vz.conf|5}}&lt;br /&gt;
* {{Man|vzctl|8}}&lt;br /&gt;
&lt;br /&gt;
[[Category: Storage]]&lt;br /&gt;
[[Category: HOWTO]]&lt;/div&gt;</summary>
		<author><name>Unixservice</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.openvz.org/index.php?title=Control_panels&amp;diff=16401</id>
		<title>Control panels</title>
		<link rel="alternate" type="text/html" href="https://wiki.openvz.org/index.php?title=Control_panels&amp;diff=16401"/>
		<updated>2015-05-10T15:32:22Z</updated>

		<summary type="html">&lt;p&gt;Unixservice: Removed repo update info that changes daily&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page contains links to different control panels for OpenVZ, written by third parties. If you know the project that's missing here, please add it.&lt;br /&gt;
&lt;br /&gt;
== Featured and recommended ==&lt;br /&gt;
&lt;br /&gt;
=== [http://code.google.com/p/ovz-web-panel/ OVZ Web Panel] ===&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|| &lt;br /&gt;
* Written in Ruby&lt;br /&gt;
* Automatic installer&lt;br /&gt;
* Backup/restore/clone CT&lt;br /&gt;
* Pretty interface with charts&lt;br /&gt;
* Multi-user/roles/server/lingual support, user requests, event logging&lt;br /&gt;
* Remote API&lt;br /&gt;
* IP management&lt;br /&gt;
* Version 2.2 released on 2013-02-09. Very active development.&lt;br /&gt;
||&lt;br /&gt;
[[File:Ovz-web-panel.png|200px|left|link=http://code.google.com/p/ovz-web-panel/]]&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;br clear=&amp;quot;both&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Free software / Open source (in alphabetical order) ==&lt;br /&gt;
* FOSVM (Free Open Source Virtual Machine manager): [http://fosvm.sourceforge.net/ homepage] |  Uses php and bash scripts, monitors bandwidth, Version 0.03a. Last updated 2009-05-18.&lt;br /&gt;
* HyperVM: [http://lxcenter.org/software/hypervm/ homepage] AGPL V3&lt;br /&gt;
* MiniCloud: [https://github.com/ryandoyle/minicloud homepage] | A set of client/server programs that provides similar functionality to the EC2 CLI tools for OpenVZ.&lt;br /&gt;
* OpenNode: [http://opennodecloud.com/ homepage (English)] - Bare-metal ISO installer (CentOS based) providing openvz, kvm, libvirt and func out-of-box together with OpenNode Management Server appliance - containing also ajax Web Management Console with secure HTML5 vnc and ssh vm consoles.&lt;br /&gt;
* OpenVZ Web Panel [http://code.google.com/p/ovz-web-panel/ homepage] - Version 2.1. Written on Ruby. Automatic installer, backup/restore/clone, pretty interface with charts, multi-user/roles/server/lingual support, user requests, event logging and all NEW: remote API, IP management and VZ migrations. Version 2.1 released on 2012-05-02. Very active development. &lt;br /&gt;
* Proxmox Virtual Environment: [http://pve.proxmox.com Proxmox VE Wiki] - including bare-metal ISO installer. Requires 64bit Processor.&lt;br /&gt;
* unxsVZ OpenVZ Multiple datacenter infrastructure manager for CentOS: [http://openisp.net/openisp/unxsVZ unxsVZ Trac Wiki] | Includes autonomic UBC adjusting, traffic and stats graphs. Supports hot-cold container clones, remote datacenter backups, IP and other resource management, container set group commands, NAT, and many advanced features. Very active development. Allows one or two staff to manage more than 1k containers on dozens of nodes across multiple datacenters. Installs via yum. GPLv2 licensed.&lt;br /&gt;
* VirtuoCP ( formerly Vtonf): [http://sourceforge.net/projects/vtonf/ homepage] | According to the documentation only runs on CentOS 4.5 or higher. Last update 2010-10-17.&lt;br /&gt;
&lt;br /&gt;
== Proprietary / non-free ==&lt;br /&gt;
* Aventurin{e}: [http://www.aventurin.net/ homepage (English)]&lt;br /&gt;
* FluidVM: [http://www.fluidvm.com Home Page] &lt;br /&gt;
* NGASI: [http://www.ngasi.com/cloud/cp/index.zul homepage] is the Out-of-the-Box Platform-as-a-Service (PaaS) Solution. Quickly and easily create a cloud based P-a-a-S with 2 or more Virtuzzo/OpenVZ servers.&lt;br /&gt;
* oVZManager [http://www.ovzmanager.de homepage (Webinterface German and English)] Terminal and Rescue, IPv6 - Admin, Reseller, Customer - Windows Support over KVM &lt;br /&gt;
* Plesk [http://www.odin.com/products/plesk/ homepage], a control panel from Odin.&lt;br /&gt;
* SolusVM [http://www.solusvm.com homepage]. Also supports KVM, Xen PV &amp;amp; HVM. Includes support for VSwap&lt;br /&gt;
* Sysvm :[http://sysvm.com Home Page], The Enterprise hybrid vps control panel with ipv6 and load balancing, formally known as vcPanel. [http://sysvm.com/Demo Demo] &lt;br /&gt;
* TekBASE: [http://teklab.de/ homepage /German)] Admin, Customer panel for openvz, game, stream and voice servers&lt;br /&gt;
* VMmanager: [http://ispsystem.com/en/software/vmmanager/ homepage (English)], a control panel for virtual machines management. &lt;br /&gt;
* vePortal: [http://www.veportal.com/ homepage (English)] - Widely used OpenVZ Management Panel.&lt;br /&gt;
* VirtPanel [http://www.virtpanel.com homepage], Support for Xen and VMware in the future.&lt;br /&gt;
* Virtualizor [http://www.virtualizor.com homepage] by Softaculous. Also supports Xen PV &amp;amp; HVM, Linux KVM. Powers over 10000 VMs.&lt;br /&gt;
* HostGuard [http://www.hostguard.net/ homepage]. Also supports KVM. Xen support due in February 2014.&lt;br /&gt;
&lt;br /&gt;
== Frozen projects ==&lt;br /&gt;
* BoxCtrl-VZ [http://www.boxctrl.com homepage] - Free and open source. Uses PHP, XML, and bash scripts. Lightweight. Released on Feb. 18th, 2012.&lt;br /&gt;
* EasyVZ: [http://easyvz.sourceforge.net/ screenshots] | [http://sourceforge.net/projects/easyvz sf.net project page] (little bit outdated, but working and free.  Last update Feb 2007) (requires Unix/Linux)&lt;br /&gt;
* Mwamko: [http://mwamko.org/ homepage] Last activity May 2007&lt;br /&gt;
* Panenthe: [http://www.panenthe.com/ homepage (English)] • [http://www.panenthe.com/products/panenthe-media/cat_id=4/ Screen shots] &amp;lt;- does not exist anymore since 2010&lt;br /&gt;
* RoboVZ: [http://sharesource.org/project/robovz homepage] {{forum|2559}} Lots of promises since announced in May 2007, nothing usable yet.  Possibly GPL license.  No activity in 2 years, calling it frozen.&lt;br /&gt;
* vpsAdmin (www.vpsadmin.org) - GPLv3 license, PHP+MySQL+Bash, Multi-server &amp;amp; Multilingual support, vpsAdmin 1.0 released on January 19, 2010&lt;br /&gt;
* VZ-Manager: [http://vzmanager.de/ homepage (German)] website shows apache default page (11. 02. 2010)&lt;br /&gt;
* VZMaster [http://www.vzmaster.com homepage], [http://www.vzmaster.com/downloads/usermanual_vzmaster_1.0.0.pdf User Manual] -- We also provide complete OpenVZ Distro based on Ubuntu Server distribution. - Website is offline&lt;br /&gt;
* WebVZ: [http://webvz.sourceforge.net/ homepage] Version 2.0 released September 7, 2008 (Moved to [https://github.com/shuaibzahda/webvz/commits/master GitHub], last commit 2009-03-20). Requires Ruby on Rails.&lt;br /&gt;
* Webmin: [http://www.webmin.com/ homepage] | [http://www.webmin.com/cgi-bin/search_third.cgi?search=OpenVZ OpenVZ plugin] | Version 1.0, last updated 2006-02-07&lt;br /&gt;
* SLKVM [http://solukom.com/software/slkvm homepage]: console scripts to handle vz virtualization in a two node cluster. ,&lt;br /&gt;
&lt;br /&gt;
== In development ==&lt;br /&gt;
* easyVZ! [http://www.easyVZ.org/ homepage] &lt;br /&gt;
* DTC-Xen [http://www.gplhost.com/software-dtc-xen.html homepage] - Currently being ported to OpenVZ by its main developers.&lt;br /&gt;
* VZControl [https://github.com/mrkmg/vzcontrol github] - CLI interface to administer multiple OpenVZ Hosts. Written in PHP5.&lt;br /&gt;
&lt;br /&gt;
== 3rd party wrappers ==&lt;br /&gt;
Beside control panels that are designed to work with OpenVZ, a lot of great tools have been released that allow you to centralized manage your servers in general. If you are in knowledge of a popular programming language like Ruby, Python or Perl it's easy to create your own OpenVZ modules for them.&lt;br /&gt;
&lt;br /&gt;
'''Perl'''&lt;br /&gt;
* (R)?ex [http://rexify.org/] - With (R)?ex you can manage all your boxes from a central point through the complete process of configuration management and software deployment.&lt;br /&gt;
&lt;br /&gt;
'''Python'''&lt;br /&gt;
* Fabric [http://docs.fabfile.org/en/latest/] - Fabric is a Python (2.5 or higher) library and command-line tool for streamlining the use of SSH for application deployment or systems administration tasks.&lt;br /&gt;
&lt;br /&gt;
'''Ruby'''&lt;br /&gt;
* Capistrano [https://github.com/capistrano/capistrano] - Capistrano is a utility and framework for executing commands in parallel on multiple remote machines, via SSH.&lt;br /&gt;
&lt;br /&gt;
If you have a working modul for one of them or can suggest more such tools, feel free to add them!&lt;/div&gt;</summary>
		<author><name>Unixservice</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.openvz.org/index.php?title=Control_panels&amp;diff=14856</id>
		<title>Control panels</title>
		<link rel="alternate" type="text/html" href="https://wiki.openvz.org/index.php?title=Control_panels&amp;diff=14856"/>
		<updated>2013-12-05T22:14:33Z</updated>

		<summary type="html">&lt;p&gt;Unixservice: /* Free software / Open source (in alphabetical order) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page contains links to different control panels for OpenVZ, written by third parties. If you know the project that's missing here, please add it.&lt;br /&gt;
&lt;br /&gt;
== Featured and recommended ==&lt;br /&gt;
&lt;br /&gt;
=== [http://code.google.com/p/ovz-web-panel/ OVZ Web Panel] ===&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|| &lt;br /&gt;
* Written in Ruby&lt;br /&gt;
* Automatic installer&lt;br /&gt;
* Backup/restore/clone CT&lt;br /&gt;
* Pretty interface with charts&lt;br /&gt;
* Multi-user/roles/server/lingual support, user requests, event logging&lt;br /&gt;
* Remote API&lt;br /&gt;
* IP management&lt;br /&gt;
* Version 2.2 released on 2013-02-09. Very active development.&lt;br /&gt;
||&lt;br /&gt;
[[File:Ovz-web-panel.png|200px|left|link=http://code.google.com/p/ovz-web-panel/]]&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;br clear=&amp;quot;both&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Free software / Open source (in alphabetical order) ==&lt;br /&gt;
* FOSVM (Free Open Source Virtual Machine manager): [http://fosvm.sourceforge.net/ homepage] |  Uses php and bash scripts, monitors bandwidth, Version 0.03a. Last updated 2009-05-18.&lt;br /&gt;
* HyperVM: [http://lxcenter.org/software/hypervm/ homepage] AGPL V3&lt;br /&gt;
* MiniCloud: [https://github.com/ryandoyle/minicloud homepage] | A set of client/server programs that provides similar functionality to the EC2 CLI tools for OpenVZ.&lt;br /&gt;
* OpenNode: [http://opennode.activesys.org/ homepage (English)] - Bare-metal ISO installer (CentOS based) providing openvz, kvm, libvirt and func out-of-box together with OpenNode Management Server appliance - containing also ajax Web Management Console with secure HTML5 vnc and ssh vm consoles.&lt;br /&gt;
* OpenVZ Web Panel [http://code.google.com/p/ovz-web-panel/ homepage] - Version 2.1. Written on Ruby. Automatic installer, backup/restore/clone, pretty interface with charts, multi-user/roles/server/lingual support, user requests, event logging and all NEW: remote API, IP management and VZ migrations. Version 2.1 released on 2012-05-02. Very active development. &lt;br /&gt;
* Proxmox Virtual Environment: [http://pve.proxmox.com Proxmox VE Wiki] - including bare-metal ISO installer. Requires 64bit Processor.&lt;br /&gt;
* SLKVM [http://solukom.com/software/slkvm homepage]: console scripts to handle vz virtualization in a two node cluster.&lt;br /&gt;
* unxsVZ OpenVZ Multiple datacenter infrastructure manager for CentOS: [http://openisp.net/openisp/unxsVZ unxsVZ Trac Wiki] | Includes autonomic UBC adjusting, traffic and stats graphs. Supports hot-cold container clones, remote datacenter backups, IP and other resource management, container set group commands, NAT, and many advanced features. Very active development. Allows one or two staff to manage more than 1k containers on dozens of nodes across multiple datacenters. Installs via yum. GPLv2 licensed. Last change to public svn code base Dec 5, 2013. &lt;br /&gt;
* VirtuoCP ( formerly Vtonf): [http://sourceforge.net/projects/vtonf/ homepage] | According to the documentation only runs on CentOS 4.5 or higher. Last update 2010-10-17.&lt;br /&gt;
&lt;br /&gt;
== Proprietary / non-free ==&lt;br /&gt;
* Aventurin{e}: [http://www.aventurin.net/ homepage (English)]&lt;br /&gt;
* FluidVM: [http://www.fluidvm.com Home Page] &lt;br /&gt;
* NGASI: [http://www.ngasi.com/cloud/cp/index.zul homepage] is the Out-of-the-Box Platform-as-a-Service (PaaS) Solution. Quickly and easily create a cloud based P-a-a-S with 2 or more Virtuzzo/OpenVZ servers.&lt;br /&gt;
* oVZManager [http://www.ovzmanager.de homepage (Webinterface German and English)] Terminal and Rescue, IPv6 - Admin, Reseller, Customer - Windows Support over KVM &lt;br /&gt;
* Plesk [http://www.parallels.com/plesk homepage], a control panel from Parallels.&lt;br /&gt;
* SolusVM [http://www.solusvm.com homepage]. Also supports KVM, Xen PV &amp;amp; HVM. Includes support for VSwap&lt;br /&gt;
* Sysvm :[http://sysvm.com Home Page], The Enterprise hybrid vps control panel with ipv6 and load balancing, formally known as vcPanel. [http://sysvm.com/Demo Demo] &lt;br /&gt;
* TekBASE: [http://teklab.de/ homepage /German)] Admin, Customer panel for openvz, game, stream and voice servers&lt;br /&gt;
* VDSmanager for Linux :[http://ispsystem.com/en/software/vdsmanager/ homepage (English)]&lt;br /&gt;
* vePortal: [http://www.veportal.com/ homepage (English)] - Widely used OpenVZ Management Panel.&lt;br /&gt;
* VirtPanel [http://www.virtpanel.com homepage], Support for Xen and VMware in the future.&lt;br /&gt;
* Virtualizor [http://www.virtualizor.com homepage] by Softaculous. Also supports Xen PV &amp;amp; HVM, Linux KVM. Powers over 10000 VMs.&lt;br /&gt;
* VZMaster [http://www.vzmaster.com homepage], [http://www.vzmaster.com/downloads/usermanual_vzmaster_1.0.0.pdf User Manual] -- We also provide complete OpenVz Distro based on Ubuntu Server distribution.&lt;br /&gt;
&lt;br /&gt;
== Frozen projects ==&lt;br /&gt;
* BoxCtrl-VZ [http://www.boxctrl.com homepage] - Free and open source. Uses PHP, XML, and bash scripts. Lightweight. Released on Feb. 18th, 2012.&lt;br /&gt;
* EasyVZ: [http://easyvz.sourceforge.net/ screenshots] | [http://sourceforge.net/projects/easyvz sf.net project page] (little bit outdated, but working and free.  Last update Feb 2007) (requires Unix/Linux)&lt;br /&gt;
* Mwamko: [http://mwamko.org/ homepage] Last activity May 2007&lt;br /&gt;
* Panenthe: [http://www.panenthe.com/ homepage (English)] • [http://www.panenthe.com/products/panenthe-media/cat_id=4/ Screen shots] &amp;lt;- does not exist anymore since 2010&lt;br /&gt;
* RoboVZ: [http://sharesource.org/project/robovz homepage] {{forum|2559}} Lots of promises since announced in May 2007, nothing usable yet.  Possibly GPL license.  No activity in 2 years, calling it frozen.&lt;br /&gt;
* vpsAdmin (www.vpsadmin.org) - GPLv3 license, PHP+MySQL+Bash, Multi-server &amp;amp; Multilingual support, vpsAdmin 1.0 released on January 19, 2010&lt;br /&gt;
* VZ-Manager: [http://vzmanager.de/ homepage (German)] website shows apache default page (11. 02. 2010)&lt;br /&gt;
* WebVZ: [http://webvz.sourceforge.net/ homepage] Version 2.0 released September 7, 2008 (Moved to [https://github.com/shuaibzahda/webvz/commits/master GitHub], last commit 2009-03-20). Requires Ruby on Rails.&lt;br /&gt;
* Webmin: [http://www.webmin.com/ homepage] | [http://www.webmin.com/cgi-bin/search_third.cgi?search=OpenVZ OpenVZ plugin] | Version 1.0, last updated 2006-02-07&lt;br /&gt;
&lt;br /&gt;
== In development ==&lt;br /&gt;
* easyVZ! [http://www.easyVZ.org/ homepage] &lt;br /&gt;
* DTC-Xen [http://www.gplhost.com/software-dtc-xen.html homepage] - Currently being ported to OpenVZ by its main developers.&lt;br /&gt;
* VZControl [https://github.com/mrkmg/vzcontrol github] - CLI interface to administer multiple OpenVZ Hosts. Written in PHP5.&lt;br /&gt;
&lt;br /&gt;
== 3rd party wrappers ==&lt;br /&gt;
Beside control panels that are designed to work with OpenVZ, a lot of great tools have been released that allow you to centralized manage your servers in general. If you are in knowledge of a popular programming language like Ruby, Python or Perl it's easy to create your own OpenVZ modules for them.&lt;br /&gt;
&lt;br /&gt;
'''Perl'''&lt;br /&gt;
* (R)?ex [http://rexify.org/] - With (R)?ex you can manage all your boxes from a central point through the complete process of configuration management and software deployment.&lt;br /&gt;
&lt;br /&gt;
'''Python'''&lt;br /&gt;
* Fabric [http://docs.fabfile.org/en/latest/] - Fabric is a Python (2.5 or higher) library and command-line tool for streamlining the use of SSH for application deployment or systems administration tasks.&lt;br /&gt;
&lt;br /&gt;
'''Ruby'''&lt;br /&gt;
* Capistrano [https://github.com/capistrano/capistrano] - Capistrano is a utility and framework for executing commands in parallel on multiple remote machines, via SSH.&lt;br /&gt;
&lt;br /&gt;
If you have a working modul for one of them or can suggest more such tools, feel free to add them!&lt;/div&gt;</summary>
		<author><name>Unixservice</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.openvz.org/index.php?title=Hosting_providers&amp;diff=7359</id>
		<title>Hosting providers</title>
		<link rel="alternate" type="text/html" href="https://wiki.openvz.org/index.php?title=Hosting_providers&amp;diff=7359"/>
		<updated>2009-06-24T14:34:23Z</updated>

		<summary type="html">&lt;p&gt;Unixservice: /* USA */ Added our specialized OpenVZ only hosting&lt;/p&gt;
&lt;hr /&gt;
&lt;div&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;
== Austria ==&lt;br /&gt;
&lt;br /&gt;
* [http://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;
&lt;br /&gt;
* [https://www.vboxes.net/ vboxes] vboxes offers generous OpenVZ containers hosted on a very fast network with fast setup. Ubuntu, Debian, CentOS.&lt;br /&gt;
&lt;br /&gt;
== Canada ==&lt;br /&gt;
&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://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;
&lt;br /&gt;
== Germany ==&lt;br /&gt;
&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://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;
&lt;br /&gt;
== Iran==&lt;br /&gt;
&lt;br /&gt;
* [http://www.cheapvps.ir Cheap Vps] - XEON Cpus , 8 gig Ram , western H.d.d. , Intel RAID and Multi data center network.&lt;br /&gt;
&lt;br /&gt;
== Lithuania ==&lt;br /&gt;
&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;
&lt;br /&gt;
== Malaysia ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.bakka.my/ Bakka Hosting] - OpenVZ VPS based in Malaysia. Ubuntu, Debian, Fedora, CentOS is available. Quad Core Xeon node. DirectAdmin also available.&lt;br /&gt;
&lt;br /&gt;
== Netherlands ==&lt;br /&gt;
&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://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;
&lt;br /&gt;
== Portugal ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.efeito.net/ Weblevel.pt] - OpenVZ virtual servers based in Portugal.&lt;br /&gt;
&lt;br /&gt;
== Russia ==&lt;br /&gt;
&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;
&lt;br /&gt;
== Singapore ==&lt;br /&gt;
&lt;br /&gt;
* [http://conceptlane.com/IT.php?section=plans_vps ConceptLane Pte Ltd] - OpenVZ VPS on Ubuntu Hardy 8.04 LTS host, on dual dual-core AMD Opterons.&lt;br /&gt;
&lt;br /&gt;
== South Africa ==&lt;br /&gt;
&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;
&lt;br /&gt;
== UK ==&lt;br /&gt;
&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.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.&lt;br /&gt;
* [http://www.vt6.co.uk/ VT6 Internet] - Affordable OpenVZ virtual servers based in the UK and USA. Choice of control panels and management options.&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://blueroomhosting.com/plans.pxl Blue Room Hosting] - OpenVZ containers hosted at the 4D data centre in Byfleet, West London, UK&lt;br /&gt;
* [http://sysadminman.net/uk-voip-vps.html Trixbox, Elastix and Asterisk VPS in the UK] - OpenVZ based Asterisk VOIP servers based in the UK&lt;br /&gt;
&lt;br /&gt;
== Ukraine ==&lt;br /&gt;
&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;
&lt;br /&gt;
== USA ==&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://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;
* [http://www.4domains.com/open_vps.html 4Domains] has been in the hosting business since 1998, offering VPS solutions for the majority of that time. We offer OpenVZ and Virtuozzo with Virtualmin or Plesk at competitive prices on any distribution of Linux with full shell access. Includes our award winning professional and personalized support.&lt;br /&gt;
* [http://www.a2hosting.com/services/vps-hosting/ A2 Hosting] offers affordable, developer friendly OpenVZ VPS Hosting. Experience the A2 Hosting Difference.&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.bittraffic.com/?cmd=vps BitTraffic] High Quality Hosting Solutions! Affordable, stable, reliable OpenVZ VPS Solutions!&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.silverrack.com/ SilverRack VPS Hosting] - SilverRack provides affordable VPS hosting using the OpenVZ platform.&lt;br /&gt;
* [http://www.buyavps.com/ BuyAVPS] - BuyAVPS provides stable yet affordable VPS hosting with a great support staff.&lt;br /&gt;
* [http://vpslink.com VPSLink.com] provides virtual private server hosting on the OpenVZ platform.&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://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.servergrove.com ServerGrove] uses OpenVZ as the main virtualization platform for its state of the art VPS hosting services.&lt;br /&gt;
* [http://www.tektonic.net TekTonic] provides VPS hosting services using both Virtuozzo and OpenVZ technology.&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.alticon.net Alticon] has provided OpenVZ based VPS/VE hosting for over 2½ years.  Many clients use OpenVZ based VEs as a cost effective solution for hosting highly secured, customized versions of ZenCart &amp;amp; WordPress.  Other clients use OpenVZ for DNS mirroring, messages board hosting, and general use.&lt;br /&gt;
* [http://www.hostingrails.com Hosting Rails] offers Rails-targeted OpenVZ VPS Hosting and updated Rails-ready OS images.&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://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.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://railsplayground.com RailsPlayground.com] Ruby on Rails VPS with ready to go Rails images with the LxAdmin control panel&lt;br /&gt;
&lt;br /&gt;
== Venezuela ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.iguanahosting.com Iguanahosting.com] The Iguanahosting OpenVZ based VEs also called  &amp;quot;SDV&amp;quot;(Servidor Dedicado Virtual in Spanish). Running on Full Quality Nodes of up to 8 CPU and 8 GB RAM. XEN VPS's also will be available cooming soon. All VPS's come with cPanel, Fantastico and RVSkin and a Real 24/7/365  Technical Support.&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>Unixservice</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.openvz.org/index.php?title=Control_panels&amp;diff=7358</id>
		<title>Control panels</title>
		<link rel="alternate" type="text/html" href="https://wiki.openvz.org/index.php?title=Control_panels&amp;diff=7358"/>
		<updated>2009-06-21T22:42:20Z</updated>

		<summary type="html">&lt;p&gt;Unixservice: /* Free software / Open source (in alphabetical order) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page contains links to different control panels for OpenVZ, written by third parties. If you know the project that's missing here, please add it.&lt;br /&gt;
&lt;br /&gt;
== Free software / Open source (in alphabetical order) ==&lt;br /&gt;
* fosvm (Free Open Source Virtual Machine manager): [http://fosvm.sourceforge.net/ homepage] |  Uses php and bash scripts, monitors bandwidth, Version 0.02a. Last updated 2009-05-15.&lt;br /&gt;
* Proxmox Virtual Environment: [http://pve.proxmox.com Proxmox VE Wiki] - including bare-metal ISO installer&lt;br /&gt;
* unxsVZ OpenVZ Infrastructure Manager: [http://openisp.net/openisp/unxsVZ unxsVZ Trac Wiki] | Includes autonomic UBC adjusting and per container traffic graphs. Supports hot-spare clones and mount/umount conf file templates. Very active development. Last change to public svn code base June 20, 2009. &lt;br /&gt;
* Vtonf: [http://www.vtonf.com/ homepage] | According to the documentation only runs on CentOS 4.5 or higher. Marked as beta, but works quite well.  Last change April 2008&lt;br /&gt;
* Webmin: [http://www.webmin.com/ homepage] | [http://www.webmin.com/cgi-bin/search_third.cgi?search=OpenVZ OpenVZ plugin] | Version 1.0, last updated 2006-02-07&lt;br /&gt;
* WebVZ: [http://webvz.sourceforge.net/ homepage] Uses Ruby on Rails which makes it a poor choice for Debian, Ubuntu and other .deb style distros.  In the comments section of http://www.howtoforge.com/install-webvz-2.0-on-debian-etch-to-administrate-openvz there is a suggestion of how to get this one running under Ubuntu Hardy.  The authors like it.&lt;br /&gt;
&lt;br /&gt;
== Proprietary / non-free ==&lt;br /&gt;
* FluidVM: [http://www.binarykarma.com Home Page] • [http://www.binarykarma.com/demo.php Demo Videos] • [http://www.binarykarma.com/fluidvm_screenshots.php Screen shots]&lt;br /&gt;
* VZ-Manager: [http://vzmanager.de/ homepage (German)]&lt;br /&gt;
* vzAdmin: [http://www.vzAdmin.info/ homepage (German)]&lt;br /&gt;
* Aventurin{e}: [http://www.aventurin.net/ homepage (English)]&lt;br /&gt;
* VS-Admin: [http://vsadmin.ispbase.net/ homepage (English)]&lt;br /&gt;
&lt;br /&gt;
== Frozen projects ==&lt;br /&gt;
* VZAdmin: [http://www.ronny-goerner.de/ homepage] ''seems not available now''&lt;br /&gt;
* WVZ: [http://homaly.dunanet.hu/wvz/ homepage] ''seems frozen''&lt;br /&gt;
* New OpenVZ Web Based Control Panel by rsailor: {{forum|230}} ''seems not available now''&lt;br /&gt;
* EasyVZ: [http://easyvz.sourceforge.net/ screenshots] | [http://sourceforge.net/projects/easyvz sf.net project page] (little bit outdated, but working and free.  Last update Feb 2007) (requires Unix/Linux)&lt;br /&gt;
* Mwamko: [http://mwamko.devjavu.com/ homepage] Last activity May 2007&lt;br /&gt;
* RoboVZ: [http://sharesource.org/project/robovz homepage] {{forum|2559}} Lots of promises since announced in May 2007, nothing usable yet.  Possibly GPL license.  No activity in 2 years, calling it frozen.&lt;br /&gt;
* HyperVM: [http://lxlabs.com/software/hypervm/ homepage] - No longer being developed after the sole developer sadly committed suicide in June 09.&lt;br /&gt;
&lt;br /&gt;
== In development ==&lt;br /&gt;
* WIVZ/GIVZ: [http://source.icenetx.net/ homepage] Release scheduled for October 2008.  Unknow license.  Link is currently broken as of 6 April 2009.  It's probably defunct.&lt;br /&gt;
* VS-Admin: [http://vsadmin.ispbase.net/ homepage] Beta testers wanted (19-06-2009)&lt;/div&gt;</summary>
		<author><name>Unixservice</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.openvz.org/index.php?title=Control_panels&amp;diff=7357</id>
		<title>Control panels</title>
		<link rel="alternate" type="text/html" href="https://wiki.openvz.org/index.php?title=Control_panels&amp;diff=7357"/>
		<updated>2009-06-21T22:34:39Z</updated>

		<summary type="html">&lt;p&gt;Unixservice: /* Free software / Open source (in alphabetical order) */ typo fixed&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page contains links to different control panels for OpenVZ, written by third parties. If you know the project that's missing here, please add it.&lt;br /&gt;
&lt;br /&gt;
== Free software / Open source (in alphabetical order) ==&lt;br /&gt;
* fosvm (Free Open Source Virtual Machine manager): [http://fosvm.sourceforge.net/ homepage] |  Uses php and bash scripts, monitors bandwidth, Version 0.02a. Last updated 2009-05-15.&lt;br /&gt;
* Proxmox Virtual Environment: [http://pve.proxmox.com Proxmox VE Wiki] - including bare-metal ISO installer&lt;br /&gt;
* unxsVZ: [http://openisp.net/openisp/unxsVZ] | Includes autonomic UBC adjusting and per container traffic graphs. Supports hot-spare clones and mount/umount conf file templates. Very active development. Last change to public svn code base June 20, 2009. &lt;br /&gt;
* Vtonf: [http://www.vtonf.com/ homepage] | According to the documentation only runs on CentOS 4.5 or higher. Marked as beta, but works quite well.  Last change April 2008&lt;br /&gt;
* Webmin: [http://www.webmin.com/ homepage] | [http://www.webmin.com/cgi-bin/search_third.cgi?search=OpenVZ OpenVZ plugin] | Version 1.0, last updated 2006-02-07&lt;br /&gt;
* WebVZ: [http://webvz.sourceforge.net/ homepage] Uses Ruby on Rails which makes it a poor choice for Debian, Ubuntu and other .deb style distros.  In the comments section of http://www.howtoforge.com/install-webvz-2.0-on-debian-etch-to-administrate-openvz there is a suggestion of how to get this one running under Ubuntu Hardy.  The authors like it.&lt;br /&gt;
&lt;br /&gt;
== Proprietary / non-free ==&lt;br /&gt;
* FluidVM: [http://www.binarykarma.com Home Page] • [http://www.binarykarma.com/demo.php Demo Videos] • [http://www.binarykarma.com/fluidvm_screenshots.php Screen shots]&lt;br /&gt;
* VZ-Manager: [http://vzmanager.de/ homepage (German)]&lt;br /&gt;
* vzAdmin: [http://www.vzAdmin.info/ homepage (German)]&lt;br /&gt;
* Aventurin{e}: [http://www.aventurin.net/ homepage (English)]&lt;br /&gt;
* VS-Admin: [http://vsadmin.ispbase.net/ homepage (English)]&lt;br /&gt;
&lt;br /&gt;
== Frozen projects ==&lt;br /&gt;
* VZAdmin: [http://www.ronny-goerner.de/ homepage] ''seems not available now''&lt;br /&gt;
* WVZ: [http://homaly.dunanet.hu/wvz/ homepage] ''seems frozen''&lt;br /&gt;
* New OpenVZ Web Based Control Panel by rsailor: {{forum|230}} ''seems not available now''&lt;br /&gt;
* EasyVZ: [http://easyvz.sourceforge.net/ screenshots] | [http://sourceforge.net/projects/easyvz sf.net project page] (little bit outdated, but working and free.  Last update Feb 2007) (requires Unix/Linux)&lt;br /&gt;
* Mwamko: [http://mwamko.devjavu.com/ homepage] Last activity May 2007&lt;br /&gt;
* RoboVZ: [http://sharesource.org/project/robovz homepage] {{forum|2559}} Lots of promises since announced in May 2007, nothing usable yet.  Possibly GPL license.  No activity in 2 years, calling it frozen.&lt;br /&gt;
* HyperVM: [http://lxlabs.com/software/hypervm/ homepage] - No longer being developed after the sole developer sadly committed suicide in June 09.&lt;br /&gt;
&lt;br /&gt;
== In development ==&lt;br /&gt;
* WIVZ/GIVZ: [http://source.icenetx.net/ homepage] Release scheduled for October 2008.  Unknow license.  Link is currently broken as of 6 April 2009.  It's probably defunct.&lt;br /&gt;
* VS-Admin: [http://vsadmin.ispbase.net/ homepage] Beta testers wanted (19-06-2009)&lt;/div&gt;</summary>
		<author><name>Unixservice</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.openvz.org/index.php?title=Control_panels&amp;diff=7356</id>
		<title>Control panels</title>
		<link rel="alternate" type="text/html" href="https://wiki.openvz.org/index.php?title=Control_panels&amp;diff=7356"/>
		<updated>2009-06-21T22:31:39Z</updated>

		<summary type="html">&lt;p&gt;Unixservice: /* Free software / Open source (in alphabetical order) */ Corrected out of order entry and added our ready for release OpenVZ control panel.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page contains links to different control panels for OpenVZ, written by third parties. If you know the project that's missing here, please add it.&lt;br /&gt;
&lt;br /&gt;
== Free software / Open source (in alphabetical order) ==&lt;br /&gt;
* fosvm (Free Open Source Virtual Machine manager): [http://fosvm.sourceforge.net/ homepage] |  Uses php and bash scripts, monitors bandwidth, Version 0.02a. Last updated 2009-05-15.&lt;br /&gt;
* Proxmox Virtual Environment: [http://pve.proxmox.com Proxmox VE Wiki] - including bare-metal ISO installer&lt;br /&gt;
* unxsVZ: [http:/openisp.net/openisp/unxsVZ] | Includes autonomic UBC adjusting and per container traffic graphs. Supports hot-spare clones and mount/umount conf file templates. Very active development. Last change to public svn code base June 20, 2009. &lt;br /&gt;
* Vtonf: [http://www.vtonf.com/ homepage] | According to the documentation only runs on CentOS 4.5 or higher. Marked as beta, but works quite well.  Last change April 2008&lt;br /&gt;
* Webmin: [http://www.webmin.com/ homepage] | [http://www.webmin.com/cgi-bin/search_third.cgi?search=OpenVZ OpenVZ plugin] | Version 1.0, last updated 2006-02-07&lt;br /&gt;
* WebVZ: [http://webvz.sourceforge.net/ homepage] Uses Ruby on Rails which makes it a poor choice for Debian, Ubuntu and other .deb style distros.  In the comments section of http://www.howtoforge.com/install-webvz-2.0-on-debian-etch-to-administrate-openvz there is a suggestion of how to get this one running under Ubuntu Hardy.  The authors like it.&lt;br /&gt;
&lt;br /&gt;
== Proprietary / non-free ==&lt;br /&gt;
* FluidVM: [http://www.binarykarma.com Home Page] • [http://www.binarykarma.com/demo.php Demo Videos] • [http://www.binarykarma.com/fluidvm_screenshots.php Screen shots]&lt;br /&gt;
* VZ-Manager: [http://vzmanager.de/ homepage (German)]&lt;br /&gt;
* vzAdmin: [http://www.vzAdmin.info/ homepage (German)]&lt;br /&gt;
* Aventurin{e}: [http://www.aventurin.net/ homepage (English)]&lt;br /&gt;
* VS-Admin: [http://vsadmin.ispbase.net/ homepage (English)]&lt;br /&gt;
&lt;br /&gt;
== Frozen projects ==&lt;br /&gt;
* VZAdmin: [http://www.ronny-goerner.de/ homepage] ''seems not available now''&lt;br /&gt;
* WVZ: [http://homaly.dunanet.hu/wvz/ homepage] ''seems frozen''&lt;br /&gt;
* New OpenVZ Web Based Control Panel by rsailor: {{forum|230}} ''seems not available now''&lt;br /&gt;
* EasyVZ: [http://easyvz.sourceforge.net/ screenshots] | [http://sourceforge.net/projects/easyvz sf.net project page] (little bit outdated, but working and free.  Last update Feb 2007) (requires Unix/Linux)&lt;br /&gt;
* Mwamko: [http://mwamko.devjavu.com/ homepage] Last activity May 2007&lt;br /&gt;
* RoboVZ: [http://sharesource.org/project/robovz homepage] {{forum|2559}} Lots of promises since announced in May 2007, nothing usable yet.  Possibly GPL license.  No activity in 2 years, calling it frozen.&lt;br /&gt;
* HyperVM: [http://lxlabs.com/software/hypervm/ homepage] - No longer being developed after the sole developer sadly committed suicide in June 09.&lt;br /&gt;
&lt;br /&gt;
== In development ==&lt;br /&gt;
* WIVZ/GIVZ: [http://source.icenetx.net/ homepage] Release scheduled for October 2008.  Unknow license.  Link is currently broken as of 6 April 2009.  It's probably defunct.&lt;br /&gt;
* VS-Admin: [http://vsadmin.ispbase.net/ homepage] Beta testers wanted (19-06-2009)&lt;/div&gt;</summary>
		<author><name>Unixservice</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.openvz.org/index.php?title=Partners&amp;diff=7325</id>
		<title>Partners</title>
		<link rel="alternate" type="text/html" href="https://wiki.openvz.org/index.php?title=Partners&amp;diff=7325"/>
		<updated>2009-05-18T00:24:55Z</updated>

		<summary type="html">&lt;p&gt;Unixservice: /* Unixservice */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Here are some companies that are working together with OpenVZ project in one or another way. Feel free to add your company profile here ('''in alphabetical order''').&lt;br /&gt;
&lt;br /&gt;
{{Note|Hosting service providers should add their entries to [[Hosting providers]], not here. Thanks.}}&lt;br /&gt;
&lt;br /&gt;
== BinaryKarma ==&lt;br /&gt;
[http://www.binarykarma.com BinaryKarma] is offering an multi-hypervisor platform, FluidVM that also supports OpenVZ, apart from Xen. FluidVM supports local and SAN storage and is also extensible via an XML-RPC based API. See [http://www.binarykarma.com/fluidvm_screenshots.php Screen shots] and [http://www.binarykarma.com/demo.php Demo Videos] for more information. FluidVM ships with a browser based interface with which users can manage multiple servers and VEs. BinaryKarma is also the developer of [http://easyvz.sourceforge.net EasyVZ], a GPL'd free GUI available for OpenVZ.&lt;br /&gt;
&lt;br /&gt;
== Blended Perspectives ==&lt;br /&gt;
&lt;br /&gt;
[http://www.blendedperspectives.com Blended Perspectives] is a strategy-to-execution consultancy based in Toronto, Canada. Our core offerings are centered on provision of Wiki platforms and OpenVZ is a favoured host operating environment to achieve scale and resiliency.&lt;br /&gt;
&lt;br /&gt;
== Computer Tyme ==&lt;br /&gt;
[http://ctyme.com Computer Tyme] is using OpenVZ for their spam filtering service [http://junkemailfilter.com Junk Email Filter dot com]. They are active proponents of OpenVZ; Marc Perkel worked at the OpenVZ booth during LinuxWorld Expo 2007.&lt;br /&gt;
&lt;br /&gt;
== Fortech I.T. Solutions ==&lt;br /&gt;
[http://FortechITSolutions.ca Fortech I.T. Solutions] is an IT consulting company based in Halifax (Nova Scotia, Canada) specializing in open-source solutions. We offer services in a variety of areas, including virtualization solutions based on a number of platforms - including OpenVZ.&lt;br /&gt;
&lt;br /&gt;
== Fry-IT Ltd ==&lt;br /&gt;
[http://www.fry-it.com Fry-IT Ltd] is a London based web, mobile and hosting consultancy and among the services we provide are system solutions involving Clustering, Load Balancing and High Availability, with OpenVZ as the virtualization technology of choice.&lt;br /&gt;
&lt;br /&gt;
An example of our consulting work is the OpenVZ cluster powering 6 applications at [http://www.da.mod.uk/ MOD Defence Academy] in the UK, the public website being one of the applications. To our clients, hosted with us or running their own infrastructure, we provide a complete solution from custom OpenVZ scripts, a container resource limits management web application to thorough documentation of system management procedures.&lt;br /&gt;
&lt;br /&gt;
== Impulso Srl ==&lt;br /&gt;
[http://impulso.it Impulso] offers white label Internet Services and uses OpenVZ cluster for their managed email services like [http://postalinda.it Posta Linda]. Impulso also offers support for OpenVZ in Italy.&lt;br /&gt;
&lt;br /&gt;
== Inguza Technology AB ==&lt;br /&gt;
[http://inguza.com/ Inguza Technology AB] maintains the Debian GNU Linux version of OpenVZ.&lt;br /&gt;
&lt;br /&gt;
== LastSpam ==&lt;br /&gt;
[http://www.lastspam.com LastSpam] offers managed e-mail security services (anti-spam and anti-virus/bad content) and uses OpenVZ to deliver excellent service and support to its customers.  Ugo Bellavance, LastSpam's head server architect and manager is an active member of the OpenVZ community: helping on the forum, making suggestions, and submitting patches.&lt;br /&gt;
&lt;br /&gt;
== netVOICE communications ==&lt;br /&gt;
[http://www.netvoice.ca/ netVOICE communications] is an Internet Telephony Service Provider (ITSP) that uses OpenVZ as the basis for their [http://www.vpas.ca/ Virtual Private Asterisk Server (VPAS)] offering. They also offer consulting on running Asterisk (the leading Open Source telephony platform) on OpenVZ. netVOICE is a Digium Approved Reseller and has a Digium Certified Asterisk Professional [http://www.digium.com/en/training/certifications/ (dCAP)] on staff.&lt;br /&gt;
&lt;br /&gt;
== Openwall ==&lt;br /&gt;
&lt;br /&gt;
At [http://www.openwall.com Openwall], we develop our own Open Source software with a focus on security, including [http://www.openwall.com/Owl/ Openwall GNU/*/Linux] (or Owl for short), a security-enhanced server platform.&lt;br /&gt;
Our [http://www.openwall.com/services/ professional services] include remote installation (you boot off CD, we do the rest) and maintenance (systems and security administration) of OpenVZ-enabled servers and mini-networks of such servers.  We typically use the OpenVZ kernel, the Owl userland for the host system, and arbitrary Linux distributions for the containers (most often that's Owl as well - with additional software to meet your needs).  We readily have software solutions for provision of advanced LAMP hosting with cross virtual host security separation within each container (that is, not only the containers are separated due to OpenVZ, but also virtual hosts within containers are separated at the OS level), multi-server backups (incremental, remote, encrypted, integrity-checked), monitoring (many custom Nagios sensors, including for things such as backups, filesystem errors, RAID status, etc.), and more.&lt;br /&gt;
&lt;br /&gt;
== Proxmox ==&lt;br /&gt;
&lt;br /&gt;
[http://pve.proxmox.com Proxmox VE] is an easy to use Open Source virtualization platform for running pre-built Virtual Appliances and Virtual Machines (based on OpenVZ and also [http://kvm.qumranet.com/kvmwiki KVM] for full virtualization). &lt;br /&gt;
&lt;br /&gt;
[http://proxmox.com Proxmox] is [http://www.proxmox.com/cms_proxmox/en/virtualization/openvz/ using OpenVZ] for their spam filtering appliance (see [[Proxmox Mail Gateway in container]]). Proxmox is also the author of [http://www.proxmox.com/cms_proxmox/en/virtualization/openvz/vzdump/ vzdump] utility.&lt;br /&gt;
&lt;br /&gt;
== Revolution Linux ==&lt;br /&gt;
&lt;br /&gt;
[http://www.revolutionlinux.com/ Revolution Linux] is an IT company specialized in large scale infrastructure deployement using Open Source technologies. Most/all of our deployements rely extensively on containers (OpenVZ and Linux Vserver).&lt;br /&gt;
&lt;br /&gt;
== Solarspeed Ltd. ==&lt;br /&gt;
[http://www.solarspeed.net Solarspeed Ltd.] is a CentOS + BlueQuartz server specialist, selling server systems and software solutions. We developed [http://www.aventurin.net Aventurin{e}], which is a Linux Virtualization Appliance Software. It is based on OpenVZ and is available in a non-clustering and a clustering version. The clustering version uses DRBD and Heartbeat. The GUI interface of [http://www.aventurin.net Aventurin{e}] is based on the [http://www.bluequartz.org BlueQuartz] and allows to easily manage and create virtual servers or to perform administrative tasks on the master node. [http://www.aventurin.net Aventurin{e}] is available as [http://www.solarspeed.net/cart.php?target=product&amp;amp;product_id=16261&amp;amp;category_id=272 ISO image download], as a ready to run [http://www.solarspeed.net/cart.php?target=product&amp;amp;product_id=16263&amp;amp;category_id=272 Linux Virtualization Appliance] or as a ready to run [http://www.solarspeed.net/cart.php?target=product&amp;amp;product_id=16264&amp;amp;category_id=272 Linux Virtualization Appliance Cluster].&lt;br /&gt;
&lt;br /&gt;
== Solutions First ==&lt;br /&gt;
[http://www.solutionsfirst.com.au Solutions First] is a Linux and Open Source infrastructure specialist company. Amongst many other FOSS products, we sell and support OpenVZ for our customers. We are happy to provide support of OpenVZ any Asia-Pacific customers. We have experience in generic container hosting environments, templated applications, HA clusters and much more OpenVZ specific applications.&lt;br /&gt;
&lt;br /&gt;
== SpiderTools.com ==&lt;br /&gt;
[http://spidertools.com SpiderTools] provides training for OpenVZ servers.  Students work on live servers to gain skills on how to implement OpenVZ.  20% of all sales go back to OpenVZ for development.  Students will get 6 weeks of live instruction and support.&lt;br /&gt;
&lt;br /&gt;
== Thomas-Krenn.AG ==&lt;br /&gt;
[http://www.thomas-krenn.com/ Thomas-Krenn.AG] is a server specialist, selling server systems and solutions. One of the solution products is a pre-installed [http://www.thomas-krenn.com/en/system-solutions/ha-linux-cluster.html cluster system], built with Virtuozzo. They published how to build such a cluster with OpenVZ at [[HA cluster with DRBD and Heartbeat]].&lt;br /&gt;
&lt;br /&gt;
== Unixservice ==&lt;br /&gt;
[http://www.unixservice.com/ Unixservice] provides SLAs for critical internet infrastructure provisioning. As we have grown over the past 10 years we have become fervent advocates of running such services on a grid/cluster of OpenVZ (or Virtuozzo) servers. The main R&amp;amp;D team leader has just released our own C based unxsVZ grid/cluster manager (unxsVZ) released under a GPL license, including  [http://openisp.net/openisp/unxsVZ/wiki/UBCAutonomics autonomic functions] that we have developed based on discrete mathematics and CMU/IBM research. [http://openisp.net/openisp/unxsVZ unxsVZ source, yum repository and RPMs here.] Call us now with questions; we even provide free deployment support and container tuning support for DNS/BIND, RADIUS, HTTP Apache hosting, ESMTP stores, ESMTP out and MX edge server farms on large VZ grids.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
* [[Hosting providers]] — HSPs using OpenVZ&lt;br /&gt;
* [[Download mirrors]] — people and companies providing mirrors for OpenVZ software&lt;br /&gt;
* [[Control panels]]&lt;br /&gt;
* [[2006 contributions]]&lt;/div&gt;</summary>
		<author><name>Unixservice</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.openvz.org/index.php?title=Partners&amp;diff=7324</id>
		<title>Partners</title>
		<link rel="alternate" type="text/html" href="https://wiki.openvz.org/index.php?title=Partners&amp;diff=7324"/>
		<updated>2009-05-18T00:14:16Z</updated>

		<summary type="html">&lt;p&gt;Unixservice: /* Unixservice */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Here are some companies that are working together with OpenVZ project in one or another way. Feel free to add your company profile here ('''in alphabetical order''').&lt;br /&gt;
&lt;br /&gt;
{{Note|Hosting service providers should add their entries to [[Hosting providers]], not here. Thanks.}}&lt;br /&gt;
&lt;br /&gt;
== BinaryKarma ==&lt;br /&gt;
[http://www.binarykarma.com BinaryKarma] is offering an multi-hypervisor platform, FluidVM that also supports OpenVZ, apart from Xen. FluidVM supports local and SAN storage and is also extensible via an XML-RPC based API. See [http://www.binarykarma.com/fluidvm_screenshots.php Screen shots] and [http://www.binarykarma.com/demo.php Demo Videos] for more information. FluidVM ships with a browser based interface with which users can manage multiple servers and VEs. BinaryKarma is also the developer of [http://easyvz.sourceforge.net EasyVZ], a GPL'd free GUI available for OpenVZ.&lt;br /&gt;
&lt;br /&gt;
== Blended Perspectives ==&lt;br /&gt;
&lt;br /&gt;
[http://www.blendedperspectives.com Blended Perspectives] is a strategy-to-execution consultancy based in Toronto, Canada. Our core offerings are centered on provision of Wiki platforms and OpenVZ is a favoured host operating environment to achieve scale and resiliency.&lt;br /&gt;
&lt;br /&gt;
== Computer Tyme ==&lt;br /&gt;
[http://ctyme.com Computer Tyme] is using OpenVZ for their spam filtering service [http://junkemailfilter.com Junk Email Filter dot com]. They are active proponents of OpenVZ; Marc Perkel worked at the OpenVZ booth during LinuxWorld Expo 2007.&lt;br /&gt;
&lt;br /&gt;
== Fortech I.T. Solutions ==&lt;br /&gt;
[http://FortechITSolutions.ca Fortech I.T. Solutions] is an IT consulting company based in Halifax (Nova Scotia, Canada) specializing in open-source solutions. We offer services in a variety of areas, including virtualization solutions based on a number of platforms - including OpenVZ.&lt;br /&gt;
&lt;br /&gt;
== Fry-IT Ltd ==&lt;br /&gt;
[http://www.fry-it.com Fry-IT Ltd] is a London based web, mobile and hosting consultancy and among the services we provide are system solutions involving Clustering, Load Balancing and High Availability, with OpenVZ as the virtualization technology of choice.&lt;br /&gt;
&lt;br /&gt;
An example of our consulting work is the OpenVZ cluster powering 6 applications at [http://www.da.mod.uk/ MOD Defence Academy] in the UK, the public website being one of the applications. To our clients, hosted with us or running their own infrastructure, we provide a complete solution from custom OpenVZ scripts, a container resource limits management web application to thorough documentation of system management procedures.&lt;br /&gt;
&lt;br /&gt;
== Impulso Srl ==&lt;br /&gt;
[http://impulso.it Impulso] offers white label Internet Services and uses OpenVZ cluster for their managed email services like [http://postalinda.it Posta Linda]. Impulso also offers support for OpenVZ in Italy.&lt;br /&gt;
&lt;br /&gt;
== Inguza Technology AB ==&lt;br /&gt;
[http://inguza.com/ Inguza Technology AB] maintains the Debian GNU Linux version of OpenVZ.&lt;br /&gt;
&lt;br /&gt;
== LastSpam ==&lt;br /&gt;
[http://www.lastspam.com LastSpam] offers managed e-mail security services (anti-spam and anti-virus/bad content) and uses OpenVZ to deliver excellent service and support to its customers.  Ugo Bellavance, LastSpam's head server architect and manager is an active member of the OpenVZ community: helping on the forum, making suggestions, and submitting patches.&lt;br /&gt;
&lt;br /&gt;
== netVOICE communications ==&lt;br /&gt;
[http://www.netvoice.ca/ netVOICE communications] is an Internet Telephony Service Provider (ITSP) that uses OpenVZ as the basis for their [http://www.vpas.ca/ Virtual Private Asterisk Server (VPAS)] offering. They also offer consulting on running Asterisk (the leading Open Source telephony platform) on OpenVZ. netVOICE is a Digium Approved Reseller and has a Digium Certified Asterisk Professional [http://www.digium.com/en/training/certifications/ (dCAP)] on staff.&lt;br /&gt;
&lt;br /&gt;
== Openwall ==&lt;br /&gt;
&lt;br /&gt;
At [http://www.openwall.com Openwall], we develop our own Open Source software with a focus on security, including [http://www.openwall.com/Owl/ Openwall GNU/*/Linux] (or Owl for short), a security-enhanced server platform.&lt;br /&gt;
Our [http://www.openwall.com/services/ professional services] include remote installation (you boot off CD, we do the rest) and maintenance (systems and security administration) of OpenVZ-enabled servers and mini-networks of such servers.  We typically use the OpenVZ kernel, the Owl userland for the host system, and arbitrary Linux distributions for the containers (most often that's Owl as well - with additional software to meet your needs).  We readily have software solutions for provision of advanced LAMP hosting with cross virtual host security separation within each container (that is, not only the containers are separated due to OpenVZ, but also virtual hosts within containers are separated at the OS level), multi-server backups (incremental, remote, encrypted, integrity-checked), monitoring (many custom Nagios sensors, including for things such as backups, filesystem errors, RAID status, etc.), and more.&lt;br /&gt;
&lt;br /&gt;
== Proxmox ==&lt;br /&gt;
&lt;br /&gt;
[http://pve.proxmox.com Proxmox VE] is an easy to use Open Source virtualization platform for running pre-built Virtual Appliances and Virtual Machines (based on OpenVZ and also [http://kvm.qumranet.com/kvmwiki KVM] for full virtualization). &lt;br /&gt;
&lt;br /&gt;
[http://proxmox.com Proxmox] is [http://www.proxmox.com/cms_proxmox/en/virtualization/openvz/ using OpenVZ] for their spam filtering appliance (see [[Proxmox Mail Gateway in container]]). Proxmox is also the author of [http://www.proxmox.com/cms_proxmox/en/virtualization/openvz/vzdump/ vzdump] utility.&lt;br /&gt;
&lt;br /&gt;
== Revolution Linux ==&lt;br /&gt;
&lt;br /&gt;
[http://www.revolutionlinux.com/ Revolution Linux] is an IT company specialized in large scale infrastructure deployement using Open Source technologies. Most/all of our deployements rely extensively on containers (OpenVZ and Linux Vserver).&lt;br /&gt;
&lt;br /&gt;
== Solarspeed Ltd. ==&lt;br /&gt;
[http://www.solarspeed.net Solarspeed Ltd.] is a CentOS + BlueQuartz server specialist, selling server systems and software solutions. We developed [http://www.aventurin.net Aventurin{e}], which is a Linux Virtualization Appliance Software. It is based on OpenVZ and is available in a non-clustering and a clustering version. The clustering version uses DRBD and Heartbeat. The GUI interface of [http://www.aventurin.net Aventurin{e}] is based on the [http://www.bluequartz.org BlueQuartz] and allows to easily manage and create virtual servers or to perform administrative tasks on the master node. [http://www.aventurin.net Aventurin{e}] is available as [http://www.solarspeed.net/cart.php?target=product&amp;amp;product_id=16261&amp;amp;category_id=272 ISO image download], as a ready to run [http://www.solarspeed.net/cart.php?target=product&amp;amp;product_id=16263&amp;amp;category_id=272 Linux Virtualization Appliance] or as a ready to run [http://www.solarspeed.net/cart.php?target=product&amp;amp;product_id=16264&amp;amp;category_id=272 Linux Virtualization Appliance Cluster].&lt;br /&gt;
&lt;br /&gt;
== Solutions First ==&lt;br /&gt;
[http://www.solutionsfirst.com.au Solutions First] is a Linux and Open Source infrastructure specialist company. Amongst many other FOSS products, we sell and support OpenVZ for our customers. We are happy to provide support of OpenVZ any Asia-Pacific customers. We have experience in generic container hosting environments, templated applications, HA clusters and much more OpenVZ specific applications.&lt;br /&gt;
&lt;br /&gt;
== SpiderTools.com ==&lt;br /&gt;
[http://spidertools.com SpiderTools] provides training for OpenVZ servers.  Students work on live servers to gain skills on how to implement OpenVZ.  20% of all sales go back to OpenVZ for development.  Students will get 6 weeks of live instruction and support.&lt;br /&gt;
&lt;br /&gt;
== Thomas-Krenn.AG ==&lt;br /&gt;
[http://www.thomas-krenn.com/ Thomas-Krenn.AG] is a server specialist, selling server systems and solutions. One of the solution products is a pre-installed [http://www.thomas-krenn.com/en/system-solutions/ha-linux-cluster.html cluster system], built with Virtuozzo. They published how to build such a cluster with OpenVZ at [[HA cluster with DRBD and Heartbeat]].&lt;br /&gt;
&lt;br /&gt;
== Unixservice ==&lt;br /&gt;
[http://www.unixservice.com/ Unixservice] provides SLAs for critical internet infrastructure provisioning. As we have grown over the past 10 years we have become fervent advocates of running such services on a grid/cluster of OpenVZ (or Virtuozzo) servers. The main R&amp;amp;D team leader has just released our own C based unxsVZ grid/cluster manager released under a GPL license including advanced computer science autonomic functions that we have developed based on IBM research in the field. [http://openisp.net/openisp/unxsVZ unxsVZ source, yum repository and RPMs here.] Call us now with questions; we even provide free deployment support and container tuning support for DNS/BIND, RADIUS, HTTP Apache hosting, ESMTP stores, ESMTP out and MX edge server farms on large VZ grids.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
* [[Hosting providers]] — HSPs using OpenVZ&lt;br /&gt;
* [[Download mirrors]] — people and companies providing mirrors for OpenVZ software&lt;br /&gt;
* [[Control panels]]&lt;br /&gt;
* [[2006 contributions]]&lt;/div&gt;</summary>
		<author><name>Unixservice</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.openvz.org/index.php?title=Control_panels&amp;diff=6488</id>
		<title>Control panels</title>
		<link rel="alternate" type="text/html" href="https://wiki.openvz.org/index.php?title=Control_panels&amp;diff=6488"/>
		<updated>2008-09-30T21:05:58Z</updated>

		<summary type="html">&lt;p&gt;Unixservice: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page contains links to different control panels for OpenVZ, written by third parties. If you know the project that's missing here, please add it.&lt;br /&gt;
&lt;br /&gt;
== Free software / Open source (in alphabetical order) ==&lt;br /&gt;
* Proxmox Virtual Environment: [http://pve.proxmox.com Proxmox VE Wiki] - including bare-metal ISO installer&lt;br /&gt;
* Vtonf: [http://www.vtonf.com/ homepage] | According to the documentation only runs on Centos 4.5 or higher.  Last change January 2008&lt;br /&gt;
* Webmin: [http://www.webmin.com/ homepage] | [http://www.webmin.com/cgi-bin/search_third.cgi?search=OpenVZ OpenVZ plugin] | Version 1.0, last updated 2006-02-07&lt;br /&gt;
* WebVZ: [http://webvz.sourceforge.net/ homepage] Uses Ruby on Rails which makes it a poor choice for Debian, Ubuntu and other .deb style distros.&lt;br /&gt;
&lt;br /&gt;
== Proprietary / non-free ==&lt;br /&gt;
* FluidVM: [http://www.binarykarma.com Home Page] • [http://www.binarykarma.com/demo.php Demo Videos] • [http://www.binarykarma.com/fluidvm_screenshots.php Screen shots]&lt;br /&gt;
* VZ-Manager: [http://vzmanager.de/ homepage (German)]&lt;br /&gt;
* HyperVM: [http://lxlabs.com/software/hypervm/ homepage]&lt;br /&gt;
* vzAdmin: [http://www.vzAdmin.info/ homepage (German)]&lt;br /&gt;
* Aventurin{e}: [http://www.aventurin.net/ homepage (English)]&lt;br /&gt;
&lt;br /&gt;
== Frozen projects ==&lt;br /&gt;
* VZAdmin: [http://www.ronny-goerner.de/ homepage] ''seems not available now''&lt;br /&gt;
* WVZ: [http://homaly.dunanet.hu/wvz/ homepage] ''seems frozen''&lt;br /&gt;
* New OpenVZ Web Based Control Panel by rsailor: {{forum|230}} ''seems not available now''&lt;br /&gt;
* EasyVZ: [http://easyvz.sourceforge.net/ screenshots] | [http://sourceforge.net/projects/easyvz sf.net project page] (little bit outdated, but only working and free control panel?) (requires Unix/Linux)&lt;br /&gt;
* Mwamko: [http://mwamko.devjavu.com/ homepage]&lt;br /&gt;
* OpenVZ Control panel for Windows(r): {{forum|1491}} | [http://downloads.qmailrocks.ru/vz/ downloads] ''unknown license''&lt;br /&gt;
&lt;br /&gt;
== In development ==&lt;br /&gt;
* WIVZ/GIVZ: [http://source.icenetx.net/ homepage] Release scheduled for October 2008.  Unknow license.&lt;br /&gt;
* RoboVZ: [http://sharesource.org/project/robovz homepage] {{forum|2559}} Lots of promises since announced in May 2007, nothing usable yet.  Possibly GPL license.&lt;/div&gt;</summary>
		<author><name>Unixservice</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.openvz.org/index.php?title=Control_panels&amp;diff=6487</id>
		<title>Control panels</title>
		<link rel="alternate" type="text/html" href="https://wiki.openvz.org/index.php?title=Control_panels&amp;diff=6487"/>
		<updated>2008-09-30T20:55:50Z</updated>

		<summary type="html">&lt;p&gt;Unixservice: Alphabetical order seems like a fair way to organize&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page contains links to different control panels for OpenVZ, written by third parties. If you know the project that's missing here, please add it.&lt;br /&gt;
&lt;br /&gt;
== Free software / Open source (In Alphabetical Order) ==&lt;br /&gt;
* Proxmox Virtual Environment: [http://pve.proxmox.com Proxmox VE Wiki] - including bare-metal ISO installer&lt;br /&gt;
* Vtonf: [http://www.vtonf.com/ homepage] | According to the documentation only runs on Centos 4.5 or higher.  Last change January 2008&lt;br /&gt;
* Webmin: [http://www.webmin.com/ homepage] | [http://www.webmin.com/cgi-bin/search_third.cgi?search=OpenVZ OpenVZ plugin] | Version 1.0, last updated 2006-02-07&lt;br /&gt;
* WebVZ: [http://webvz.sourceforge.net/ homepage] Uses Ruby on Rails which makes it a poor choice for Debian, Ubuntu and other .deb style distros.&lt;br /&gt;
&lt;br /&gt;
== Proprietary / non-free ==&lt;br /&gt;
* FluidVM: [http://www.binarykarma.com Home Page] • [http://www.binarykarma.com/demo.php Demo Videos] • [http://www.binarykarma.com/fluidvm_screenshots.php Screen shots]&lt;br /&gt;
* VZ-Manager: [http://vzmanager.de/ homepage (German)]&lt;br /&gt;
* HyperVM: [http://lxlabs.com/software/hypervm/ homepage]&lt;br /&gt;
* vzAdmin: [http://www.vzAdmin.info/ homepage (German)]&lt;br /&gt;
* Aventurin{e}: [http://www.aventurin.net/ homepage (English)]&lt;br /&gt;
&lt;br /&gt;
== Frozen projects ==&lt;br /&gt;
* VZAdmin: [http://www.ronny-goerner.de/ homepage] ''seems not available now''&lt;br /&gt;
* WVZ: [http://homaly.dunanet.hu/wvz/ homepage] ''seems frozen''&lt;br /&gt;
* New OpenVZ Web Based Control Panel by rsailor: {{forum|230}} ''seems not available now''&lt;br /&gt;
* EasyVZ: [http://easyvz.sourceforge.net/ screenshots] | [http://sourceforge.net/projects/easyvz sf.net project page] (little bit outdated, but only working and free control panel?) (requires Unix/Linux)&lt;br /&gt;
* Mwamko: [http://mwamko.devjavu.com/ homepage]&lt;br /&gt;
* OpenVZ Control panel for Windows(r): {{forum|1491}} | [http://downloads.qmailrocks.ru/vz/ downloads] ''unknown license''&lt;br /&gt;
&lt;br /&gt;
== In development ==&lt;br /&gt;
* WIVZ/GIVZ: [http://source.icenetx.net/ homepage] Release scheduled for October 2008.  Unknow license.&lt;br /&gt;
* RoboVZ: [http://sharesource.org/project/robovz homepage] {{forum|2559}} Lots of promises since announced in May 2007, nothing usable yet.  Possibly GPL license.&lt;/div&gt;</summary>
		<author><name>Unixservice</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.openvz.org/index.php?title=Partners&amp;diff=6437</id>
		<title>Partners</title>
		<link rel="alternate" type="text/html" href="https://wiki.openvz.org/index.php?title=Partners&amp;diff=6437"/>
		<updated>2008-09-13T13:02:48Z</updated>

		<summary type="html">&lt;p&gt;Unixservice: Initial add&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Here are some companies that are working together with OpenVZ project in one or another way. Feel free to add your company profile here ('''in alphabetical order''').&lt;br /&gt;
&lt;br /&gt;
{{Note|Hosting service providers should add their entries to [[Hosting providers]], not here. Thanks.}}&lt;br /&gt;
&lt;br /&gt;
== BinaryKarma ==&lt;br /&gt;
[http://www.binarykarma.com BinaryKarma] is offering an multi-hypervisor platform, FluidVM that also supports OpenVZ, apart from Xen. FluidVM supports local and SAN storage and is also extensible via an XML-RPC based API. See [http://www.binarykarma.com/fluidvm_screenshots.php Screen shots] and [http://www.binarykarma.com/demo.php Demo Videos] for more information. FluidVM ships with a browser based interface with which users can manage multiple servers and VEs. BinaryKarma is also the developer of [http://easyvz.sourceforge.net EasyVZ], a GPL'd free GUI available for OpenVZ.&lt;br /&gt;
&lt;br /&gt;
== Blended Perspectives ==&lt;br /&gt;
&lt;br /&gt;
[http://www.blendedperspectives.com Blended Perspectives] is a strategy-to-execution consultancy based in Toronto, Canada. Our core offerings are centered on provision of Wiki platforms and OpenVZ is a favoured host operating environment to achieve scale and resiliency.&lt;br /&gt;
&lt;br /&gt;
== Computer Tyme ==&lt;br /&gt;
[http://ctyme.com Computer Tyme] is using OpenVZ for their spam filtering service [http://junkemailfilter.com Junk Email Filter dot com]. They are active proponents of OpenVZ; Marc Perkel worked at the OpenVZ booth during LinuxWorld Expo 2007.&lt;br /&gt;
&lt;br /&gt;
== Fortech I.T. Solutions ==&lt;br /&gt;
[http://FortechITSolutions.ca Fortech I.T. Solutions] is an IT consulting company based in Halifax (Nova Scotia, Canada) specializing in open-source solutions. We offer services in a variety of areas, including virtualization solutions based on a number of platforms - including OpenVZ.&lt;br /&gt;
&lt;br /&gt;
== Fry-IT Ltd ==&lt;br /&gt;
[http://www.fry-it.com Fry-IT Ltd] is a London based web, mobile and hosting consultancy and among the services we provide are system solutions involving Clustering, Load Balancing and High Availability, with OpenVZ as the virtualization technology of choice.&lt;br /&gt;
&lt;br /&gt;
An example of our consulting work is the OpenVZ cluster powering 6 applications at [http://www.da.mod.uk/ MOD Defence Academy] in the UK, the public website being one of the applications. To our clients, hosted with us or running their own infrastructure, we provide a complete solution from custom OpenVZ scripts, a container resource limits management web application to thorough documentation of system management procedures.&lt;br /&gt;
&lt;br /&gt;
== Inguza Technology AB ==&lt;br /&gt;
[http://inguza.com/ Inguza Technology AB] maintains the Debian GNU Linux version of OpenVZ.&lt;br /&gt;
&lt;br /&gt;
== LastSpam ==&lt;br /&gt;
[http://www.lastspam.com LastSpam] offers managed e-mail security services (anti-spam and anti-virus/bad content) and uses OpenVZ to deliver excellent service and support to its customers.  Ugo Bellavance, LastSpam's head server architect and manager is an active member of the OpenVZ community: helping on the forum, making suggestions, and submitting patches.&lt;br /&gt;
&lt;br /&gt;
== netVOICE communications ==&lt;br /&gt;
[http://www.netvoice.ca/ netVOICE communications] is an Internet Telephony Service Provider (ITSP) that uses OpenVZ as the basis for their [http://www.vpas.ca/ Virtual Private Asterisk Server (VPAS)] offering. They also offer consulting on running Asterisk (the leading Open Source telephony platform) on OpenVZ. netVOICE is a Digium Approved Reseller and has a Digium Certified Asterisk Professional [http://www.digium.com/en/training/certifications/ (dCAP)] on staff.&lt;br /&gt;
&lt;br /&gt;
== Openwall ==&lt;br /&gt;
&lt;br /&gt;
At [http://www.openwall.com Openwall], we develop our own Open Source software with a focus on security, including [http://www.openwall.com/Owl/ Openwall GNU/*/Linux] (or Owl for short), a security-enhanced server platform.&lt;br /&gt;
Our [http://www.openwall.com/services/ professional services] include remote installation (you boot off CD, we do the rest) and maintenance (systems and security administration) of OpenVZ-enabled servers and mini-networks of such servers.  We typically use the OpenVZ kernel, the Owl userland for the host system, and arbitrary Linux distributions for the containers (most often that's Owl as well - with additional software to meet your needs).  We readily have software solutions for provision of advanced LAMP hosting with cross virtual host security separation within each container (that is, not only the containers are separated due to OpenVZ, but also virtual hosts within containers are separated at the OS level), multi-server backups (incremental, remote, encrypted, integrity-checked), monitoring (many custom Nagios sensors, including for things such as backups, filesystem errors, RAID status, etc.), and more.&lt;br /&gt;
&lt;br /&gt;
== Proxmox ==&lt;br /&gt;
&lt;br /&gt;
[http://pve.proxmox.com Proxmox VE] is an easy to use Open Source virtualization platform for running pre-built Virtual Appliances and Virtual Machines (based on OpenVZ and also [http://kvm.qumranet.com/kvmwiki KVM] for full virtualization). &lt;br /&gt;
&lt;br /&gt;
[http://proxmox.com Proxmox] is [http://www.proxmox.com/cms_proxmox/en/virtualization/openvz/ using OpenVZ] for their spam filtering appliance (see [[Proxmox Mail Gateway in container]]). Proxmox is also the author of [http://www.proxmox.com/cms_proxmox/en/virtualization/openvz/vzdump/ vzdump] utility.&lt;br /&gt;
&lt;br /&gt;
== Revolution Linux ==&lt;br /&gt;
&lt;br /&gt;
[http://www.revolutionlinux.com/ Revolution Linux] is an IT company specialized in large scale infrastructure deployement using Open Source technologies. Most/all of our deployements rely extensively on containers (OpenVZ and Linux Vserver).&lt;br /&gt;
&lt;br /&gt;
== Solarspeed Ltd. ==&lt;br /&gt;
[http://www.solarspeed.net Solarspeed Ltd.] is a CentOS + BlueQuartz server specialist, selling server systems and software solutions. We developed [http://www.aventurin.net Aventurin{e}], which is a Linux Virtualization Appliance Software. It is based on OpenVZ and is available in a non-clustering and a clustering version. The clustering version uses DRBD and Heartbeat. The GUI interface of [http://www.aventurin.net Aventurin{e}] is based on the [http://www.bluequartz.org BlueQuartz] and allows to easily manage and create virtual servers or to perform administrative tasks on the master node. [http://www.aventurin.net Aventurin{e}] is available as [http://www.solarspeed.net/cart.php?target=product&amp;amp;product_id=16261&amp;amp;category_id=272 ISO image download], as a ready to run [http://www.solarspeed.net/cart.php?target=product&amp;amp;product_id=16263&amp;amp;category_id=272 Linux Virtualization Appliance] or as a ready to run [http://www.solarspeed.net/cart.php?target=product&amp;amp;product_id=16264&amp;amp;category_id=272 Linux Virtualization Appliance Cluster].&lt;br /&gt;
&lt;br /&gt;
== Solutions First ==&lt;br /&gt;
[http://www.solutionsfirst.com.au Solutions First] is a Linux and Open Source infrastructure specialist company. Amongst many other FOSS products, we sell and support OpenVZ for our customers. We are happy to provide support of OpenVZ any Asia-Pacific customers. We have experience in generic container hosting environments, templated applications, HA clusters and much more OpenVZ specific applications.&lt;br /&gt;
&lt;br /&gt;
== SpiderTools.com ==&lt;br /&gt;
[http://spidertools.com SpiderTools] provides training for OpenVZ servers.  Students work on live servers to gain skills on how to implement OpenVZ.  20% of all sales go back to OpenVZ for development.  Students will get 6 weeks of live instruction and support.&lt;br /&gt;
&lt;br /&gt;
== Thomas-Krenn.AG ==&lt;br /&gt;
[http://www.thomas-krenn.com/ Thomas-Krenn.AG] is a server specialist, selling server systems and solutions. One of the solution products is a pre-installed [http://www.thomas-krenn.com/en/system-solutions/ha-linux-cluster.html cluster system], built with Virtuozzo. They published how to build such a cluster with OpenVZ at [[HA cluster with DRBD and Heartbeat]].&lt;br /&gt;
&lt;br /&gt;
== Unixservice ==&lt;br /&gt;
[http://www.unixservice.com/ Unixservice] provides SLAs for critical internet infrastructure provisioning. As we have grown over the past 10 years we have become fervent advocates of running such services on a grid/cluster of OpenVZ (or Virtuozzo) servers. The main R&amp;amp;D team leader is working on getting our own C based unxsVZ grid/cluster manager released shortly under a GPL license including advanced computer science autonomic functions that we have developed based on IBM research in the field. Call us now with questions; we even provide free deployment support and container tuning support for DNS/BIND, RADIUS, HTTP Apache hosting, ESMTP stores, ESMTP out and MX edge server farms on large VZ grids.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
* [[Hosting providers]] — HSPs using OpenVZ&lt;br /&gt;
* [[Download mirrors]] — people and companies providing mirrors for OpenVZ software&lt;br /&gt;
* [[Control panels]]&lt;br /&gt;
* [[2006 contributions]]&lt;/div&gt;</summary>
		<author><name>Unixservice</name></author>
		
	</entry>
</feed>