websphere - Deploying ear file to IBM WEBSPHERE8 with wsadmin.sh -
i new websphere , found many answers *.ear
file deployment. of them use format similar "
./wsadmin.sh -host vmllkb056933n.myspace.com -port 5000 -c '$adminapp> install /apps/test-app.ear'
i getting errors like:
wasx8011w: admintask object not available. wasx7015e: exception running command: "$adminapp install /apps/cdm-fi.ear"; exception information: com.ibm.ws.scripting.scriptingexception: wasx7206w: application management service not running. application management commands not run.
i in rhel 6 environment , runing ibm websphere 8.5.5.3
what easiest way deploy ear file ibm websphere 8.5.5
make sure using deployment manager wsadmin.sh , dmgr process running. port reference should soap_connector_address of dmgr. referencing cluster or server name in federated environment tells dmgr put code, in 2 examples below.
$adminapp install "myapp.ear" {-cluster clustername}
or
$adminapp install app_server_root/installableapps/dynacacheesi.ear {-appname myapp -cell mycell -node mynode -server server1 -filepermission .*\\.jsp=777#.*\\.xml=755}
don't forget save , syncnodes. in jython below.
adminconfig.save() adminnodemanagement.syncactivenodes()
Comments
Post a Comment