Deploying application without NWDS on NW7.3 Java server

There are two methods for deploying .ear \ .war \ .sda files directly on NW7.3 Webas server

The first one is deployment script.
Below are the steaps for deploying application using deployment script 
  • Login with sidadm on NW7.3 WebAs server 
  • Go to following directory /usr/sap/SID/InstanceNo/j2ee/deployment/scripts
  • locate deploy.csh (used in Unix environment) \ deploy.bat (Used on windows platform) file under scripts directoiry
  • Execute following command to deploy .ear \ .war \ .sda files server
  • ./deploy.csh username:password@FQDN Name of server:50004 /location of file
  •  
The another option for deployment is Console
Below are the steaps for deploying application using Console
  • Go to /usr/sap/SID/InstanceNo/j2ee/console
  • execute following command
                  sh guiconsole.sh Server FQDN  50004 
  • Put administrator username and password
  • Execute below command for deployment
                  DEPLOY 'Application name'
                  Deploy list=items.txt (we can deploy multiple files by creating list of those files)

Similar way we can undeploy the files using Console tool
  • Go to /usr/sap/SID/InstanceNo/j2ee/console
  • execute following command
                  sh guiconsole.sh Server FQDN  50004 
  • Put administrator username and password
  • Execute below command for undeployment
                  UNDEPLOY Name='Software comlonent name' Vendor='vendor name'
                  UNDEPLOY list=items.txt  (we can undeploy multiple files by creating list of those files)



No comments:

Post a Comment