Difference between revisions of "Basic operations in OpenVZ environment/ru"

From OpenVZ Virtuozzo Containers Wiki
Jump to: navigation, search
(Created page with "== Создание и запуск контейнера ==")
(Created page with "Для создания и запуска контейнера, выполните следующие команды: <pre> [host-node]# vzctl create CTID --oste...")
Line 3: Line 3:
 
== Создание и запуск контейнера ==
 
== Создание и запуск контейнера ==
  
To create and start a [[container]], run the following commands:
+
Для создания и запуска [[container|контейнера]], выполните следующие команды:
 
<pre>
 
<pre>
 
[host-node]# vzctl create CTID --ostemplate osname
 
[host-node]# vzctl create CTID --ostemplate osname

Revision as of 01:15, 30 December 2015

Данная статья предполагает, что у Вас уже установлен Openvz. Если не установлен, то пройдите по ссылке, что бы выполнить необходимые для установки действия.

Создание и запуск контейнера

Для создания и запуска контейнера, выполните следующие команды:

[host-node]# vzctl create CTID --ostemplate osname
[host-node]# vzctl set CTID --ipadd a.b.c.d --save
[host-node]# vzctl set CTID --nameserver a.b.c.d --save
[host-node]# vzctl start CTID

Here CTID is the numeric ID for the container; osname is the name of the OS template for the container, and a.b.c.d is the IP address to be assigned to the container.

Example:

[host-node]# vzctl create 101 --ostemplate fedora-core-5-minimal
[host-node]# vzctl set 101 --ipadd 10.1.2.3 --save
[host-node]# vzctl set 101 --nameserver 10.0.2.1 --save
[host-node]# vzctl start 101

Your freshly-created container should be up and running now; you can see its processes:

[host-node]# vzctl exec CTID ps ax

Enter to and exit from the container

To enter container give the following command:

[host-node]# vzctl enter CTID
entered into container CTID
[container]#

To exit from container, just type exit and press Enter:

[container]# exit
exited from container VEID
[host-node]#

Stop and destroy the container

To stop container:

[host-node]# vzctl stop CTID
Stopping container ...
Container was stopped
Container is unmounted

And to destroy container:

[host-node]# vzctl destroy CTID
Destroying container private area: /vz/private/CTID
Container private area was destroyed

Now, when you know how to manage your container, learn about Resource management.