How to restart remote Websphere Application Server 7?
e.g. with helps of wsadmin.
How to restart remote Websphere Application Server 7 ? e.g. with helps of wsadmin
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Use wsadmin to connect to the deployment manager or the node agent.
Get a reference to the server that you are after and then start it
$AdminControl startServer serverName
This is how you start a server in wsadmin.
The server name should be replaced by the reference that you get from the dmgr or the nodeagent when you query it for your server
e.g. nodeServers = AdminConfig.getid(‘/Node:mynode/Server:/’)
would list the server on node – my node.
HTH
Manglu