Creating a desktop
-
In the management console
, select the folder where your desktop will be created. -
From the list of services, select Cloud Desktop.
-
In the left-hand panel, select
Desktops. -
Click Create desktop.
-
Select the desktop group where you wish to create your desktop.
-
Specify the subnet the desktop will be in.
Note
To provide your desktop with internet access, make sure to configure a NAT gateway in the subnet.
-
Specify the user that the desktop is created for.
-
Click Create.
If you do not have the Yandex Cloud CLI yet, install and initialize it.
-
See the description of the CLI command for creating a desktop:
yc desktops desktop create --help
-
Select a desktop group:
yc desktops group list
Result:
+----------------------+------------------+--------+---------------------+ | ID | NAME | STATUS | CREATED (UTC-0) | +----------------------+------------------+--------+---------------------+ | e3v1rbln45tl******** | my-desktop-group | ACTIVE | 2024-10-09 20:12:00 | | e3v7ikg3d4ga******** | ubuntu-group | ACTIVE | 2024-10-09 19:34:10 | | e3v80f10pc01******** | kosmos-group | ACTIVE | 2024-10-09 18:58:17 | +----------------------+------------------+--------+---------------------+
-
Create a desktop:
yc desktops desktop create \ --desktop-group-id <desktop_group_ID> \ --user-account-id <user_ID>
Where:
--desktop-group-id
: Desktop group ID.--user-account-id
: ID of the user the desktop is created for.
Result:
id: e3vmvhgbgac4******** folder_id: b1g681qpemb4******** desktop_group_id: e3v1rbln45tl******** created_at: "2024-10-09T22:42:28.020Z" name: cli-desktop-5-6aa9b029038119b1 resources: memory: "4294967296" cores: "2" core_fraction: "100" network_interfaces: - network_id: enp0asmd9pr9******** subnet_id: e2lb1da2dd9v******** users: - subject_id: aje9k8luj4qf********
Use the create REST API method for the Desktop resource or the DesktopService/Create gRPC API call.
The desktop will appear in the list. You can now connect to it.