Parallels Virtuozzo Panel
Parallels Virtuozzo Containers is a patented OS virtualization solution. Virtuozzo Containers 4.0 creates isolated partitions or Containers on a single physical server and OS instance to utilize hardware, software, data center and management effort with maximum efficiency. parallels virtuozzo panel is very easy to handle a containers. Here we have given some commands to configure Parrallels Virtuozzo panel. Lets start
# vzctl destroy 101
Destroying Container private area: /vz/private/101
Container is currently mounted (unmount first)
# vzctl stop 101
Stopping Container …
Container was stopped
Container is unmounted
# vzctl destroy 101
Destroying Container private area: /vz/private/101
Container private area was destroyed
# ls /etc/vz/conf/101.*
/etc/vz/conf/101.conf.destroyed
# vzctl status 101
VEID 101 deleted unmounted down
———————————————————————–
How to Disabling Container?
# vzctl set 101 –disabled yes
After the Container stopping, the Container user will not be able to start it again until you enable this Container again by passing the –disabled no option
to vzctl set. You can also use the –force option to start any disabled Container. For example:
# vzctl start 101
Container start disabled
# vzctl start 101 –force
Starting Container…
Container is mounted
Adding port redirection to Container(1): 4643 8443
Adding IP address(es): 10.144.144.101
Hostname for Container set: Container_101
Container start in progress…
———————————————————————–
How to Suspending Container ?
# vzctl suspend 101
Setup checkpoint …
Container is unmounted
Checkpointing completed successfully
———————————————————————–
How to Resume Comtainer ?
# vzctl resume 101
Starting Container …
Container is mounted
Adding port redirection to Container(1): 4643 8443
Adding IP address(es): 10.0.10.101
Container start in progress…
———————————————————————–
How Running Commands in Container?
# vzctl exec 101 /etc/init.d/sshd status
sshd is stopped
# vzctl exec 101 /etc/init.d/sshd start
Starting sshd:[ OK ]
# vzctl exec 101 /etc/init.d/sshd status
sshd (pid 26187) is running…
———————————————————————–