Answers for "an't start server: bind on tcp/ip port. got error: 10048: only one usage of each socket address (protocol/network address/port) is normally permitted."

0

(OS 10048)Only one usage of each socket address (protocol/network address/port) is normally permitted. : AH00072: make_sock: could not bind to address [::]:80

Confirm if some other process is already listening to Port 80.

netstat -aon | findstr :80

Since it is windows server there are chances to have IIS running by default.

You will have to stop the website binded with port 80 from IIS Manager and then 
run httpd.exe again.
Posted by: Guest on December-17-2021
0

docker: Error response from daemon: Ports are not available: listen tcp 0.0.0.0:3306: bind: Only one usage of each socket address (protocol/network address/port) is normally permitted.

localhost port already is being in used. Change to another port. Ex 3366
docker run -e MYSQL_ROOT_PASSWORD=root  --name localMysql -d  -p 3366:3306  mysql:8.0.23
Posted by: Guest on April-12-2021

Code answers related to "an't start server: bind on tcp/ip port. got error: 10048: only one usage of each socket address (protocol/network address/port) is normally permitted."

Code answers related to "TypeScript"

Browse Popular Code Answers by Language