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: README.md
+11-11Lines changed: 11 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,7 @@ Few screen shots which makes it very easy to understand.
24
24
25
25
1. Install curl and JRE
26
26
27
-
```
27
+
```shell
28
28
$ sudo apt install curl
29
29
$ sudo apt install openjdk-11-jre-headless
30
30
```
@@ -41,21 +41,21 @@ $ sudo apt install kibana
41
41
42
42
For testing purpose, it may be required to install a specific (not latest) version of kibana or ElasticSearch.
43
43
44
-
```
44
+
```shell
45
45
$ sudo apt remove kibana [for latest version]
46
46
$ sudo apt install kibana=7.8.0 [for a specific version]
47
47
```
48
48
49
49
3. Adjust listening IP address of kibana if network access is required
50
50
51
-
```
51
+
```shell
52
52
$ sudo vi /etc/kibana/kibana.yml
53
53
server.host: "192.168.1.77" [update with correct IP value]
54
54
```
55
55
56
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]
5. Now to create a development environment, download nvm, git client and yarn
66
66
67
-
```
67
+
```shell
68
68
$ curl https://raw.githubusercontent.com/creationix/nvm/v0.25.0/install.sh | bash [then open a new terminal]
69
69
$ nvm install 10.21.0
70
70
$ sudo apt install git
@@ -76,7 +76,7 @@ $ sudo apt install yarn
76
76
77
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.)
78
78
79
-
```
79
+
```shell
80
80
$ git clone https://github.com/elastic/kibana.git
81
81
$ cd kibana
82
82
$ git checkout v7.8.0
@@ -86,7 +86,7 @@ $ git checkout v7.8.0
86
86
87
87
8. Start Kibana in development mode, ensuring only OSS (Open Source Software) features are used
88
88
89
-
```
89
+
```shell
90
90
$ cd kibana
91
91
$ nvm use
92
92
$ yarn kbn bootstrap
@@ -95,14 +95,14 @@ $ yarn start --oss
95
95
96
96
9. Kernel values adjustment for large number of file monitoring may be required
97
97
98
-
```
98
+
```shell
99
99
$ echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf
100
100
$ sudo sysctl -p
101
101
```
102
102
103
103
10. If you have problem to start Kibana 7.8.0 (from Git. For some reason it thinks it is already in version 8.0.0) with ElasticSearch 7.8.0 with the error message `[error][savedobjects-service] This version of Kibana (v8.0.0) is incompatible with the following Elasticsearch nodes in your cluster: v7.8.0 @ 127.0.0.1:9200 (127.0.0.1)`, add this line in `config/kibana.yml` config file. When upgrading from 7.6.2 to 7.8.0 I had to delete all indexes `curl -XDELETE localhost:9200/*`
0 commit comments