[LINUX] When I turned off my macPC and tried to start the docker container, I was told Cannot start service workspace: driver failed programming external connectivity on endpoint laradock_workspace_1
Find out which port is being used mac
- Open finder
2, command + shift + G
- / System / Library / Core Services / Applications /
4, network utility
5、Scan
You can see the port used in the above flow
Erase the used port
1, sudo lsof -i: Port number you want to erase
Example: For 8080, sudo lsof -i: 8080
2. sudo kill -9 The displayed PID
Example: If 80, sudo kill -9 80
You can delete the port you want to delete with the above flow