For the complete documentation index, see llms.txt. This page is also available as Markdown.

Vận hành

RESET PASSWORD VM

Bước 1: Cần xác định vm đang ở compute nào:

openstack server show <uuid_vm> | grep OS-EXT-SRV-ATTR:host

Bước 2: SSH đến compute chứa vm và thực hiện:

docker exec -it nova_libvirt bash -c virsh
set-user-password --user <user_name> --password <password> <uuid_vm>

Enable Disable interface

Bước 1: List các port được gắn trên VM

openstack port list --server <uuid_vm>

Bước 2: Thực hiện Disable port

openstack port set --disable <port_uuid>

Migrate Host

Bước 1: Thực hiện Stop vm

Bước 2: Migrate vm sang host khác

Bước 3: Xác nhận migrate

Bước 4: Start vm kiểm tra

Last updated