Stopping the Liberty server for a Docker installation

The WebSphere® Application Server Liberty is installed when you install the Sterling B2B Integrator Docker container.

To stop the Liberty server, you must find the process identifier (PID) for the Liberty server and then stop the process. The PID for the Liberty server is located in the /ibm/b2bi/install/liberty/wlp/usr/servers/.pid directory.

For example:
  1. Get the PID by running the following command:
    /ibm/b2bi/install/liberty/wlp/usr/servers/.pid# cat SIServer.pid
    
    7708
  2. Run the Linux kill command to stop the process.
    /ibm/b2bi/install/liberty/wlp/usr/servers/.pid# kill -9 7708