1
0
mirror of https://github.com/taigrr/nats.docs synced 2025-01-18 04:03:23 -08:00

Update README.md

This commit is contained in:
Ginger Collison 2019-10-18 09:32:59 -05:00 committed by GitHub
parent f65204fd51
commit f23c5dde6d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,4 +1,3 @@
# NATS and Docker
## NATS Server Containerization ## NATS Server Containerization
@ -10,251 +9,127 @@ The NATS server is provided as a Docker image on [Docker Hub](https://hub.docker
To use the Docker container image, install Docker and pull the public image: To use the Docker container image, install Docker and pull the public image:
```bash ```sh
> docker pull nats docker pull nats
``` ```
Run the NATS server image: Run the NATS server image:
```bash ```sh
> docker run -d --name nats-main nats docker run nats
``` ```
By default the NATS server exposes multiple ports: By default the NATS server exposes multiple ports:
* 4222 is for clients. - 4222 is for clients.
* 8222 is an HTTP management port for information reporting. - 8222 is an HTTP management port for information reporting.
* 6222 is a routing port for clustering. - 6222 is a routing port for clustering.
* Use -p or -P to customize. - Use -p or -P to customize.
For example: ### Creating a NATS Cluster
```bash First run a server with the ports exposed on a `docker network`:
$ docker run -d --name nats-main nats
[INF] Starting nats-server version 0.6.6 ```sh
[INF] Starting http monitor on port 8222 $ docker network create nats
```
```sh
docker run --name nats --network nats --rm -p 4222:4222 -p 8222:8222 nats
[INF] Starting nats-server version 2.1.0
[INF] Git commit [1cc5ae0]
[INF] Starting http monitor on 0.0.0.0:8222
[INF] Listening for client connections on 0.0.0.0:4222
[INF] Server id is NDHWPPFNP2ASLPHXTMUU63NKUTZIKPJPMVBAHBAWJVAOSJG4QPXVRWL3
[INF] Server is ready
[INF] Listening for route connections on 0.0.0.0:6222 [INF] Listening for route connections on 0.0.0.0:6222
[INF] Listening for client connections on 0.0.0.0:4222 ```
[INF] nats-server is ready
``` ```
To run with the ports exposed on the host: Next, start another couple of servers and point them to the seed server to make them form a cluster:
```bash ```sh
> docker run -d -p 4222:4222 -p 6222:6222 -p 8222:8222 --name nats-main nats docker run --name nats-1 --network nats --rm nats --cluster nats://0.0.0.0:6222 --routes=nats://ruser:T0pS3cr3t@nats:6222
docker run --name nats-2 --network nats --rm nats --cluster nats://0.0.0.0:6222 --routes=nats://ruser:T0pS3cr3t@nats:6222
``` ```
To run a second server and cluster them together: **NOTE** Since the Docker image protects routes using credentials we need to provide them above. Extracted [from Docker image configuration](https://github.com/nats-io/nats-docker/blob/6fb8c05311bb4d1554390f66abb0a5ebef1e1c9d/2.1.0/scratch/amd64/nats-server.conf#L13-L19)
```bash To verify the routes are connected, you can make a request to the monitoring endpoint on `/routez` as follows and confirm that there are now 2 routes:
> docker run -d --name=nats-2 --link nats-main nats --routes=nats-route://ruser:T0pS3cr3t@nats-main:6222
```
**NOTE** Since the Docker image protects routes using credentials we need to provide them above. Extracted [from Docker image configuration](https://github.com/nats-io/nats-docker/blob/master/amd64/nats-server.conf#L16-L20) ```sh
curl http://127.0.0.1:8222/routez
```text {
# Routes are protected, so need to use them with --routes flag "server_id": "ND34PZ64QLLJKSU5SLSWRS5EUXEKNHW5BUVLCNFWA56R4D7XKDYWJFP7",
# e.g. --routes=nats-route://ruser:T0pS3cr3t@otherdockerhost:6222 "now": "2019-10-17T21:29:38.126871819Z",
authorization { "num_routes": 2,
user: ruser "routes": [
password: T0pS3cr3t {
timeout: 2 "rid": 7,
} "remote_id": "NDF4PMDKSKIZBYHUU5R7NA5KXNXLTKHVLN6ALBLQPAWTJKRAWJVPN4HA",
``` "did_solicit": false,
"is_configured": false,
To verify the routes are connected: "ip": "172.17.0.3",
"port": 59810,
```bash "pending_size": 0,
$ docker run -d --name=nats-2 --link nats-main nats --routes=nats-route://ruser:T0pS3cr3t@nats-main:6222 -DV "rtt": "561µs",
[INF] Starting nats-server version 2.0.0 "in_msgs": 0,
[INF] Starting http monitor on port 8222 "out_msgs": 0,
[INF] Listening for route connections on :6222 "in_bytes": 0,
[INF] Listening for client connections on 0.0.0.0:4222 "out_bytes": 0,
[INF] nats-server is ready "subscriptions": 0
[DBG] Trying to connect to route on nats-main:6222 },
[DBG] 172.17.0.52:6222 - rid:1 - Route connection created {
[DBG] 172.17.0.52:6222 - rid:1 - Route connect msg sent "rid": 8,
[DBG] 172.17.0.52:6222 - rid:1 - Registering remote route "ee35d227433a738c729f9422a59667bb" "remote_id": "ND6P52R5PASBYXK2MK44P6BYV7Q7PZEMTZJ5O5K7WXF4F54UD3EKVBSC",
[DBG] 172.17.0.52:6222 - rid:1 - Route sent local subscriptions "did_solicit": false,
``` "is_configured": false,
"ip": "172.17.0.4",
## Clustering With Docker "port": 37882,
"pending_size": 0,
Below is are a couple examples of how to setup nats-server cluster using Docker. We put 3 different configurations \(one per nats-server server\) under a folder named conf as follows: "rtt": "772µs",
"in_msgs": 0,
```text "out_msgs": 0,
|-- conf "in_bytes": 0,
|-- nats-server-A.conf "out_bytes": 0,
|-- nats-server-B.conf "subscriptions": 0
|-- nats-server-C.conf }
```
Each one of those files have the following content below: \(Here I am using ip 192.168.59.103 as an example, so just replace with the proper ip from your server\)
### Example 1: Setting up a cluster on 3 different servers provisioned beforehand
In this example, the three servers are started with config files that know about the other servers.
#### nats-server-A
```text
# Cluster Server A
port: 7222
cluster {
host: '0.0.0.0'
port: 7244
routes = [
nats-route://192.168.59.103:7246
nats-route://192.168.59.103:7248
] ]
} }
``` ```
#### nats-server-B
```text
# Cluster Server B
port: 8222
cluster {
host: '0.0.0.0'
port: 7246
routes = [
nats-route://192.168.59.103:7244
nats-route://192.168.59.103:7248
]
}
```
#### nats-server-C
```text
# Cluster Server C
port: 9222
cluster {
host: '0.0.0.0'
port: 7248
routes = [
nats-route://192.168.59.103:7244
nats-route://192.168.59.103:7246
]
}
```
To start the containers, on each one of your servers, you should be able to start the nats-server image as follows:
```bash
docker run -it -p 0.0.0.0:7222:7222 -p 0.0.0.0:7244:7244 --rm -v $(pwd)/conf/nats-server-A.conf:/tmp/cluster.conf nats -c /tmp/cluster.conf -p 7222 -D -V
```
```text
docker run -it -p 0.0.0.0:8222:8222 -p 0.0.0.0:7246:7246 --rm -v $(pwd)/conf/nats-server-B.conf:/tmp/cluster.conf nats -c /tmp/cluster.conf -p 8222 -D -V
```
```text
docker run -it -p 0.0.0.0:9222:9222 -p 0.0.0.0:7248:7248 --rm -v $(pwd)/conf/nats-server-C.conf:/tmp/cluster.conf nats -c /tmp/cluster.conf -p 9222 -D -V
```
### Example 2: Setting a nats-server cluster one by one
In this scenario:
* We bring up A and get its ip \(nats-route://192.168.59.103:7244\)
* Then create B and then use address of A in its configuration.
* Get the address of B nats-route://192.168.59.104:7246 and create C and use the addresses of A and B.
First, we create the Node A and start up a nats-server server with the following config:
```text
# Cluster Server A
port: 4222
cluster {
host: '0.0.0.0'
port: 7244
}
```
```bash
docker run -it -p 0.0.0.0:4222:4222 -p 0.0.0.0:7244:7244 --rm -v $(pwd)/conf/nats-server-A.conf:/tmp/cluster.conf nats -c /tmp/cluster.conf -p 4222 -D -V
```
Then we proceed to create the next node. We realize that the first node has ip:port as `192.168.59.103:7244` so we add this to the routes configuration as follows:
```text
# Cluster Server B
port: 4222
cluster {
host: '0.0.0.0'
port: 7244
routes = [
nats-route://192.168.59.103:7244
]
}
```
Then start server B:
```bash
docker run -it -p 0.0.0.0:4222:4222 -p 0.0.0.0:7244:7244 --rm -v $(pwd)/conf/nats-server-B.conf:/tmp/cluster.conf nats -c /tmp/cluster.conf -p 4222 -D -V
```
Finally, we create another Node C. We now know the routes of A and B so we can add it to its configuration:
```text
# Cluster Server C
port: 4222
cluster {
host: '0.0.0.0'
port: 7244
routes = [
nats-route://192.168.59.103:7244
nats-route://192.168.59.104:7244
]
}
```
Then start it:
```bash
docker run -it -p 0.0.0.0:4222:4222 -p 0.0.0.0:7244:7244 --rm -v $(pwd)/conf/nats-server-C.conf:/tmp/cluster.conf nats -c /tmp/cluster.conf -p 9222 -D -V
```
### Testing the Clusters ### Testing the Clusters
Now, the following should work: make a subscription to Node A then publish to Node C. You should be able to to receive the message without problems. Now, the following should work: make a subscription on one of the nodes and publish it from another node. You should be able to receive the message without problems.
```bash ```sh
nats-sub -s "nats://192.168.59.103:7222" hello & $ docker run --network nats --rm -it synadia/nats-box
~ # nats-sub -s nats://nats:4222 hello &
Listening on [hello]
nats-pub -s "nats://192.168.59.105:7222" hello world ~ # nats-pub -s "nats://nats-1:4222" hello first
~ # nats-pub -s "nats://nats-2:4222" hello second
[#1] Received on [hello]: 'first'
[#2] Received on [hello]: 'second'
```
[#1] Received on [hello] : 'world' Also stopping the seed node to which the subscription was done, should trigger an automatic failover to the other nodes:
# nats-server on Node C logs: ```sh
[1] 2015/06/23 05:20:31.100032 [TRC] 192.168.59.103:7244 - rid:2 - <<- [MSG hello RSID:8:2 5] $ docker stop nats
# nats-server on Node A logs: ...
[1] 2015/06/23 05:20:31.100600 [TRC] 10.0.2.2:51007 - cid:8 - <<- [MSG hello 2 5] Disconnected: will attempt reconnects for 10m
Reconnected [nats://172.17.0.4:4222]
```
Publishing again will continue to work after the reconnection:
```sh
~ # nats-pub -s "nats://nats-1:4222" hello again
~ # nats-pub -s "nats://nats-2:4222" hello again
``` ```
## Tutorial ## Tutorial
See the [NATS Docker tutorial](nats-docker-tutorial.md) for more instructions on using the NATS server Docker image. See the [NATS Docker tutorial](nats-docker-tutorial.md) for more instructions on using the NATS server Docker image.