-
Notifications
You must be signed in to change notification settings - Fork 8.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Improve "port taken" type errors #6064
Comments
I'm having the same issue, /usr/local/kibana-5.3.0-linux-x86_64/bin/kibana
log [23:08:08.708] [info][status][plugin:[email protected]] Status changed from uninitialized to green - Ready
log [23:08:08.772] [info][status][plugin:[email protected]] Status changed from uninitialized to yellow - Waiting for Elasticsearch
log [23:08:08.794] [info][status][plugin:[email protected]] Status changed from uninitialized to green - Ready
log [23:08:08.825] [info][status][plugin:[email protected]] Status changed from yellow to green - Kibana index ready
log [23:08:08.960] [info][status][plugin:[email protected]] Status changed from uninitialized to green - Ready
log [23:08:08.966] [fatal] Error: listen EADDRNOTAVAIL 172.24.14.161:5601
at Object.exports._errnoException (util.js:1022:11)
at exports._exceptionWithHostPort (util.js:1045:20)
at Server._listen2 (net.js:1246:19)
at listen (net.js:1295:10)
at net.js:1405:9
at _combinedTickCallback (internal/process/next_tick.js:77:11)
at process._tickCallback (internal/process/next_tick.js:98:9)
FATAL { Error: listen EADDRNOTAVAIL 172.24.14.161:5601
at Object.exports._errnoException (util.js:1022:11)
at exports._exceptionWithHostPort (util.js:1045:20)
at Server._listen2 (net.js:1246:19)
at listen (net.js:1295:10)
at net.js:1405:9
at _combinedTickCallback (internal/process/next_tick.js:77:11)
at process._tickCallback (internal/process/next_tick.js:98:9)
cause:
{ Error: listen EADDRNOTAVAIL 172.24.14.161:5601
at Object.exports._errnoException (util.js:1022:11)
at exports._exceptionWithHostPort (util.js:1045:20)
at Server._listen2 (net.js:1246:19)
at listen (net.js:1295:10)
at net.js:1405:9
at _combinedTickCallback (internal/process/next_tick.js:77:11)
at process._tickCallback (internal/process/next_tick.js:98:9)
code: 'EADDRNOTAVAIL',
errno: 'EADDRNOTAVAIL',
syscall: 'listen',
address: '172.24.14.161',
port: 5601 },
isOperational: true,
code: 'EADDRNOTAVAIL',
errno: 'EADDRNOTAVAIL',
syscall: 'listen',
address: '172.24.14.161',
port: 5601 } It says,
kibana.yml# Kibana is served by a back end server. This setting specifies the port to use.
#server.port: 5601
# Specifies the address to which the Kibana server will bind. IP addresses and host names are both valid values.
# The default is 'localhost', which usually means remote machines will not be able to connect.
# To allow connections from remote users, set this parameter to a non-loopback address.
server.host: "172.24.14.161"
# Enables you to specify a path to mount Kibana at if you are running behind a proxy. This only affects
# the URLs generated by Kibana, your proxy is expected to remove the basePath value before forwarding requests
# to Kibana. This setting cannot end in a slash.
#server.basePath: ""
# The maximum payload size in bytes for incoming server requests.
#server.maxPayloadBytes: 1048576
# The Kibana server's name. This is used for display purposes.
#server.name: "your-hostname"
# The URL of the Elasticsearch instance to use for all your queries.
elasticsearch.url: "http://172.24.41.161:9200" Changing |
/usr/local/kibana-5.3.0-linux-x86_64/bin/kibana i am also find same error can u please guide me any one. |
log [07:33:29.069] [fatal] Error: listen EADDRNOTAVAIL 52.66.132.152:5602 |
@chenchurao what is your elasticsearch config? Sorry I forgot to update that I made it working by setting full permission to the kibana package, which is weird but it did work.
|
@prayagupd It's still not working. Does it have something to do with nginx beacause it was working for me before. But after I installed nginx Kibana stopped working with error message "listen EADDRNOTAVAIL" |
Here's a current example:
I'm going to close this out - no comments in 3 years. We can reopen if there's still concerns around the messaging. |
This was raised here, we report a taken port as;
We should really make this a little nicer.
The text was updated successfully, but these errors were encountered: