我正在使用XenServer,我正在连接池,获取所有VM的列表。 现在我需要登录到VM。 并在所有VM上执行exe文件。 谁有任何想法?
谢谢!
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.
}
}
答案 0 :(得分:0)
据我所知,XenServer API不提供任何可以在VM中执行命令的api。恕我直言,像XenServer或VMware这样的VMM不应该有权在它托管的任何VM中执行命令。那么,为什么不获取所有vm的ip并使用一些ssh库来执行命令呢?
答案 1 :(得分:0)
使用sshj的Session.exec()
通过ssh执行远程命令。有an example of doing this in the Github repo。