File tree 2 files changed +6
-4
lines changed
2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ the RabbitMQ broker will distribute the requests between all of the available se
13
13
14
14
To get started, [ download and install RabbitMQ] ( https://www.rabbitmq.com/download.html ) on your OS. Start the RabbitMQ service
15
15
(if is hasn't been started already). You can use the ` rabbitmqctl ` command line utility to check the status of your RabbitMQ installation.
16
- As an alternative, you could always setup a free RabbitMQ instance online with (CloudAMQP) [ https://www.cloudamqp.com/ ]
16
+ As an alternative, you could always setup a free RabbitMQ instance online with [ CloudAMQP ] ( https://www.cloudamqp.com )
17
17
18
18
You might have to update the sample projects to point to your RabbitMQ instance. Update the * appsetting.json* file in both
19
19
the client and server projects.
Original file line number Diff line number Diff line change @@ -6,14 +6,16 @@ service to register itself. You can compare this to clocking into work for your
6
6
telling the registration service it's available, what it's address is and also provide some other meta data if
7
7
needed. [ Consul] ( https://www.consul.io/ ) by HashiCorp is what we'll use as our registration service.
8
8
9
- To run this demo you'll need to [ download Consul] ( https://www.consul.io/downloads.html ) and start the service.
9
+ To run this demo you'll need to [ download] ( https://www.consul.io/downloads.html ) and
10
+ [ install] ( https://www.consul.io/intro/getting-started/install.html ) Consul. Now [ start] ( https://www.consul.io/intro/getting-started/agent.html )
11
+ the service.
10
12
The following command is enough in most cases to run a single node consul environment
11
13
```
12
14
consul agent -dev
13
15
```
14
16
15
17
If you have multiple IPs on your machine (usually the case if you have VM software setup or multiple network adapters) then
16
- the previous command would have failed. Instead, you'll have to specify the IP you wish for Consul to listen on. The following
18
+ the previous command might have failed. Instead, you'll have to specify the IP you wish for Consul to listen on. The following
17
19
startup options might help.
18
20
19
21
```
@@ -50,4 +52,4 @@ dotnet run
50
52
If everything is configured currectly, your client will retrieve the list of registered servers from our registration serivce
51
53
AKA Consul. Right now there's only one, but feel to start up another instance of the API in another command prompt window.
52
54
53
- See [ Health Checks] ( ../health_checks/README.MD )
55
+ Next [ Health Checks] ( ../health_checks/README.MD )
You can’t perform that action at this time.
0 commit comments