1

I need to deploy an EAR file that is located in my windows local drive. I know, we can achieve this by wsadmin.

But not clear on the whole process. Do i need to specify the nodename along with this command

This what i tried so far:-

wsadmin install "c://apps/test.ear"
ᄂ ᄀ
  • 5,669
  • 6
  • 43
  • 57
Sireesh Yarlagadda
  • 12,978
  • 3
  • 74
  • 76

1 Answers1

2

Use something like this:

wsadmin -c "$AdminApp install c:/path/to/app {-usedefaultbindings}"

The -usedefaultbindings option is just one of many. See the Options for the AdminApp object install, installInteractive, edit, editInteractive, update, and updateInteractive commands using wsadmin scripting topic in the knowledge center for more options.

Brett Kail
  • 33,593
  • 2
  • 85
  • 90