Kong: Mashape Kong does not start on Mac OS X
Today I have installed Kong (API Control Layer) on my Mac OS X (Yosemite 10.10.5). I used the .pkg file that is available here . I followed the installation instructions and everything was successful.
I also installed Cassandra using the information provided on the Cassandra home page.
But when I start Kong using the command:
$ kong start
It throws the following error:
dnsmasq: failed to create listening socket for fe80::3e15:XXXX:XXXX%en0: Can't assign requested address
+3
source to share
4 answers
The problem is that dnsmasq on Kong is listening on the default port 8053
( https://github.com/Mashape/kong/blob/master/kong.yml#L29 ) which seems to be already accepted on your system.
Make sure nothing is running on this port.
0
source to share