Nginx啟動報錯:nginx: [emerg] bind() to 0.0.0.0:80 failed (10013: An attempt was made to access a socket in a way forbidden by its access permissions)
這個報錯代表80端口被占用
先查看占用80的端口
netstat -aon | findstr :80
把它殺掉,強制結束
taskkill /PID 22104 /F
這樣就沒有了,我們再去執行exe
解決了!!!