I am trying to auto-deploy an application to a newly installed Websphere ND with Deployment Manager. This is what I just did:
- Install WebSphere
- manageProfiles create, profile name="deployer", template = management, profile type = DEPLOYMENT_MANAGER, cell="ndcell", node="ndnode"
- manageProfiles create, profile name="app", template = default, cell = knowncell, node = knownnode
- AppServer/profiles/deployer/bin/startManager.sh
- AppServer/profiles/app/bin/addNode.sh hostname (this all happens on one same host "hostname")
- AppServer/bin/wsadmin -c '$AdminConfig modify [$AdminConfig showAttribute [$AdminConfig getid /Cell:ndcell] monitoredDirectoryDeployment] {{enabled true}}' - turn on monitored directory deployment
- AppServer/bin/wsadmin -c '$AdminConfig save'
- AppServer/profiles/deployer/bin/stopManager.sh, then startManager.sh
All right, at this point admin console shows one server "server1" which is not started, and there exists the directory AppServer/profiles/deployer/monitoredDeployableApps, that's the good part. The bad part is the directory is empty! There is no "server1" dir there, as it should be, to put my EAR into.
What am I missing?