티스토리 뷰

목차



    반응형

    * 가상서버(VM)를 가진 Compute 노드가 중지되었을 경우 해당 가상서버 다른 노드로 이동 시켜 부팅하기

     

    $ root@con01:~# docker exec -it -uroot bash

     

    $ (mariadb)[root@con01 /]# mysql -uroot -p

     

    $ MariaDB [(none)]> use nova;

     

    $ MariaDB [(nova)]> select * from instances where uuid='해당 가상서버 UUID';

     

    $ MariaDB [(nova)]> update instances SET host='옮길 서버 노드 명칭' where uuid='해당 가상서버 UUID';

     

    $ MariaDB [(nova)]> exit

     

    $ (mariadb)[root@con01 /]# exit

     

    $ openstack server reboot uuid

     

    참고 : https://docs.openstack.org/nova/latest/admin/node-down.html

     

     

    반응형