Consultation & Training
Providing the Right Solutions with Right Skills
OpenStack 関連の mySQLコマンド一覧
1) novaデータベース内のテーブルを参照
mysql -uroot -popenstack nova -e 'show tables;'
2) どのインスタンスが、どのノード上で起動しているかを確認
mysql -uroot -popenstack nova -e 'select display_name, node from instances where vm_state="active";'
+--------------+----------+
| display_name | node |
+--------------+----------+
| current1 | compute |
| current2 | compute2 |
+--------------+----------+
3) どのボリュームが、どのノード上で割り当てられているかを確認
mysql -uroot -popenstack cinder -e 'select display_name, host from volumes where status="available";'
+--------------+-------------------+
| display_name | host |
+--------------+-------------------+
| vol1 | storage@backend1 |
| vol1-2 | storage@backend1 |
| vol1-3 | storage@backend1 |
| vol2 | storage2@backend2 |
+--------------+-------------------+