python 操作 azure 虛擬機器

來源:互聯網
上載者:User

標籤:python   azure   

python 操作 azure 虛擬機器下載微軟的 python SDK
pip install azure

但是預設的 azure 介面對國內的 azure 無效,修改Python27\Lib\site-packages\azure\__init__.py檔案指向China Azure

源檔案如下:

# Live ServiceClient URLsBLOB_SERVICE_HOST_BASE = ‘.blob.core.windows.net‘QUEUE_SERVICE_HOST_BASE = ‘.queue.core.windows.net‘TABLE_SERVICE_HOST_BASE = ‘.table.core.windows.net‘SERVICE_BUS_HOST_BASE = ‘.servicebus.windows.net‘MANAGEMENT_HOST = ‘management.core.windows.net‘

修改為:

# Live ServiceClient URLsBLOB_SERVICE_HOST_BASE = ‘.blob.core.chinacloudapi.cn‘QUEUE_SERVICE_HOST_BASE = ‘.queue.core.chinacloudapi.cn‘TABLE_SERVICE_HOST_BASE = ‘.table.core.chinacloudapi.cn‘SERVICE_BUS_HOST_BASE = ‘.servicebus.chinacloudapi.cn‘MANAGEMENT_HOST = ‘management.core.chinacloudapi.cn‘
啟動和停止虛擬機器
from azure.servicemanagement import *subscription_id = ‘xxxxxxxx‘# 訂閱IDcertificate_path = ‘xxxxxxxx‘# pem 憑證路徑sms = ServiceManagementService(subscription_id, certificate_path)sms.shutdown_role(‘orange‘, ‘oranged‘, ‘oranged‘, post_shutdown_action=‘Stopped‘)sms.start_role(‘xxx‘, ‘xxx‘, ‘xxx‘)
LinuxMac命令列產生 azure 認證
openssl req -x509 -nodes -days 365 -newkey rsa:1024 -keyout mycert.pem -out mycert.pemopenssl x509 -inform pem -in mycert.pem -outform der -out mycert.cer

上傳cer認證到控制台認證管理裡面後,就可以在代碼中操作azure了。

python 操作 azure 虛擬機器

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.