错误的原因是因为 80 端口被占用。可以用命令来查看 80 端口的使用情况
lsof -i:PORT
如果是被 Apache 2 占用,下面方法可以解决。
sudo apachectl stop
or you can run this on Ubuntu
sudo /etc/init.d/apache2 stop
错误的原因是因为 80 端口被占用。可以用命令来查看 80 端口的使用情况
lsof -i:PORT
如果是被 Apache 2 占用,下面方法可以解决。
sudo apachectl stop
or you can run this on Ubuntu
sudo /etc/init.d/apache2 stop
评论区