2010-05-01 3 views
1

Salut J'essaye de construire/déployer la guerre à Websphere Process Server 7.0. et je cours sur l'environnement de fenêtres .....Erreur Ant Construire/déployer vers websphere 7.0

J'utilise http://illegalargumentexception.blogspot.com/2008/08/ant-automated-deployment-to-websphere.html comme référence. et http://illegalargumentexception.googlecode.com/svn/trunk/code/java/WebSphereAntFiles/ comme mon exemple de code à déployer.

c'est mon buil.propres c'est?

#build properties 
mywebappear=D:/data/code/WebSphereAntFiles/scripts/test/mywebappEAR.ear 



#WAS6 install directory 
was_home=C:/IBM/WID7_WTE/runtimes/bi_v7 
#server name (see cell/node/server; e.g. "server1") 
was_server=server1 
#user + password; for use when security is enabled 
was_user=admin 
was_password=admin 
#stops scripts on problem 
was_failonerror=true 
#virtual host 
was_virtualhost=default_host 

#Absolute path to EAR file 
#was_ear=fooEAR.ear 

#Name of the enterprise application 
#was_appname=fooEAR 

ceci est ma console alors que j'essaie de construire avec ws_ant.bat

[wsDefaultBindings] mywebapp.war 
[wsDefaultBindings] <virtual-host> --> default_host 
[wsDefaultBindings] 
[wsDefaultBindings] ------------------------ 


[wsDefaultBindings] Saving EAR File to directory 
[wsDefaultBindings] Saved EAR File to directory Successfully 

test_wsStartServer: 

WAS_wsStartServer: 

depCheck: 

depCheck: 
[startServer] ADMU0116I: Tool information is being logged in file 
[startServer]   C:\IBM\WID7_WTE\runtimes\bi_v7\profiles\qwps\logs\server1\startServer.log 
[startServer] ADMU0128I: Starting tool with the qwps profile 
[startServer] ADMU3100I: Reading configuration for server: server1 
[startServer] ADMU3028I: Conflict detected on port 8880. Likely causes: a) An instance of 
[startServer]   the server server1 is already running b) some other process is 
[startServer]   using port 8880 
[startServer] ADMU3027E: An instance of the server may already be running: server1 
[startServer] ADMU0111E: Program exiting with error: 
[startServer]   com.ibm.websphere.management.exception.AdminException: ADMU3027E: An 
[startServer]   instance of the server may already be running: server1 
[startServer] ADMU1211I: To obtain a full trace of the failure, use the -trace option. 
[startServer] ADMU0211I: Error details may be seen in the file: 
[startServer]   C:/IBM/WID7_WTE/runtimes/bi_v7/profiles/qwps\logs\server1\startServer.log 

BUILD FAILED 
D:\data\code\WebSphereAntFiles\scripts\test\build.xml:68: The following error occurred while executing this line: 
D:\data\code\WebSphereAntFiles\scripts\was\wsStartServer.xml:49: Java returned: -1 
+0

L'erreur est pas dans la construction (comme mentionné par McDowell. L'AER a été déployé avec succès sur le serveur comme on le voit dans ces lignes [wsDefaultBindings] Enregistrement EAR fichier dans le répertoire [wsDefaultBindings] Enregistré EAR fichier dans le répertoire avec succès Pourquoi le processus de génération tente-t-il de démarrer le serveur Si vous utilisez un script pour créer et installer une application sur le serveur, vous êtes déjà connecté à un serveur en cours d'exécution. N'ayez pas besoin du serveur de démarrage dans vos scripts de construction, supprimez-le et travaillez avec la console ou avec les journaux pour voir si votre application est en cours d'exécution – Manglu

Répondre

1
[startServer] ADMU3028I: Conflict detected on port 8880. Likely causes: a) An instance of 
[startServer]   the server server1 is already running b) some other process is 
[startServer]   using port 8880 

Je suppose que vous avez déjà commencé votre serveur. com.ibm.websphere.ant.tasks.StartServer ne parviendra pas à démarrer le serveur s'il est déjà en cours d'exécution. Arrêtez d'appeler cette tâche ou arrêtez votre serveur avant d'exécuter le script.

+0

merci beaucoup, monsieur ... démarrez le serveur pendant que je veux déployer l'application Web. J'ai essayé votre script, donc je veux déployer, je dois désinstaller l'application et réinstaller l'application. Y at-il un truc, je veux juste mettre à jour l'application sans désinstaller et déployer à nouveau? merci –

+0

@adisembiring - vous pouvez probablement le faire avec la tâche Ant 'wsadmin' (voir l'Infocenter WAS). – McDowell

Questions connexes