Restarting WebSphere (WAS) after a reboot

Restarting Websphere (WAS) Infrastructure Services After a Reboot: A Step-by-Step Guide

To restart the Websphere (WAS) infrastructure services after a reboot, you’ll need specific credentials for the four stages:

WAS Console Path:
https://Websphereservername:9043/ibm/console/logon.jsp

  • Username: wasadmin
  • Password: your_password

Red Hat Linux:

  • Username: root
  • Password: your_password

Step 1: Start the Deployment Manager

The deployment manager serves as a central administrative console, providing a single point of control for the administrative functions of your environment. After SSH-ing into the server using the Red Hat credentials mentioned above, follow these steps:

Bash
cd /opt/IBM/WebSphere/AppServer/profiles/Dmgr01/bin
./startManager.sh

This action grants access to the WAS console. Subsequently, initiate the nodeagents from the command line before interacting with the WAS application servers.

Step 2: Start the Nodeagent on the First Node

In WebSphere, a nodeagent provides the runtime environment for application server processes and handles node-level administrative operations. Execute the following commands:

Bash
cd /opt/IBM/WebSphere/AppServer/profiles/AppSrv01/bin/
./startNode.sh

Step 3: Start the Nodeagent on the Second Node

Repeat the previous step for the second node:

Bash
cd /opt/IBM/WebSphere/AppServer/profiles/AppSrv01/bin/
./startNode.sh

Step 4: Start the Application Servers from the WAS Console

Application servers are the runtime environments for your applications. This step outlines two methods: starting from the command line or using the WAS console.

Command Line:

Bash
cd /opt/IBM/WebSphere/AppServer/profiles/AppSrv01/bin/
./startServer.sh server_name_you_want_to_start

WAS Console:

  1. Navigate to Servers.
  2. Under Application servers, select the checkbox for each server.
  3. Click the start button for each application server needing initiation.

Note: Ensure to start the Deployment Manager before the Nodeagents, and the Nodeagents before the Application Servers.

This detailed guide ensures a smooth restart of your Websphere infrastructure services after a reboot, following a logical sequence for optimal performance.

Elsewhere On TurboGeek:  Change Root Password in RHEL

Richard Bailey

Richard Bailey is the founder of TurboGeek and has spent more than a decade working across Windows Server, Linux, virtualization, cloud infrastructure and automation. He writes hands-on technical guides for sysadmins, engineers and IT teams, with a focus on clear instructions, practical troubleshooting and real-world infrastructure work.

You may also like...

Leave a Reply

Your email address will not be published. Required fields are marked *

Translate »