Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a simpler way to deploy to WebSphere?

I have seen this question about deploying to WebSphere using the WAS ant tasks.

Is there a simpler way to do this? In the past I have deployed to Tomcat by dropping a war file into a directory. I was hoping there would be a similar mechanism for WebSphere that doesn't involve calling the IBM libraries or rely on RAD to be installed on your workstation.

like image 448
Michael Sharek Avatar asked Sep 11 '08 18:09

Michael Sharek


People also ask

What is an alternative to WebSphere Application Server?

Apache Tomcat, JBoss, Websphere Liberty, NGINX, and Apache HTTP Server are the most popular alternatives and competitors to Websphere.

Is WebSphere obsolete?

This IBM WebSphere Application Server version has passed its End of Life. There may be unpatched security vulnerabilities. Please refer to IBM Software lifecycle for more information about WebSphere Application Server supported versions.


2 Answers

Just a hint: if you activate "Log command assistance commands" in System Administration / Console preferences, you will get a logfile in the server log directory that contains the jython scripts for all actions you did on the console. So you can just deploy your stuff per console the first time, and then grab the commands for later and feed them into wsadmin.bat -lang jython "thecommandscomehere" for the next deployment.

like image 56
Hans-Peter Störr Avatar answered Oct 21 '22 08:10

Hans-Peter Störr


There is the concept of WebSphere Rapid Deployment. It's supposed to be the same experience as what you describe for Tomcat.

like image 29
dertoni Avatar answered Oct 21 '22 07:10

dertoni