Today, we would like to start a NATS cluster with two seed servers, the architecture look like:
// To fill in the architecture diagram
Here are the steps for starting up the cluster:
- Start up the two seed servers (seed1 and seed2):
This file contains 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
# Start the first seed node | |
./nats-server -p 4222 --cluster nats://0.0.0.0:5222 --routes nats://localhost:5223 | |
# Start the second seed node | |
./nats-server -p 4223 --cluster nats://0.0.0.0:5223 --routes nats://localhost:5222 |

- Start three cluster servers (server A, B, C):
This file contains 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
# Start NATS cluster server A | |
./nats-server -p -1 --cluster nats://0.0.0.0:-1 --routes nats://localhost:5222,nats://localhost:5223 | |
# Start NATS cluster server B | |
./nats-server -p -1 --cluster nats://0.0.0.0:-1 --routes nats://localhost:5222,nats://localhost:5223 | |
# Start NATS cluster server C | |
./nats-server -p -1 --cluster nats://0.0.0.0:-1 --routes nats://localhost:5222,nats://localhost:5223 |
Voila! You get the cluster running, now it's time test it out:
- Start subscriber and publisher:
This file contains 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
# Start nats-sub to one of the cluster server | |
./nats-sub -s nats://localhost:36113 test-topic | |
# Publish (nats-pub) to any of the cluster server | |
./nats-pub -s nats://localhost:34416 test-topic "This is the message" |