Warning: file_get_contents(/data/phpspider/zhask/data//catemap/6/jenkins/5.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Jenkins WebSphere Deployer插件错误_Jenkins_Websphere - Fatal编程技术网

Jenkins WebSphere Deployer插件错误

Jenkins WebSphere Deployer插件错误,jenkins,websphere,Jenkins,Websphere,我试图从jenkins将.war文件部署到WebSphere应用服务器 我遵循了中提到的以下步骤 [ 我的测试连接成功 But I got following exception Error deploying to IBM WebSphere Application Server: org.jenkinsci.plugins.websphere.services.deployment.DeploymentServiceException: Failed to install

我试图从jenkins将.war文件部署到WebSphere应用服务器 我遵循了中提到的以下步骤

[

我的测试连接成功

But I got following exception 
Error deploying to IBM WebSphere Application Server:        org.jenkinsci.plugins.websphere.services.deployment.DeploymentServiceException:   Failed to install artifact: Failure uploading archive to server
    at org.jenkinsci.plugins.websphere.services.deployment.WebSphereDeploymentService.installArtifact(WebSphereDeploymentService.java:251)
    at org.jenkinsci.plugins.websphere_deployer.WebSphereDeployerPlugin.deployArtifact(WebSphereDeployerPlugin.java:227)
    at org.jenkinsci.plugins.websphere_deployer.WebSphereDeployerPlugin.perform(WebSphereDeployerPlugin.java:201)
    at hudson.tasks.BuildStepMonitor$3.perform(BuildStepMonitor.java:45)
    at hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:782)
    at hudson.model.AbstractBuild$AbstractBuildExecution.performAllBuildSteps(AbstractBuild.java:723)
    at hudson.maven.MavenModuleSetBuild$MavenModuleSetBuildExecution.post2(MavenModuleSetBuild.java:1047)
    at hudson.model.AbstractBuild$AbstractBuildExecution.post(AbstractBuild.java:668)
    at hudson.model.Run.execute(Run.java:1763)
    at hudson.maven.MavenModuleSetBuild.run(MavenModuleSetBuild.java:531)
    at hudson.model.ResourceController.execute(ResourceController.java:98)
    at hudson.model.Executor.run(Executor.java:410)

Build step 'Deploy To IBM WebSphere Application Server' changed build result to FAILURE
[BFA] Scanning build for known causes...
[BFA] No failure causes found
[BFA] Done. 0s
Finished: FAILURE


  [1]: https://wiki.jenkins-ci.org/display/JENKINS/IBM+WebSphere+Configuration

如果您通过WebSphere Deployer插件使用SOAP连接器,您可能会遇到上载大型EAR文件的问题,这些文件的部署时间超过3分钟

对于要部署到的WebSphere实例,请将每个文件中的以下设置更改为更高的超时设置

[WAS Install]/profiles/[profile]/properties/soap.client.properties

com.ibm.SOAP.requestTimeout=180(将此设置更改为600或更高)

此设置更改可能需要重新启动WAS。希望这对您有所帮助


-WDP Architect

如果您通过WebSphere Deployer插件使用SOAP连接器,您可能会遇到上载大型EAR文件的问题,这些文件的部署时间超过3分钟。请尝试以下操作

对于要部署到的WebSphere实例,请将每个文件中的以下设置更改为更高的超时设置

[WAS Install]/profiles/[profile]/properties/soap.client.properties

com.ibm.SOAP.requestTimeout=180(将此设置更改为600或更高)

此设置更改可能需要重新启动WAS。希望这对您有所帮助

-WDP架构师