質問編集履歴
2
グローバルIPアドレスと明示しました。
title
CHANGED
File without changes
|
body
CHANGED
@@ -10,7 +10,7 @@
|
|
10
10
|
エラーメッセージ
|
11
11
|
```
|
12
12
|
log [17:59:06.707] [info][plugins-service] Plugin "case" is disabled.
|
13
|
-
log [18:00:21.994] [fatal][root] { Error: listen EADDRNOTAVAIL: address not available <サーバのアドレス>:5601
|
13
|
+
log [18:00:21.994] [fatal][root] { Error: listen EADDRNOTAVAIL: address not available <サーバのグローバルIPアドレス>:5601
|
14
14
|
at Server.setupListenHandle [as _listen2] (net.js:1263:19)
|
15
15
|
at listenInCluster (net.js:1328:12)
|
16
16
|
at doListen (net.js:1461:7)
|
@@ -18,10 +18,10 @@
|
|
18
18
|
code: 'EADDRNOTAVAIL',
|
19
19
|
errno: 'EADDRNOTAVAIL',
|
20
20
|
syscall: 'listen',
|
21
|
-
address: '<サーバのアドレス>',
|
21
|
+
address: '<サーバのグローバルIPアドレス>',
|
22
22
|
port: 5601 }
|
23
23
|
|
24
|
-
FATAL Error: listen EADDRNOTAVAIL: address not available <サーバのアドレス>
|
24
|
+
FATAL Error: listen EADDRNOTAVAIL: address not available <サーバのグローバルIPアドレス>
|
25
25
|
```
|
26
26
|
|
27
27
|
./config/kibana.yml の記述は、以下のようになっています。
|
@@ -32,7 +32,7 @@
|
|
32
32
|
# Specifies the address to which the Kibana server will bind. IP addresses and host names are both valid values.
|
33
33
|
# The default is 'localhost', which usually means remote machines will not be able to connect.
|
34
34
|
# To allow connections from remote users, set this parameter to a non-loopback address.
|
35
|
-
server.host: "<サーバのアドレス>"
|
35
|
+
server.host: "<サーバのグローバルIPアドレス>"
|
36
36
|
...
|
37
37
|
# Enables you specify a file where Kibana stores log output.
|
38
38
|
logging.dest: stdout
|
1
ymlのパスが間違えていたので修正
title
CHANGED
File without changes
|
body
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
|
5
5
|
### 発生している問題・エラーメッセージ
|
6
6
|
|
7
|
-
$ ./bin/kibana -c /
|
7
|
+
$ ./bin/kibana -c ./config/kibana.yml
|
8
8
|
のコマンドでKibanaを起動しようとすると、エラーメッセージが出て起動に失敗してしまいます。
|
9
9
|
|
10
10
|
エラーメッセージ
|
@@ -24,7 +24,7 @@
|
|
24
24
|
FATAL Error: listen EADDRNOTAVAIL: address not available <サーバのアドレス>
|
25
25
|
```
|
26
26
|
|
27
|
-
/
|
27
|
+
./config/kibana.yml の記述は、以下のようになっています。
|
28
28
|
```
|
29
29
|
# Kibana is served by a back end server. This setting specifies the port to use.
|
30
30
|
server.port: 5601
|