fn_print_warn_nl "Port is not in use right now \"${queryport}\". Check command details for ports, use provided command to check if every port is used + console to validate server is booted. Maybe server didn't boot, e.g. a second port which is needed is already in use by another application or the configuration for the queryport is incorrect."
else
# return value of following lines arent used so not an issue
#shellcheck disable=SC2155
localprocess_using_port="$( ss -tuplwn "( dport = :${queryport} or sport = :${queryport} )"| grep -o '[^ ]*$')"
#shellcheck disable=SC2155
locallisten_on="$( ss -tuplwn "( dport = :${queryport} or sport = :${queryport} )"| grep -o "[^ ]*:${queryport}")"
localmsg="Found application \"${process_using_port}\" which listens on \"${listen_on}\""