Loading

How to find the Process Id (pid) for on-premise Mule Runtime Engine on Linux?

Veröffentlichungsdatum: Aug 1, 2025
Aufgabe

To find a Runtime Process ID 

Schritte

Here are some ways you can get process id (pid) for on-premise Mule Runtime Engine on Linux:

  • Using JPS (Java Virtual Machine Process Status Tool)
jps|grep -i "MuleContainerBootstrap"|cut -c 1-5

Expected Output: <pid#>

 

  • Using ps (Linux command for getting list of processes)
ps -aef |grep -i MuleContainerBootstrap|grep -v grep|cut -c 7-11
OR
ps -ef |grep -i MuleContainerBootstrap|grep -v grep|cut -c 7-11

Expected Output: <pid#>

 If you observe the PID contains empty space, you can use the following command to grab the PID.

ps -aef |grep -i MuleContainerBootstrap|grep -v grep|cut -c 8-11
OR
ps -ef |grep -i MuleContainerBootstrap|grep -v grep|cut -c 8-11
OR ps -ef | grep -i MuleContainerBootstrap | grep -v grep | awk '{print $2}'
OR
ps -aef | grep -i MuleContainerBootstrap | grep -v grep | awk '{print $2}'
Expected Output: <pid#>

 

  • Using support-collector (Troubleshooting utility which can be downloaded from MuleSoft for On-Premise installation)
support-collector pids

Expected output - <pid> <mule_version> <mule_home>
Nummer des Knowledge-Artikels

001116822

 
Laden
Salesforce Help | Article