我正在尝试使用Java SDK(https://github.com/vmware/vsphere-automation-sdk-java)克隆vSphere VM
我能够运行所有可用的示例,例如列表VM和创建VM等。但是当我尝试执行vmService.instantClone(instantCloneSpec)
时,它会遇到此特定错误。
码:
import java.util.Collections;
import java.util.List;
import com.vmware.vcenter.VMTypes;
import org.apache.commons.cli.Option;
import com.vmware.vcenter.VM;
import org.camunda.bpm.getstarted.loanapproval.common.SamplesAbstractBase;
public class CloneVmManager extends SamplesAbstractBase {
private VM vmService;
/**
* Define the options specific to this sample and configure the sample using
* command-line arguments or a config file
*
* @param args command line arguments passed to the sample
*/
protected void parseArgs(String[] args) {
List<Option> optionList = Collections.<Option>emptyList();
super.parseArgs(optionList, args);
}
protected void setup() throws Exception {
this.vmService =
vapiAuthHelper.getStubFactory()
.createStub(VM.class, sessionStubConfig);
}
protected void run() throws Exception {
// TODO: Add your sample code here
try {
VMTypes.InstantClonePlacementSpec placementSpec= new VMTypes.InstantClonePlacementSpec();
placementSpec.setDatastore("datastore1");
placementSpec.setFolder("cvs");
VMTypes.InstantCloneSpec instantCloneSpec =new VMTypes.InstantCloneSpec();
instantCloneSpec.setName("instantClone1");
// instantCloneSpec.setSource("tpl_reproxy-6_10-wax-CentOS6-h9-ver2.4");
instantCloneSpec.setSource("_Ubuntu_19_Template");
instantCloneSpec.setDisconnectAllNics(true);
instantCloneSpec.setPlacement(placementSpec);
vmService.instantClone(instantCloneSpec);
}catch (Exception e){
System.out.println("something went wrong"+e.getMessage());
e.printStackTrace();
}
}
protected void cleanup() throws Exception {
// TODO: Add cleanup here
}
public static void main(String[] args) throws Exception {
/*
* Execute the sample using the command line arguments or parameters
* from the configuration file. This executes the following steps:
* 1. Parse the arguments required by the sample
* 2. Login to the server
* 3. Setup any resources required by the sample run
* 4. Run the sample
* 5. Cleanup any data created by the sample run, if cleanup=true
* 6. Logout of the server
*/
// new CloneVmManager().execute(args);
}
public void runcustom(String[] args) throws Exception{
System.out.println("inside clone vm");
for(String s:args){
System.out.println("arg:->"+s);
}
new CloneVmManager().execute(args);
}
}
如您所见,它说您很容易受到中间人攻击,因为我正在提供
--skip-server-verification
arg,因此不确定这是身份验证问题。我的参数将是:
String arg[] = {
"--server","192.168.1.1","--username","[email protected]","--password","password","--skip-server-verification"}
错误:
2019-12-10 11:06:33.685 WARN 1140 --- [nio-8080-exec-3] c.v.v.i.p.c.r.h.TrustAllX509TrustManager : Skipped the validation of a certificate chain due to configuration policy. Your co
nnection is not secure!
2019-12-10 11:06:33.729 WARN 1140 --- [nio-8080-exec-3] c.v.v.i.p.c.r.h.AllowAllHostnameVerifier : Cannot validate the identity of 192.168.1.160 due to the hostname-verification bei
ng disabled. You are susceptible to man-in-the-middle attacks!
something went wrongUnauthenticated (com.vmware.vapi.std.errors.unauthenticated) => {
messages = [LocalizableMessage (com.vmware.vapi.std.localizable_message) => {
id = vapi.method.authentication.required,
defaultMessage = This method requires authentication.,
args = [],
params = <null>,
localized = <null>
}],
data = <null>,
errorType = UNAUTHENTICATED,
challenge = <null>
}
com.vmware.vapi.std.errors.Unauthenticated: Unauthenticated (com.vmware.vapi.std.errors.unauthenticated) => {
messages = [LocalizableMessage (com.vmware.vapi.std.localizable_message) => {
id = vapi.method.authentication.required,
defaultMessage = This method requires authentication.,
args = [],
params = <null>,
localized = <null>
}],
data = <null>,
errorType = UNAUTHENTICATED,
challenge = <null>
}
at com.vmware.vapi.std.errors.Unauthenticated._newInstance2(Unauthenticated.java:244)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:497)
最佳答案
VM#instantClone API在vSphere 6.5中不可用。即使在6.7或最新的6.7 U3中也无法使用。
目前仅在AWS的VMC中可用。
“此方法已在vSphere API 6.7.1中添加。”参考文档中的语句(引用6.7 U1)是错误的。
关于java - vSphere-automation-sdk-java未授权-vSphere 6.5,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/59261012/