(98)Address already in use: make_sock: could not bind to address [::]:80
no listening sockets available, shutting down
Unable to open logs
First let’s see what process is listening on that port:
lsof -i :80
Once you see what process is listening, you can kill it off
kill PID
replacing PID with the process ID number.