Skip to content

Commit 8b01bc3

Browse files
committed
Doc: Improve the format of the tutorial
1 parent bdf4d34 commit 8b01bc3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

how_to_set_up_elasticsearch.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Install Elasticseacrch with Debian Package (Ubuntu 20.04)
22

3-
### Install Necessary Packages
3+
## Install Necessary Packages
44

55
Since `Elasticsearch` runs on top of `Java`, you need to install the Java Development Kit (JDK). You can check if Java is installed by running this command in your terminal:
66

@@ -20,7 +20,7 @@ Run `$ java -version` to check that `java` is installed. Then, allow access to y
2020
$ sudo apt install apt-transport-https
2121
```
2222

23-
### Download and Install Elasticsearch
23+
## Download and Install Elasticsearch
2424

2525
First, update the GPG Key for the Elasticsearch repository using the `wget` command to pull the public key ([from the documentation now](https://www.elastic.co/guide/en/elasticsearch/reference/current/deb.html)):
2626

@@ -40,7 +40,7 @@ $ sudo apt update
4040
$ sudo apt install elasticsearch
4141
```
4242

43-
### Start `elasticsearch`
43+
## Start `elasticsearch`
4444

4545
Elasticsearch does not run until you start it. Also, when you reboot your machine, you need to rerun the `elasticsearch` service since it does not start automatically. To reload the `systemd` configuration, run:
4646

@@ -70,7 +70,7 @@ $ curl localhost:9200
7070

7171
This completes the setup, installation and how to start the elasticsearch service. Now you can try running your commands on the terminal and everything should work fine.
7272

73-
**Example Commands**:
73+
Example Commands in your Python interpreter:
7474

7575
```python
7676
>>> from datetime import datetime

0 commit comments

Comments
 (0)