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
+17-9Lines changed: 17 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -53,7 +53,7 @@ $ sudo vi /etc/kibana/kibana.yml
53
53
server.host: "192.168.1.77" [update with correct value]
54
54
```
55
55
56
-
4. Start ElasticSearch then Kibana. Then open browser http://192.168.1.77:5601
56
+
4. Start ElasticSearch then Kibana. Then open browser http://192.168.1.77:5601[update with correct value]
57
57
58
58
```
59
59
$ sudo systemctl start elasticsearch
@@ -73,7 +73,7 @@ $ sudo apt update
73
73
$ sudo apt install yarn
74
74
```
75
75
76
-
6. Download Kibana source code and select the target version (v7.6.2, v7.0.0, etc.). `kibana` is the top directory
76
+
6. Download Kibana source code and select the target version (v7.6.2, v7.7.1, etc.). `kibana` is the top directory
77
77
78
78
```
79
79
$ git clone https://github.com/elastic/kibana.git
@@ -99,7 +99,7 @@ $ echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf
99
99
$ sudo sysctl -p
100
100
```
101
101
102
-
10. If you have problem to start Kibana 7.7.0 (from Git. For some reason it thinks it is already in version 8.0.0) with ElasticSearch 7.7.0, add this line in `config/kibana.yml` config file. When upgrading from 7.6 to 7.7 I had to delete all indexes `curl -XDELETE localhost:9200/*`
102
+
10. If you have problem to start Kibana 7.7.1 (from Git. For some reason it thinks it is already in version 8.0.0) with ElasticSearch 7.7.1 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.7.1 @ 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.7.1 I had to delete all indexes `curl -XDELETE localhost:9200/*`
103
103
104
104
```
105
105
elasticsearch.ignoreVersionMismatch: true
@@ -136,12 +136,16 @@ I use [Microsoft Code](https://code.visualstudio.com/) to edit code and [Google
136
136
137
137
## Packaging the plugin as a zip file
138
138
139
-
Simply add the plugin directory inside a `kibana` folder and zip the file. Do not include the `my-plugin/target` directory in the zip file. The zip structure is
139
+
Simply add the plugin directory inside a `kibana` folder and zip the file. Filename format carries the Kibana version (i.e. 7.7.1) followed by the plugin version (i.e. 1.0.0). Do not include the `vis_type_custom_form_filter_accounts/target` directory in the zip file.
140
+
141
+
To change the Kibana version, just change the file `kbn_tp_custom_form_filter_accounts/package.json`, value `kibana.version`.
0 commit comments