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
+21-21
Original file line number
Diff line number
Diff line change
@@ -74,21 +74,21 @@ Elasticsearch Installation
74
74
3. Copy the contents of ElasticMARC\elasticsearch to the Elasticsearch directory, overwriting any existing files.
75
75
4. Open root\config\elasticsearch.yml and modify the following:
76
76
77
-
| Setting | Value |
78
-
| :--- | :--- |
79
-
| Node.name: | HostnameOfComputer
80
-
| Network.host: | IPv4 address Elasticsearch will listen on, use 0.0.0.0 to listen on all addresses. |
81
-
| http.port: | Port Elasticsearch will listen on, 9200 is used by default.|
82
-
| (Optional) path.data: | Where Elasticsearch will store indexed data. Default: root\data.|
83
-
| (Optional) path.logs: | Where Elasticsearch will store logs. Default: root\logs.|
77
+
| Setting | Value | Default |
78
+
| :--- | :--- | :--- |
79
+
| Node.name: | HostnameOfComputer||
80
+
| Network.host: | IPv4 address Elasticsearch will listen on, use 0.0.0.0 to listen on all addresses. ||
81
+
| http.port: | Port Elasticsearch will listen on| 9200|
82
+
| (Optional) path.data: | Where Elasticsearch will store indexed data. |root\data|
83
+
| (Optional) path.logs: | Where Elasticsearch will store logs. |root\logs |
84
84
<br/>
85
85
<br/>
86
86
5. Open root\config\jvm.options and modify the following, if necessary:
87
87
88
-
| Setting | Value |
88
+
| Setting | Value | Default |
89
89
| :--- | :--- |
90
-
| -Xms1g| Initial RAM Elasticsearch JVM will use. |
91
-
| -Xmx1g| Max RAM Elasticsearch JVM will use. |
90
+
| -Xms| Initial RAM Elasticsearch JVM will use.| 1g|
91
+
| -Xmx| Max RAM Elasticsearch JVM will use.| 1g|
92
92
* Xms and Xmx should be set to the same size. If they are not, you may experience performance issues. These values represent the amount of RAM the Elasticsearch JVM will allocate. For the purposes of this guide, 1GB is sufficient.
93
93
<br/>
94
94
6. Open an administrative CMD window and enter the following commands: <br/>
@@ -113,13 +113,13 @@ Kibana Installation
113
113
2. Copy the contents of ElasticMARC\kibana to the Kibana directory, overwriting any existing files.
114
114
3. Open root\config\kibana.yml and modify the following:
115
115
116
-
| Setting | Value |
117
-
| :--- | :--- |
118
-
| Server.port: | Port to listen on, Default is 5601 |
| Logging.dest: | File and path for logging. Folder must exist, file will be created, preserve double quotes |
116
+
| Setting | Value | Default |
117
+
| :--- | :--- | :--- |
118
+
| Server.port: | Port to listen on| 5601 |
119
+
| Server.host: | Server hostname ||
120
+
| Server.name: | Server hostname ||
121
+
| Elasticsearch.url: |http://SERVERHOSTNAME:IP||
122
+
| Logging.dest: | File and path for logging. Folder must exist, file will be created, preserve double quotes | root\log |
123
123
* If you want to change the logging level, change the appropriate logging line value to true.
124
124
* Kibana does not have a service installer, we will utilize NSSM to create a service for Kibana.
125
125
<br/>
@@ -166,10 +166,10 @@ Logstash Installation
166
166
<br/>
167
167
5. Open root\config\jvm.options and modify the following:
168
168
169
-
| Setting | Value |
170
-
| :--- | :--- |
171
-
| -Xms1g| Initial RAM used by Logstash JVM |
172
-
| -Xmx1g| Max RAM used by Logstash JVM |
169
+
| Setting | Value | Default |
170
+
| :--- | :--- | :--- |
171
+
| -Xms| Initial RAM used by Logstash JVM| 1g|
172
+
| -Xmx| Max RAM used by Logstash JVM| 1g|
173
173
* Xms and Xmx should be set to the same size. If they are not, you may experience performance issues. These values represent the amount of RAM the Logstash JVM will allocate. For the purposes of this guide, 1GB is sufficient.
0 commit comments