You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/getting-started/aws.md
+4-4
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ This guide takes you through the steps to get Node-RED running in an AWS environ
12
12
There are two approaches:
13
13
14
14
1.[Running on the AWS Elastic Beanstalk Service (EB)](#running-on-aws-ebs)
15
-
2.[Running on Elastic Beanstalk with High Availability](#running-on-elastic-beanstalk-with-high-availabilty)
15
+
2.[Running on Elastic Beanstalk with High Availability](#running-on-elastic-beanstalk-with-high-availability)
16
16
3.[Running under an Ubuntu image on AWS EC2](#running-on-aws-ec2-with-ubuntu)
17
17
18
18
### Running on AWS EBS
@@ -89,17 +89,17 @@ Node-RED is now accessible directly from the web url of the application. However
89
89
90
90
2. Select the EC2 instance which is running the node-red application. copy its IP address
91
91
92
-
3. Enter the IP address in the browser with a port of 8081. This will provide direct access to the node-red adminstration console.
92
+
3. Enter the IP address in the browser with a port of 8081. This will provide direct access to the node-red administration console.
93
93
94
94
Note: the public IP address also provides access to the node-red application and it would be good practice to remove that access at the same time i.e. the HTTP rule for port 80.
95
95
96
96
Your Node-RED instance is now running on EBS. Any flows you create will be saved to AWS S3 so you can tear down the environment and the flows will be accessible whenever you redeploy.
97
97
98
-
### Running on Elastic Beanstalk with High Availabilty
98
+
### Running on Elastic Beanstalk with High availability
99
99
100
100
This deployment option gives you a multiple node Node-RED setup, with a shared filesystem using Amazon Elastic File System (EFS). Because it runs multiple nodes behind a load balancer, you will have high availabiliity - if a node dies, Elastic Beanstalk will replace it automgically.
101
101
102
-

102
+

103
103
104
104
To get started, clone the repository here [https://github.com/guysqr/node-red-ha-on-aws](https://github.com/guysqr/node-red-ha-on-aws) and follow the simple instructions. The infrastructure is created for you by a CloudFormation template, so you don't need to know much about AWS to set it up.
Copy file name to clipboardExpand all lines: docs/getting-started/docker.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -223,7 +223,7 @@ Dockerfile
223
223
README.md
224
224
package.json # add any extra nodes your flow needs into your own package.json.
225
225
flows.json # the normal place Node-RED store your flows
226
-
flows_cred.json # credemtials your flows may need
226
+
flows_cred.json # credentials your flows may need
227
227
settings.js # your settings file
228
228
```
229
229
@@ -278,7 +278,7 @@ You _build_ this Dockerfile normally:
278
278
docker build -t your-image-name:your-tag .
279
279
```
280
280
281
-
To _run_ locally for development where changes are written immediately and only the local directory that youre working from, `cd` into the project's directory and then run:
281
+
To _run_ locally for development where changes are written immediately and only the local directory that you are working from, `cd` into the project's directory and then run:
0 commit comments