|
|
|
@ -401,31 +401,32 @@ openim::util::check_process_names() {
|
|
|
|
|
# Arrays to collect details of processes
|
|
|
|
|
local not_started=()
|
|
|
|
|
local started=()
|
|
|
|
|
|
|
|
|
|
# Iterate over each given process name
|
|
|
|
|
|
|
|
|
|
# Iterate over each given process name
|
|
|
|
|
for process_name in "$@"; do
|
|
|
|
|
# Use `pgrep` to find process IDs related to the given process name
|
|
|
|
|
local pids=($(pgrep -f $process_name))
|
|
|
|
|
|
|
|
|
|
# Check if any process IDs were found
|
|
|
|
|
if [[ ${#pids[@]} -eq 0 ]]; then
|
|
|
|
|
not_started+=($process_name)
|
|
|
|
|
else
|
|
|
|
|
# If there are PIDs, loop through each one
|
|
|
|
|
for pid in "${pids[@]}"; do
|
|
|
|
|
local command=$(ps -p $pid -o cmd=)
|
|
|
|
|
local start_time=$(ps -p $pid -o lstart=)
|
|
|
|
|
local port=$(get_port $pid)
|
|
|
|
|
|
|
|
|
|
# Check if port information was found for the PID
|
|
|
|
|
if [[ -z $port ]]; then
|
|
|
|
|
port="N/A"
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
started+=("Process $process_name - Command: $command, PID: $pid, Port: $port, Start time: $start_time")
|
|
|
|
|
done
|
|
|
|
|
fi
|
|
|
|
|
done
|
|
|
|
|
# Use `pgrep` to find process IDs related to the given process name
|
|
|
|
|
local pids=($(pgrep -f $process_name))
|
|
|
|
|
|
|
|
|
|
# Check if any process IDs were found
|
|
|
|
|
if [[ ${#pids[@]} -eq 0 ]]; then
|
|
|
|
|
not_started+=($process_name)
|
|
|
|
|
else
|
|
|
|
|
# If there are PIDs, loop through each one
|
|
|
|
|
for pid in "${pids[@]}"; do
|
|
|
|
|
local command=$(ps -p $pid -o cmd=)
|
|
|
|
|
local start_time=$(ps -p $pid -o lstart=)
|
|
|
|
|
local port=$(get_port $pid)
|
|
|
|
|
|
|
|
|
|
# Check if port information was found for the PID
|
|
|
|
|
if [[ -z $port ]]; then
|
|
|
|
|
port="N/A"
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
started+=("Process $process_name - Command: $command, PID: $pid, Port: $port, Start time: $start_time")
|
|
|
|
|
done
|
|
|
|
|
fi
|
|
|
|
|
done
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Print information
|
|
|
|
|
if [[ ${#not_started[@]} -ne 0 ]]; then
|
|
|
|
@ -1679,29 +1680,29 @@ openim::util::check_process_names() {
|
|
|
|
|
|
|
|
|
|
echo "Checking processes: $*"
|
|
|
|
|
# Iterate over each given process name
|
|
|
|
|
for process_name in "$@"; do
|
|
|
|
|
# Use `pgrep` to find process IDs related to the given process name
|
|
|
|
|
local pids=($(pgrep -f $process_name))
|
|
|
|
|
|
|
|
|
|
# Check if any process IDs were found
|
|
|
|
|
if [[ ${#pids[@]} -eq 0 ]]; then
|
|
|
|
|
not_started+=($process_name)
|
|
|
|
|
else
|
|
|
|
|
# If there are PIDs, loop through each one
|
|
|
|
|
for pid in "${pids[@]}"; do
|
|
|
|
|
local command=$(ps -p $pid -o cmd=)
|
|
|
|
|
local start_time=$(ps -p $pid -o lstart=)
|
|
|
|
|
local port=$(get_port $pid)
|
|
|
|
|
|
|
|
|
|
# Check if port information was found for the PID
|
|
|
|
|
if [[ -z $port ]]; then
|
|
|
|
|
port="N/A"
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
started+=("Process $process_name - Command: $command, PID: $pid, Port: $port, Start time: $start_time")
|
|
|
|
|
done
|
|
|
|
|
fi
|
|
|
|
|
done
|
|
|
|
|
for process_name in "$@"; do
|
|
|
|
|
# Use `pgrep` to find process IDs related to the given process name
|
|
|
|
|
local pids=($(pgrep -f $process_name))
|
|
|
|
|
|
|
|
|
|
# Check if any process IDs were found
|
|
|
|
|
if [[ ${#pids[@]} -eq 0 ]]; then
|
|
|
|
|
not_started+=($process_name)
|
|
|
|
|
else
|
|
|
|
|
# If there are PIDs, loop through each one
|
|
|
|
|
for pid in "${pids[@]}"; do
|
|
|
|
|
local command=$(ps -p $pid -o cmd=)
|
|
|
|
|
local start_time=$(ps -p $pid -o lstart=)
|
|
|
|
|
local port=$(get_port $pid)
|
|
|
|
|
|
|
|
|
|
# Check if port information was found for the PID
|
|
|
|
|
if [[ -z $port ]]; then
|
|
|
|
|
port="N/A"
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
started+=("Process $process_name - Command: $command, PID: $pid, Port: $port, Start time: $start_time")
|
|
|
|
|
done
|
|
|
|
|
fi
|
|
|
|
|
done
|
|
|
|
|
|
|
|
|
|
# Print information
|
|
|
|
|
if [[ ${#not_started[@]} -ne 0 ]]; then
|
|
|
|
|