Skip to content

Commit 3b98746

Browse files
committed
Updating README
1 parent bcf62bf commit 3b98746

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

load_balancing/README.MD

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ the RabbitMQ broker will distribute the requests between all of the available se
1313

1414
To get started, [download and install RabbitMQ](https://www.rabbitmq.com/download.html) on your OS. Start the RabbitMQ service
1515
(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)
1717

1818
You might have to update the sample projects to point to your RabbitMQ instance. Update the *appsetting.json* file in both
1919
the client and server projects.

self_registration/README.MD

+5-3
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,16 @@ service to register itself. You can compare this to clocking into work for your
66
telling the registration service it's available, what it's address is and also provide some other meta data if
77
needed. [Consul](https://www.consul.io/) by HashiCorp is what we'll use as our registration service.
88

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.
1012
The following command is enough in most cases to run a single node consul environment
1113
```
1214
consul agent -dev
1315
```
1416

1517
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
1719
startup options might help.
1820

1921
```
@@ -50,4 +52,4 @@ dotnet run
5052
If everything is configured currectly, your client will retrieve the list of registered servers from our registration serivce
5153
AKA Consul. Right now there's only one, but feel to start up another instance of the API in another command prompt window.
5254

53-
See [Health Checks](../health_checks/README.MD)
55+
Next [Health Checks](../health_checks/README.MD)

0 commit comments

Comments
 (0)