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
* Updating the AWS quickstart document.
* Update AWS-CloudFormation/cloudFormationTemplates/* with newer AMI, added some steps to CloudFormation-QuickStart.md
Co-authored-by: Stuart Moorhouse <[email protected]>
Copy file name to clipboardExpand all lines: AWS-CloudFormation/CloudFormation-QuickStart.md
+28-4
Original file line number
Diff line number
Diff line change
@@ -8,14 +8,27 @@ _All the resource files have been configure and compiled specifically for this e
8
8
In particular, IP addresses are in the config files._
9
9
10
10
## Requirements
11
-
* You just need to have an AWS account.
11
+
* You need to have an AWS account
12
+
* You need to have subscribed to the [MarkLogic AMI](https://aws.amazon.com/marketplace/pp/B072Z536VB?ref_=aws-mp-console-subscription-detail)
13
+
* You need to have subscribed to the [Kafka Certified by Bitnami AMI](https://aws.amazon.com/marketplace/pp/B01K0IWPVI?qid=1587125714910&sr=0-1&ref_=srh_res_product_title)
12
14
13
15
## Create a Key Pair in AWS
14
-
1. Navigate to your [AWS Key Pairs](https://console.aws.amazon.com/ec2/v2/home?region=us-east-1#KeyPairs:sort=keyName)
16
+
Please note: if you are using the default values in the resource files, you will need to be in the us-east-1 (Virginia) region when you follow these steps.
17
+
18
+
1. Navigate to your [AWS Key Pairs](https://console.aws.amazon.com/ec2/v2/home?region=us-east-1#KeyPairs:sort=keyName).
19
+
15
20
1. Click "Create Key Pair".
21
+
16
22
1. Name the Key Pair, 'kafka', and click "Create".
23
+
17
24
1. When prompted, save the PEM file locally.
18
25
26
+
1. Change the file permissions on the PEM file:
27
+
28
+
```
29
+
chmod 400 kafka.pem
30
+
```
31
+
19
32
## Build the AWS Resources
20
33
1. Navigate to the [AWS CloudFormation](https://console.aws.amazon.com/cloudformation/home?region=us-east-1) page.
21
34
1. Click "Create Stack"
@@ -29,7 +42,7 @@ In particular, IP addresses are in the config files._
29
42
1. Now wait until initialization is complete.
30
43
31
44
## Start the Connector
32
-
1. On the list of you AWS Instances, click on the instance named, "TemplateBased-Kafka-Worker-A".
45
+
1. On the list of your AWS Instances, click on the instance named, "instanceKafkaWorkerA".
33
46
1. Copy the Public DNS (IPv4).
34
47
1. Ssh to the TemplateBased-Kafka-Worker-A server.
35
48
`ssh -i kafka.pem bitnami@<Public DNS>`
@@ -38,9 +51,20 @@ In particular, IP addresses are in the config files._
38
51
39
52
## Generate some Messages
40
53
This step uses the JAR file from a small project for producing test messages. It can be found in [my GitHub account](https://github.com/BillFarber/KafkaProducer)
41
-
1. On the list of you AWS Instances, click on the instance named, "TemplateBased-Kafka-Worker-A".
54
+
1. On the list of your AWS Instances, click on the instance named, "instanceKafkaWorkerA".
42
55
1. Copy the Public DNS (IPv4).
43
56
1. Ssh to the TemplateBased-Kafka-Worker-A server.
0 commit comments