Skip to content

Commit 661c89b

Browse files
author
guyplusplus
committed
Typos fix
1 parent 4db3ccb commit 661c89b

File tree

1 file changed

+10
-11
lines changed

1 file changed

+10
-11
lines changed

README.md

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -39,30 +39,29 @@ $ sudo apt install elasticsearch
3939
$ sudo apt install kibana
4040
```
4141

42-
For testing purpose, it may be required to install a specific (not latest) version of kibana or ElasticSearch.
42+
For testing purpose, it may be required to install a specific (not latest) version of Kibana or ElasticSearch.
4343

4444
```shell
45-
$ sudo apt remove kibana [for latest version]
46-
$ sudo apt install kibana=7.8.0 [for a specific version]
45+
$ sudo apt install kibana [for latest version]
46+
$ sudo apt install kibana=7.8.0 [OR for a specific version]
4747
```
4848

49-
3. Adjust listening IP address of kibana if network access is required
49+
3. Adjust listening IP address of Kibana if network access is required
5050

5151
```shell
5252
$ sudo vi /etc/kibana/kibana.yml
5353
server.host: "192.168.1.77" [update with correct IP value]
5454
```
5555

56-
4. Start ElasticSearch, possibly upload the accounts test data, then start Kibana. Then open browser http://192.168.1.77:5601 [update with correct IP value]
56+
4. Start ElasticSearch, possibly upload the accounts test data
5757

5858
```shell
5959
$ sudo systemctl start elasticsearch
6060
$ curl -X GET "localhost:9200"
6161
$ curl -H 'Content-Type: application/x-ndjson' -XPOST 'localhost:9200/bank/account/_bulk?pretty' --data-binary @accounts.json [optional]
62-
$ sudo systemctl start kibana
6362
```
6463

65-
5. Now to create a development environment, download nvm, git client and yarn
64+
5. Now to create a Kibana development environment, download nvm, git client and yarn
6665

6766
```shell
6867
$ curl https://raw.githubusercontent.com/creationix/nvm/v0.25.0/install.sh | bash [then open a new terminal]
@@ -74,17 +73,17 @@ $ sudo apt update
7473
$ sudo apt install yarn
7574
```
7675

77-
6. Download Kibana source code. . After download, `kibana` is the top directory. Then select the target version by selecting a tag or a branch (v7.6.2, v7.8.0, v7.8, etc.)
76+
6. Download Kibana source code. After download, `kibana` is the top directory. Then select the target version by selecting a tag or a branch (v7.6.2, v7.8.0, v7.8, etc.)
7877

7978
```shell
8079
$ git clone https://github.com/elastic/kibana.git
8180
$ cd kibana
8281
$ git checkout v7.8.0
8382
```
8483

85-
7. Copy the source code with modified name inside the `kibana/plugins` directory
84+
7. Copy the source code of this plugin with modified name inside the `kibana/plugins` directory
8685

87-
8. Start Kibana in development mode, ensuring only OSS (Open Source Software) features are used
86+
8. Start Kibana in development mode, ensuring only OSS (Open Source Software) features are used. This step may take few minutes for the first compilation
8887

8988
```shell
9089
$ cd kibana
@@ -106,7 +105,7 @@ $ sudo sysctl -p
106105
elasticsearch.ignoreVersionMismatch: true
107106
```
108107

109-
11. When it is time to upgrade the kibana development environment, start for a clean environment, get the latest changes from github, and switch to the new tag or release. The `kibana/plugins` directory remains untouched accross these steps. You may delete the `target` folder in each plugin folder.
108+
11. When it is time to upgrade the Kibana development environment, start for a clean environment, get the latest changes from github, and switch to the new tag or release. The `kibana/plugins` directory remains untouched accross these steps. You may delete the `target` folder in each plugin folder.
110109

111110
```shell
112111
$ cd kibana

0 commit comments

Comments
 (0)