gpt4 book ai didi

java - vsphere-automation-sdk-java 未经身份验证 - vSphere 6.5

转载 作者:行者123 更新时间:2023-12-01 19:32:16 30 4
gpt4 key购买 nike

我正在尝试使用 Java SDK 克隆 vSphere 虚拟机 ( https://github.com/vmware/vsphere-automation-sdk-java )我能够运行所有可用的示例,例如列出 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","administrator@vsphere.local","--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/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com