You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: extra/troubleshooting.md
+11-1Lines changed: 11 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,17 @@ Docker Toolbox is not supported anymore by API Platform. Please upgrade to [Dock
10
10
11
11
### Error starting userland proxy
12
12
13
-
If the `app` container cannot start and display this `Error starting userland proxy: Bind for 0.0.0.0:80`, it means that port 80 is already in use.
13
+
If the `app` container cannot start and display this `Error starting userland proxy: Bind for 0.0.0.0:80`, it means that port 80 is already in use. You can check to see which processes are currently listening on certain ports.
14
+
15
+
```bash
16
+
# Find out if any service listens on port 80.
17
+
# You can use this command on UNIX-based OSes like MacOS and Linux.
18
+
sudo lsof -n -i :80 | grep LISTEN
19
+
20
+
# For Windows, you can use netstat.
21
+
# This will give you all TCP/IP network connections and not just processes listening to port 80.
22
+
netstat -a -b
23
+
```
14
24
15
25
You can change the port to be used in the `docker-compose.yml` file (default is port 80).
0 commit comments