Skip to content

faq How do I stop all cluster processes started by PadoGrid

Dae Song Park edited this page Jul 4, 2022 · 2 revisions

How do I stop/kill all cluster processes started by PadoGrid?

You can use stop_rwe or kill_rwe to achiev this.

stop_rwe -all
kill_rwe -all

If you have more than one RWE then use list_rwes to get a list of all RWEs and stop/kill each RWE as shown below. The -quiet option is for running in non-interactive mode.

# Stop all RWEs (-quiet suppresses prompts)
for rwe in $(list_rwes); do stop_rwe -quiet -all -rwe $rwe; done

# Kill all RWEs (-quiet suppresses prompts)
for rwe in $(list_rwes); do kill_rwe -quiet -all -rwe $rwe; done

Overview

Operations

Tools

Platforms

Clouds

Pado

Geode/GemFire

Hazelcast/Jet

ComputeDB/SnappyData

Coherence

Hadoop

Kafka/Confluent

Mosquitto

Redis

Spark

Clone this wiki locally