#### 開發背景:html
因爲在OpenStack上有過熱遷移失敗的記錄,虛機重裝掛載磁盤會報錯,數據盤掛載不上,因此須要在OpenStack上找出全部有過熱遷移而且遷移失敗的虛機處理,以避免後續重裝掛載不上磁盤。python
centos,Python 2.7.5,OpenStackshell
Shell篩選命令
nova list –all 找出全部虛機
nova instance-action-list 虛機ID | egrep -in 'live-migration|error' 篩選出具備相應動做的虛機。
使用shell腳本篩選,可是因爲nova instance-action-list命令執行太慢,因此考慮使用Python經過OS的接口去找出這部分虛機。
經過OpenStack的API接口調用,找出全部虛機,而且查詢每一個虛機的全部動做,篩選出有live-migration動做而且message爲Error的虛機就輸出虛機名稱和虛機ID。centos
一、登陸認證明現:OpenStack主要是經過keystoneauth組件來提供認證服務,我經過keystoneauth組件的keystoneauth1.session.Session 類初始化一個Session對象,此對象能夠存儲用戶名密碼和token等信息。
二、shell命令對應novaclient庫的方法查詢,主要經過OpenStack的官方文檔:https://docs.openstack.org/python-novaclient/latest/reference/index.html去查詢想要的方法以及方法具備的參數。session
#!/usr/bin/python2 # -*- coding: utf-8 -*- from novaclient import client from keystoneauth1 import session from keystoneauth1.identity import v3 import requests #登陸認證 auth = v3.Password(user_domain_name='Default', username='******', password='*********', project_domain_name='Default', project_name='admin', auth_url='http://IP:35357/v3') sess = session.Session(auth=auth) nova = client.Client(2,session=sess) #查詢全部虛機 instances = nova.servers.list(search_opts={'all_tenants':'1'}) #循環 for instance in instances: #查詢每臺虛機的動做 for i in nova.instance_action.list(instance.id): #篩選出live-migration的動做而且結果是Error if i.to_dict()['action']=='live-migration' and i.to_dict()['message']=='Error': #輸出虛機名稱和虛機ID print instance.name ,instance.id break
Python的novaclient庫和keystoneauth1庫,已經封裝了具體的請求過程,基本只須要填好關鍵信息就能夠直接調用API接口去獲取虛機信息,主要遇到的問題就是OpenStack的API接口資料網上比較少,基本都是須要閱讀官方文檔。dom