2014-03-07 164 views
2

我一直在嘗試爲Java EE應用程序設置持續集成和部署。 持續集成正在運行,但部署總是失敗。Bamboo Maven Glassfish部署

我試圖在Maven參數$ 3件事{} local.glassfish.passfile:

  1. 路徑域的密碼
  2. 路徑to.gfclient /通
  3. 密碼字符串

我試過的最後一件事是:

    pom.xml中的硬編碼值

耳的pom.xml配置:

<plugin> 
<groupId>org.glassfish.maven.plugin</groupId> 
<artifactId>maven-glassfish-plugin</artifactId> 
<version>2.1</version> 
<configuration> 
<glassfishDirectory>${local.glassfish.home}</glassfishDirectory> 
<user>${local.glassfish.user}</user> 
<passwordFile>${local.glassfish.passfile}</passwordFile> 
<domain> 
<name>${local.glassfish.domain}</name> 
<adminPort>${local.glassfish.adminPort}</adminPort> 
<httpPort>${local.glassfish.httpPort}</httpPort> 
</domain> 
<components> 
<component> 
<name>${project.artifactId}</name> 
<artifact>target/${project.build.finalName}.ear</artifact> 
</component> 
</components> 
<debug>true</debug> 
<terse>false</terse> 
<echo>true</echo> 
</configuration> 
</plugin> 

運行MVN的glassfish:耳夾內部署經由終端成功部署耳僞影到服務器。

竹錯誤日誌:

[INFO] Scanning for projects... 
[INFO] 
[INFO] Using the builder org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder with a thread count of 1 
[INFO]                   
[INFO] ------------------------------------------------------------------------ 
[INFO] Building ear 1.0-SNAPSHOT 
[INFO] ------------------------------------------------------------------------ 
[INFO] 
[INFO] --- maven-glassfish-plugin:2.1:undeploy (default-cli) @ ear --- 
[INFO] Deprecated syntax, instead use: 
[INFO] asadmin --echo --terse=false --interactive=false --user admin --passwordfile /home/guest/.gfclient/pass --host localhost --port 55004 undeploy [options] ... 
[INFO] asadmin --host localhost --port 55004 --user admin --passwordfile /home/guest/.gfclient/pass --interactive=false --echo=true --terse=false undeploy --keepreposdir=false --isredeploy=false --cascade=false --_ignorecascade=false --_classicstyle=false ear 
[INFO] Command undeploy failed. 
[ERROR] Authentication failed for user: admin 
[ERROR] (Usually, this means invalid user name and/or password) 
[ERROR] Undeployment of ear failed. 
[ERROR] For more detail on what might be causing the problem try running maven with the --debug option 
[ERROR] or setting the maven-glassfish-plugin "echo" property to "true". 
[INFO] ------------------------------------------------------------------------ 
[INFO] BUILD FAILURE 
[INFO] ------------------------------------------------------------------------ 
[INFO] Total time: 1.699 s 
[INFO] Finished at: 2014-03-06T17:39:50+00:00 
[INFO] Final Memory: 8M/19M 
[INFO] ------------------------------------------------------------------------ 
[ERROR] Failed to execute goal org.glassfish.maven.plugin:maven-glassfish-plugin:2.1:undeploy (default-cli) on project ear: Undeployment of ear failed. -> [Help 1] 
[ERROR] 
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch. 
[ERROR] Re-run Maven using the -X switch to enable full debug logging. 
[ERROR] 
[ERROR] For more information about the errors and possible solutions, please read the following articles: 
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException 
Failing task since return code of [/home/guest/apache-maven-3.2.1/bin/mvn glassfish:undeploy] was 1 while expected 0 
Finished task 'Maven Glassfish Undeploy' 

注意,我跑了「的asadmin登錄」命令後,我以更新通文件更改管理員密碼。

[email protected]:~$ asadmin --port 55004 login 
Enter admin user name [Enter to accept default]> admin 
Enter admin password> 
Admin login information for host [localhost] and port [55004] is being overwritten with credentials provided. This is because the --savelogin option was used during create-domain command. 
Login information relevant to admin user name [admin] for host [localhost] and admin port [55004] stored at [/home/guest/.gfclient/pass] successfully. 
Make sure that this file remains protected. Information stored in this file will be used by administration commands to manage associated domain. 
Command login executed successfully. 

此外,Glassfish版本是4.0,Maven版本是3.2.1。

+0

你有沒有嘗試在maven配置文件中設置用戶/密碼?請參閱{maven.home} /conf/settings.xml – Ted

回答

0

如果您使用了asadmin login命令,則不需要在取消部署和部署命令中指定用戶和密碼,因爲它將使用您使用login命令設置的憑據。