• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Ron McLeod
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

Undeploying Applications from OAS

 
Ranch Hand
Posts: 319
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi!
Is there any way to properly undeploy an application in Oracle 9i AS?
thanks
 
Ranch Hand
Posts: 254
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
From Oracle documentation:
Issue one of the following commands:
java -jar admin.jar ormi://host:rmiport admin adminpassword -undeploy applicationName
-or-
java -jar admin.jar ormi://host:rmiport admin adminpassword -undeploy applicationName -keepFiles
applicationName is the name of the Web application being updeployed from OC4J.
-keepFiles prevents application files from being removed.
Regards
Beksy
 
Sudharsan Govindarajan
Ranch Hand
Posts: 319
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks Beksy! Thatz much like deploying the application and it works out.
 
reply
    Bookmark Topic Watch Topic
  • New Topic