Won't bind listener to 443.

#1
I tried to create a new listener for port 443 but it wouldn't bind any listener. I checked using `sudo lsof -i:443` and no, there were no listeners on that port. I tried adding a listener to port 8088 and it worked fine.
 

Cold-Egg

Administrator
#2
Usually it's due to something else is listening on the same port.
Can you try netstat tool to check again, e.g.
Code:
netstat -antupl | grep 443
 
Top