我已经使用Yeoman使用bower和grunt构建了一个有角度的应用程序。运行咕unt发球给我这个错误:

Running "connect:livereload" (connect) task
Fatal error: Port 9000 is already in use by another process.

我有另一个使用端口9000的进程,所以我只想更改Grunt的端口即可。我试图更改我的Gruntfile中的端口,但是我仍然遇到相同的错误。这是来自Gruntfile.js的grunt服务器设置
 connect: {
     options: {
        port: 9002,
        hostname: 'localhost',
        livereload: 35729
  },

最佳答案

查找正在使用端口的进程ID:

sudo lsof -i :3000

杀了它:
kill -9 <PID>

关于gruntjs - 咕Ser服务|连接:livereload Port 9000 already in use,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/33018437/

10-12 07:02