Created
November 3, 2020 21:10
-
-
Save jahio/ce6cf6a01a2a6dc9d93889fae8565e9f to your computer and use it in GitHub Desktop.
Stop RocketMQ
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env zsh | |
export NAMESRV_ADDR="localhost:9876" | |
export ROCKETMQ_HOME="/Users/jah/Applications/rocketmq" | |
ORIGINAL_LOCATION=$(pwd) | |
cd $ROCKETMQ_HOME | |
bin/mqshutdown broker | |
bin/mqshutdown namesrv | |
cd $ORIGINAL_LOCATION |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment