如果执行 hexo s
的时候遇到了提示 FATAL Port 4000 has been used. Try other port instead
那么其实是因为4000端口被占用了,把端口进程杀掉就可以了。
netstat -ano | findstr 4000 #最后一列是pid
tasklist | findstr pid
taskkill -PID pid -F
干掉被占用的端口,你再启动 hexo 就不会报错了。
如果执行 hexo s
的时候遇到了提示 FATAL Port 4000 has been used. Try other port instead
那么其实是因为4000端口被占用了,把端口进程杀掉就可以了。
netstat -ano | findstr 4000 #最后一列是pid
tasklist | findstr pid
taskkill -PID pid -F
干掉被占用的端口,你再启动 hexo 就不会报错了。