Hi @joshua1
Based on the logs it looks like there might be a port conflict occurring. Here are some steps to help us identify and address this:
-
Stop all sites that are running in Local
-
Force quit Local
-
(If using Windows) Run the command
netstat -ano
What you’ll be looking for here is to see when sites are stopped and Local is properly shut down if there are still programs running that may be conflicting with Local or the system may be reporting Local is still running.
Once you run that command you should see a list of listening ports. If you see a particular program making use of those ports, you can then kill that process by running sudo kill -9 XXX
where XXX is the PID number of that process. (On Windows you will use taskkill /F /pid XXX
where XXX is the PID number of that process)
After that, you should be able to retry. Keep us posted if you have any questions or continuing issues.
There are also some more details around this and other troubleshooting steps at this link if needed: Stopping Whatever Is Listening On Port 80.