<?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=Mainframe</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=Mainframe"/>
	<link rel="alternate" type="text/html" href="https://wiki.openvz.org/Special:Contributions/Mainframe"/>
	<updated>2026-05-15T15:00:48Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.31.1</generator>
	<entry>
		<id>https://wiki.openvz.org/index.php?title=NFS_server_inside_container&amp;diff=13059</id>
		<title>NFS server inside container</title>
		<link rel="alternate" type="text/html" href="https://wiki.openvz.org/index.php?title=NFS_server_inside_container&amp;diff=13059"/>
		<updated>2012-10-23T19:53:41Z</updated>

		<summary type="html">&lt;p&gt;Mainframe: /* Kernel NFS server */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;There are two ways to setup NFS server on common [[HN]]:&lt;br /&gt;
use a user-space NFS server daemon or use an in-kernel implementation&lt;br /&gt;
of NFS server.&lt;br /&gt;
&lt;br /&gt;
{{Note|for information about NFS client inside container, see [[NFS]].}}&lt;br /&gt;
&lt;br /&gt;
== Kernel NFS server ==&lt;br /&gt;
&lt;br /&gt;
Kernel-space NFS server is supported by latest RHEL5 and RHEL6 based kernels and since vzctl-3.0.24. NB! Currently only NFSv3 is supported - no NFSv4 support yet.&lt;br /&gt;
&lt;br /&gt;
In order to run an NFS server inside a container, make sure:&lt;br /&gt;
* nfsd kernel module is loaded on host system before starting a container&lt;br /&gt;
* nfsd feature for a container is turned on (&amp;lt;code&amp;gt;vzctl set $CTID --feature nfsd:on --save&amp;lt;/code&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
Setup NFSv3 inside RHEL6/CentOS6/SL6 container:&lt;br /&gt;
* Make sure that rpcbind service is started before nfs service:  &amp;lt;pre&amp;gt;chkconfig rpcbind on &amp;amp;&amp;amp; service rpcbind start&amp;lt;/pre&amp;gt;&lt;br /&gt;
* Disable NFSv4 and nfsd module loading warnings in /etc/sysconfig/nfs:&lt;br /&gt;
&amp;lt;pre&amp;gt;vi /etc/sysconfig/nfs&lt;br /&gt;
--- MODIFY ---&lt;br /&gt;
MOUNTD_NFS_V3=&amp;quot;yes&amp;quot;&lt;br /&gt;
RPCNFSDARGS=&amp;quot;-N 4&amp;quot;&lt;br /&gt;
NFSD_MODULE=&amp;quot;noload&amp;quot;&lt;br /&gt;
--- MODIFY ---&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
* Start NFS service:&amp;lt;pre&amp;gt;chkconfig nfs on &amp;amp;&amp;amp; service nfs start&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== User-space NFS server ==&lt;br /&gt;
Advantage of user-space NFS server is that it does not require kernel support.&lt;br /&gt;
Also if it crashes — there is no crash of the system: just one process dies, not the kernel!&lt;br /&gt;
The disadvantage of user-space NFS server is its productivity: no one can be faster than in-kernel implementation.&lt;br /&gt;
&lt;br /&gt;
One well-known implementation of NFS server is &amp;quot;The LINUX User-Space NFS Server&amp;quot; by Olaf Kirch.&lt;br /&gt;
Some Linux distributions contain this package: Debian Sarge (&amp;lt;code&amp;gt;nfs-user-server&amp;lt;/code&amp;gt;), OpenSUSE 10.0 (&amp;lt;code&amp;gt;nfs-server&amp;lt;/code&amp;gt;).&lt;br /&gt;
For other distributions you can download sources (for example from Debian repository) and compile it.&lt;br /&gt;
There is a small trick you have to know about running &amp;lt;code&amp;gt;mountd&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;nfsd&amp;lt;/code&amp;gt; (these two daemons and &amp;lt;code&amp;gt;portmap&amp;lt;/code&amp;gt; constitute a user-space server).  You should run them with the &amp;lt;code&amp;gt;-r&amp;lt;/code&amp;gt; option:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# portmap&lt;br /&gt;
# rpc.mountd -r&lt;br /&gt;
# rpc.nfsd -r&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
The reason is that these daemons check the major number of the device where the directory to export resides.&lt;br /&gt;
If major equals 0 then daemons assume that it is NFS and don't want to re-export it. Symptoms are&lt;br /&gt;
that clients will always get a &amp;quot;permission denied&amp;quot; error. Simfs (the file system on which container is located)&lt;br /&gt;
is associated with so called unnamed device, in which major equals 0. So, to prevent daemons from checking for&lt;br /&gt;
re-exporting — just use this &amp;lt;code&amp;gt;-r&amp;lt;/code&amp;gt; option.&lt;br /&gt;
&lt;br /&gt;
“The LINUX User-Space NFS Server” by Olaf Kirch implements NFSv2. It means that only files with sizes less&lt;br /&gt;
than 2GB are processed. If you intend to use such big files then you should use another user-space NFS server&lt;br /&gt;
implementation: [http://unfs3.sourceforge.net/ unfs3]. It implements v3 of NFS protocol standard.&lt;br /&gt;
&lt;br /&gt;
Please note that the user-space NFS server does not provide locking, or at least I couldn't get locking to work - [[User:Elronxenu|Elronxenu]] 19:49, 15 November 2007 (EST)&lt;br /&gt;
&lt;br /&gt;
=== On Debian Lenny ===&lt;br /&gt;
&lt;br /&gt;
The current stable debian version 5.0 (lenny) provides two packages for user space nfs support: &amp;lt;code&amp;gt;nfs-user-server&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;unfs3&amp;lt;/code&amp;gt;. Here i describe my experiences with them --[[User:Strimo|Strimo]] 17:47, 16 February 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
It seems that also the unfs3 package has been removed from the debian repositories. --[[Special:Contributions/95.21.175.189|95.21.175.189]] 23:39, 30 July 2011 (UTC)&lt;br /&gt;
&lt;br /&gt;
==== nfs-user-server ====&lt;br /&gt;
&lt;br /&gt;
IMPORTANT : read http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=515957 , nfs-user-server was removed&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
aptitude install nfs-user-server&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
First i used nfs-user-server package since i didn't know unfs3. After installing i always got the '''permission denied''' error when i tried to mount any exported path until i found this article. So i patched the /etc/init.d/nfs-user-server file to include the &amp;lt;code&amp;gt;-r&amp;lt;/code&amp;gt; parameter by adding &amp;lt;code&amp;gt;-- -r&amp;lt;/code&amp;gt; to the &amp;lt;code&amp;gt;start-stop-daemon&amp;lt;/code&amp;gt; line responsible for starting &amp;lt;code&amp;gt;rpc.mountd&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;rpc.nfsd&amp;lt;/code&amp;gt;:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
        start-stop-daemon --start --oknodo --quiet --exec /usr/sbin/rpc.nfsd -- -r&lt;br /&gt;
        start-stop-daemon --start --oknodo --quiet --exec /usr/sbin/rpc.mountd -- -r&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
After the modification and a nfs server restart (&amp;lt;code&amp;gt;/etc/init.d/nfs-user-server restart&amp;lt;/code&amp;gt;) i was able to mount a nfs share. At first the nfs server seems to work fine but anytime i want to edit any text file (using nano or mcedit) i got strange errors on writing to the file and i never solved the problem nor detected why this happens. So i switched to unfs3 ...&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Note&amp;lt;/b&amp;gt;: nfsmount from busybox not works with nfs-user-server in Debian Lenny, it write message &amp;quot;rpc failed: 2&amp;quot; when I try boot from nfs server. unfs3 works fine.&lt;br /&gt;
Such problem into Ubuntu: https://bugs.launchpad.net/ubuntu/+source/nfs-user-server/+bug/189593&lt;br /&gt;
&lt;br /&gt;
==== unfs3 ====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
aptitude install unfs3&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Works fine until now. Note that both unfs3 and nfs-user-server do not support file locking!&lt;br /&gt;
NOTE: I tested on centos 5.6 using unfs3 and I had to run the /etc/init.d/nfs service and see it work before I could use unfs. also use exports -a before using  sudo /usr/sbin/unfsd -T -e /etc/exports&lt;br /&gt;
&lt;br /&gt;
=== On CentOS 5 ===&lt;br /&gt;
&lt;br /&gt;
If you are running RedHat/CentOS, you can [http://dag.wieers.com/rpm/packages/unfs3/ get unfs3 from the DAG repository] &lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
* [http://nfs.sourceforge.net/ Linux NFS Overview, FAQ and HOWTO Documents]&lt;br /&gt;
* [http://www.tldp.org/LDP/nag/nag.html The Network Administrators' Guide by Olaf Kirch]&lt;br /&gt;
* [http://unfs3.sourceforge.net/ unfs3 homepage]&lt;br /&gt;
* [http://packages.qa.debian.org/n/nfs-user-server.html Overview of nfs-user-server  source package]&lt;br /&gt;
&lt;br /&gt;
[[Category: HOWTO]]&lt;br /&gt;
[[Category: Networking]]&lt;/div&gt;</summary>
		<author><name>Mainframe</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.openvz.org/index.php?title=NFS_server_inside_container&amp;diff=13058</id>
		<title>NFS server inside container</title>
		<link rel="alternate" type="text/html" href="https://wiki.openvz.org/index.php?title=NFS_server_inside_container&amp;diff=13058"/>
		<updated>2012-10-23T19:47:48Z</updated>

		<summary type="html">&lt;p&gt;Mainframe: /* Kernel NFS server */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;There are two ways to setup NFS server on common [[HN]]:&lt;br /&gt;
use a user-space NFS server daemon or use an in-kernel implementation&lt;br /&gt;
of NFS server.&lt;br /&gt;
&lt;br /&gt;
{{Note|for information about NFS client inside container, see [[NFS]].}}&lt;br /&gt;
&lt;br /&gt;
== Kernel NFS server ==&lt;br /&gt;
&lt;br /&gt;
Kernel-space NFS server is supported by latest RHEL5 and RHEL6 based kernels and since vzctl-3.0.24. NB! Currently only NFSv3 is supported - no NFSv4 support yet.&lt;br /&gt;
&lt;br /&gt;
In order to run an NFS server inside a container, make sure:&lt;br /&gt;
* nfsd kernel module is loaded on host system before starting a container&lt;br /&gt;
* nfsd feature for a container is turned on (&amp;lt;code&amp;gt;vzctl set $CTID --feature nfsd:on --save&amp;lt;/code&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
Setup NFSv3 inside RHEL6/CentOS6/SL6 container:&lt;br /&gt;
* Make sure that rpcbind service is started before nfs service:  &amp;lt;code&amp;gt;chkconfig rpcbind on &amp;amp;&amp;amp; service rpcbind start&amp;lt;/code&amp;gt;&lt;br /&gt;
* Disable NFSv4 and nfsd module loading warnings in /etc/sysconfig/nfs:&amp;lt;code&amp;gt;&lt;br /&gt;
vi /etc/sysconfig/nfs&lt;br /&gt;
&lt;br /&gt;
--- MODIFY ---&lt;br /&gt;
&lt;br /&gt;
MOUNTD_NFS_V3=&amp;quot;yes&amp;quot;&lt;br /&gt;
&lt;br /&gt;
RPCNFSDARGS=&amp;quot;-N 4&amp;quot;&lt;br /&gt;
&lt;br /&gt;
NFSD_MODULE=&amp;quot;noload&amp;quot;&lt;br /&gt;
&lt;br /&gt;
--- MODIFY ---&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
* Start NFS service:&amp;lt;code&amp;gt;chkconfig nfs on &amp;amp;&amp;amp; service nfs start&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== User-space NFS server ==&lt;br /&gt;
Advantage of user-space NFS server is that it does not require kernel support.&lt;br /&gt;
Also if it crashes — there is no crash of the system: just one process dies, not the kernel!&lt;br /&gt;
The disadvantage of user-space NFS server is its productivity: no one can be faster than in-kernel implementation.&lt;br /&gt;
&lt;br /&gt;
One well-known implementation of NFS server is &amp;quot;The LINUX User-Space NFS Server&amp;quot; by Olaf Kirch.&lt;br /&gt;
Some Linux distributions contain this package: Debian Sarge (&amp;lt;code&amp;gt;nfs-user-server&amp;lt;/code&amp;gt;), OpenSUSE 10.0 (&amp;lt;code&amp;gt;nfs-server&amp;lt;/code&amp;gt;).&lt;br /&gt;
For other distributions you can download sources (for example from Debian repository) and compile it.&lt;br /&gt;
There is a small trick you have to know about running &amp;lt;code&amp;gt;mountd&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;nfsd&amp;lt;/code&amp;gt; (these two daemons and &amp;lt;code&amp;gt;portmap&amp;lt;/code&amp;gt; constitute a user-space server).  You should run them with the &amp;lt;code&amp;gt;-r&amp;lt;/code&amp;gt; option:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# portmap&lt;br /&gt;
# rpc.mountd -r&lt;br /&gt;
# rpc.nfsd -r&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
The reason is that these daemons check the major number of the device where the directory to export resides.&lt;br /&gt;
If major equals 0 then daemons assume that it is NFS and don't want to re-export it. Symptoms are&lt;br /&gt;
that clients will always get a &amp;quot;permission denied&amp;quot; error. Simfs (the file system on which container is located)&lt;br /&gt;
is associated with so called unnamed device, in which major equals 0. So, to prevent daemons from checking for&lt;br /&gt;
re-exporting — just use this &amp;lt;code&amp;gt;-r&amp;lt;/code&amp;gt; option.&lt;br /&gt;
&lt;br /&gt;
“The LINUX User-Space NFS Server” by Olaf Kirch implements NFSv2. It means that only files with sizes less&lt;br /&gt;
than 2GB are processed. If you intend to use such big files then you should use another user-space NFS server&lt;br /&gt;
implementation: [http://unfs3.sourceforge.net/ unfs3]. It implements v3 of NFS protocol standard.&lt;br /&gt;
&lt;br /&gt;
Please note that the user-space NFS server does not provide locking, or at least I couldn't get locking to work - [[User:Elronxenu|Elronxenu]] 19:49, 15 November 2007 (EST)&lt;br /&gt;
&lt;br /&gt;
=== On Debian Lenny ===&lt;br /&gt;
&lt;br /&gt;
The current stable debian version 5.0 (lenny) provides two packages for user space nfs support: &amp;lt;code&amp;gt;nfs-user-server&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;unfs3&amp;lt;/code&amp;gt;. Here i describe my experiences with them --[[User:Strimo|Strimo]] 17:47, 16 February 2009 (UTC)&lt;br /&gt;
&lt;br /&gt;
It seems that also the unfs3 package has been removed from the debian repositories. --[[Special:Contributions/95.21.175.189|95.21.175.189]] 23:39, 30 July 2011 (UTC)&lt;br /&gt;
&lt;br /&gt;
==== nfs-user-server ====&lt;br /&gt;
&lt;br /&gt;
IMPORTANT : read http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=515957 , nfs-user-server was removed&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
aptitude install nfs-user-server&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
First i used nfs-user-server package since i didn't know unfs3. After installing i always got the '''permission denied''' error when i tried to mount any exported path until i found this article. So i patched the /etc/init.d/nfs-user-server file to include the &amp;lt;code&amp;gt;-r&amp;lt;/code&amp;gt; parameter by adding &amp;lt;code&amp;gt;-- -r&amp;lt;/code&amp;gt; to the &amp;lt;code&amp;gt;start-stop-daemon&amp;lt;/code&amp;gt; line responsible for starting &amp;lt;code&amp;gt;rpc.mountd&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;rpc.nfsd&amp;lt;/code&amp;gt;:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
        start-stop-daemon --start --oknodo --quiet --exec /usr/sbin/rpc.nfsd -- -r&lt;br /&gt;
        start-stop-daemon --start --oknodo --quiet --exec /usr/sbin/rpc.mountd -- -r&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
After the modification and a nfs server restart (&amp;lt;code&amp;gt;/etc/init.d/nfs-user-server restart&amp;lt;/code&amp;gt;) i was able to mount a nfs share. At first the nfs server seems to work fine but anytime i want to edit any text file (using nano or mcedit) i got strange errors on writing to the file and i never solved the problem nor detected why this happens. So i switched to unfs3 ...&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Note&amp;lt;/b&amp;gt;: nfsmount from busybox not works with nfs-user-server in Debian Lenny, it write message &amp;quot;rpc failed: 2&amp;quot; when I try boot from nfs server. unfs3 works fine.&lt;br /&gt;
Such problem into Ubuntu: https://bugs.launchpad.net/ubuntu/+source/nfs-user-server/+bug/189593&lt;br /&gt;
&lt;br /&gt;
==== unfs3 ====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
aptitude install unfs3&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Works fine until now. Note that both unfs3 and nfs-user-server do not support file locking!&lt;br /&gt;
NOTE: I tested on centos 5.6 using unfs3 and I had to run the /etc/init.d/nfs service and see it work before I could use unfs. also use exports -a before using  sudo /usr/sbin/unfsd -T -e /etc/exports&lt;br /&gt;
&lt;br /&gt;
=== On CentOS 5 ===&lt;br /&gt;
&lt;br /&gt;
If you are running RedHat/CentOS, you can [http://dag.wieers.com/rpm/packages/unfs3/ get unfs3 from the DAG repository] &lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
* [http://nfs.sourceforge.net/ Linux NFS Overview, FAQ and HOWTO Documents]&lt;br /&gt;
* [http://www.tldp.org/LDP/nag/nag.html The Network Administrators' Guide by Olaf Kirch]&lt;br /&gt;
* [http://unfs3.sourceforge.net/ unfs3 homepage]&lt;br /&gt;
* [http://packages.qa.debian.org/n/nfs-user-server.html Overview of nfs-user-server  source package]&lt;br /&gt;
&lt;br /&gt;
[[Category: HOWTO]]&lt;br /&gt;
[[Category: Networking]]&lt;/div&gt;</summary>
		<author><name>Mainframe</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.openvz.org/index.php?title=Control_panels&amp;diff=8246</id>
		<title>Control panels</title>
		<link rel="alternate" type="text/html" href="https://wiki.openvz.org/index.php?title=Control_panels&amp;diff=8246"/>
		<updated>2010-02-21T01:59:29Z</updated>

		<summary type="html">&lt;p&gt;Mainframe: /* In development */&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. Requires 64bit Processor.&lt;br /&gt;
* [http://solukom.com/software/slkvm slkvm]: console scripts to handle vz virtualization in a two node cluster.&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;
* vpsAdmin [http://www.vpsadmin.org/ homepage] - GPLv3 license, PHP+MySQL+Bash, Multi-server &amp;amp; Multilingual support, vpsAdmin 1.0 released on January 19, 2010&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] Version 2.0 released September 7, 2008. Requires Ruby on Rails.&lt;br /&gt;
&lt;br /&gt;
== Proprietary / non-free ==&lt;br /&gt;
* VirtPanel [http://www.virtpanel.com homepage], Support for Xen and VMware in the future.&lt;br /&gt;
* Aventurin{e}: [http://www.aventurin.net/ homepage (English)]&lt;br /&gt;
* FluidVM: [http://www.fluidvm.com Home Page] free (trial) for up to 5 VE's&lt;br /&gt;
* Panenthe: [http://www.panenthe.com/ homepage (English)] • [http://www.panenthe.com/products/panenthe-media/cat_id=4/ Screen shots]&lt;br /&gt;
* vePortal: [http://www.veportal.com/ homepage (English)] - Most Widely Used OpenVZ Management Panel.&lt;br /&gt;
* SolusVM [http://www.solusvm.com homepage], Appears to be reasonably priced.  Advertised as $10 per node.&lt;br /&gt;
* vcPanel :[http://vcpanel.net Home Page], The first centralized VPS control panel for managing VPS around the globe [http://vcpanel.net/Demo Demo] free for up to 5 VE's&lt;br /&gt;
* VDSmanager for Linux :[http://ispsystem.com/en/software/vdsmanager/ 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] - Recently the 'consortium' attempting to work on HyperVM collapsed, rendering its future unknown.&lt;br /&gt;
* Vtonf: [http://www.vtonf.com/ homepage] | According to the documentation only runs on CentOS 4.5 or higher. Last change April 2008 - No longer supported. Does not work on CentOS 5+. Web page is no longer valid.  Consider this one dead.&lt;br /&gt;
* WIVZ/GIVZ: [http://source.icenetx.net/ homepage] Release scheduled for October 2008 - never released.  Unknown license.&lt;br /&gt;
* vzAdmin: [http://www.vzAdmin.info/ homepage (German)] Domain vzAdmin.info not delegated&lt;br /&gt;
* VZ-Manager: [http://vzmanager.de/ homepage (German)] website shows apache default page (11. 02. 2010)&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;
* OpenNode: [http://opennode.activesys.org/ homepage (English)] - Bare-metal ISO installer (CentOS based) providing openvz, kvm, libvirt and func out-of-box. Management consoles currently under development. &lt;br /&gt;
* OpenVZ Web Panel [http://code.google.com/p/ovz-web-panel/ homepage] - In development, pre-release available. Requires Ruby on Rails.&lt;br /&gt;
* VZWave [http://www.vzwave.com homepage] Website now shows an unavailable message.&lt;/div&gt;</summary>
		<author><name>Mainframe</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.openvz.org/index.php?title=Control_panels&amp;diff=8245</id>
		<title>Control panels</title>
		<link rel="alternate" type="text/html" href="https://wiki.openvz.org/index.php?title=Control_panels&amp;diff=8245"/>
		<updated>2010-02-21T01:58:49Z</updated>

		<summary type="html">&lt;p&gt;Mainframe: /* 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. Requires 64bit Processor.&lt;br /&gt;
* [http://solukom.com/software/slkvm slkvm]: console scripts to handle vz virtualization in a two node cluster.&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;
* vpsAdmin [http://www.vpsadmin.org/ homepage] - GPLv3 license, PHP+MySQL+Bash, Multi-server &amp;amp; Multilingual support, vpsAdmin 1.0 released on January 19, 2010&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] Version 2.0 released September 7, 2008. Requires Ruby on Rails.&lt;br /&gt;
&lt;br /&gt;
== Proprietary / non-free ==&lt;br /&gt;
* VirtPanel [http://www.virtpanel.com homepage], Support for Xen and VMware in the future.&lt;br /&gt;
* Aventurin{e}: [http://www.aventurin.net/ homepage (English)]&lt;br /&gt;
* FluidVM: [http://www.fluidvm.com Home Page] free (trial) for up to 5 VE's&lt;br /&gt;
* Panenthe: [http://www.panenthe.com/ homepage (English)] • [http://www.panenthe.com/products/panenthe-media/cat_id=4/ Screen shots]&lt;br /&gt;
* vePortal: [http://www.veportal.com/ homepage (English)] - Most Widely Used OpenVZ Management Panel.&lt;br /&gt;
* SolusVM [http://www.solusvm.com homepage], Appears to be reasonably priced.  Advertised as $10 per node.&lt;br /&gt;
* vcPanel :[http://vcpanel.net Home Page], The first centralized VPS control panel for managing VPS around the globe [http://vcpanel.net/Demo Demo] free for up to 5 VE's&lt;br /&gt;
* VDSmanager for Linux :[http://ispsystem.com/en/software/vdsmanager/ 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] - Recently the 'consortium' attempting to work on HyperVM collapsed, rendering its future unknown.&lt;br /&gt;
* Vtonf: [http://www.vtonf.com/ homepage] | According to the documentation only runs on CentOS 4.5 or higher. Last change April 2008 - No longer supported. Does not work on CentOS 5+. Web page is no longer valid.  Consider this one dead.&lt;br /&gt;
* WIVZ/GIVZ: [http://source.icenetx.net/ homepage] Release scheduled for October 2008 - never released.  Unknown license.&lt;br /&gt;
* vzAdmin: [http://www.vzAdmin.info/ homepage (German)] Domain vzAdmin.info not delegated&lt;br /&gt;
* VZ-Manager: [http://vzmanager.de/ homepage (German)] website shows apache default page (11. 02. 2010)&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;
* OpenVZ Web Panel [http://code.google.com/p/ovz-web-panel/ homepage] - In development, pre-release available. Requires Ruby on Rails.&lt;br /&gt;
* VZWave [http://www.vzwave.com homepage] Website now shows an unavailable message.&lt;/div&gt;</summary>
		<author><name>Mainframe</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.openvz.org/index.php?title=Control_panels&amp;diff=8244</id>
		<title>Control panels</title>
		<link rel="alternate" type="text/html" href="https://wiki.openvz.org/index.php?title=Control_panels&amp;diff=8244"/>
		<updated>2010-02-21T01:44:59Z</updated>

		<summary type="html">&lt;p&gt;Mainframe: /* 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. Requires 64bit Processor.&lt;br /&gt;
* OpenNode: [http://opennode.activesys.org/ homepage (English)] - Bare-metal ISO installer (CentOS based) providing openvz, kvm, libvirt and func support out-of-box. Management consoles currently under development. &lt;br /&gt;
* [http://solukom.com/software/slkvm slkvm]: console scripts to handle vz virtualization in a two node cluster.&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;
* vpsAdmin [http://www.vpsadmin.org/ homepage] - GPLv3 license, PHP+MySQL+Bash, Multi-server &amp;amp; Multilingual support, vpsAdmin 1.0 released on January 19, 2010&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] Version 2.0 released September 7, 2008. Requires Ruby on Rails.&lt;br /&gt;
&lt;br /&gt;
== Proprietary / non-free ==&lt;br /&gt;
* VirtPanel [http://www.virtpanel.com homepage], Support for Xen and VMware in the future.&lt;br /&gt;
* Aventurin{e}: [http://www.aventurin.net/ homepage (English)]&lt;br /&gt;
* FluidVM: [http://www.fluidvm.com Home Page] free (trial) for up to 5 VE's&lt;br /&gt;
* Panenthe: [http://www.panenthe.com/ homepage (English)] • [http://www.panenthe.com/products/panenthe-media/cat_id=4/ Screen shots]&lt;br /&gt;
* vePortal: [http://www.veportal.com/ homepage (English)] - Most Widely Used OpenVZ Management Panel.&lt;br /&gt;
* SolusVM [http://www.solusvm.com homepage], Appears to be reasonably priced.  Advertised as $10 per node.&lt;br /&gt;
* vcPanel :[http://vcpanel.net Home Page], The first centralized VPS control panel for managing VPS around the globe [http://vcpanel.net/Demo Demo] free for up to 5 VE's&lt;br /&gt;
* VDSmanager for Linux :[http://ispsystem.com/en/software/vdsmanager/ 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] - Recently the 'consortium' attempting to work on HyperVM collapsed, rendering its future unknown.&lt;br /&gt;
* Vtonf: [http://www.vtonf.com/ homepage] | According to the documentation only runs on CentOS 4.5 or higher. Last change April 2008 - No longer supported. Does not work on CentOS 5+. Web page is no longer valid.  Consider this one dead.&lt;br /&gt;
* WIVZ/GIVZ: [http://source.icenetx.net/ homepage] Release scheduled for October 2008 - never released.  Unknown license.&lt;br /&gt;
* vzAdmin: [http://www.vzAdmin.info/ homepage (German)] Domain vzAdmin.info not delegated&lt;br /&gt;
* VZ-Manager: [http://vzmanager.de/ homepage (German)] website shows apache default page (11. 02. 2010)&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;
* OpenVZ Web Panel [http://code.google.com/p/ovz-web-panel/ homepage] - In development, pre-release available. Requires Ruby on Rails.&lt;br /&gt;
* VZWave [http://www.vzwave.com homepage] Website now shows an unavailable message.&lt;/div&gt;</summary>
		<author><name>Mainframe</name></author>
		
	</entry>
</feed>