我使用的是XenServer,我正在連接池,獲取所有虛擬機的列表。 現在我需要登錄到VM。 並在所有VM上執行一個exe文件。 任何人有任何想法?java,xenserver,有沒有人知道如何在虛擬機上運行命令?
謝謝!
connection = new Connection(url);
Session.loginWithPassword(connection, userName, Password, APIVersion.latest().toString());
Map<VM, VM.Record> vms = VM.getAllRecords(connection);
for (VM.Record record : vms.values()){
if (!record.isATemplate){
// now i need somehow to connect with the VM username and password
// now i need to run an exe file.
}
}