How to control where Meteor runs

后端 未结 4 1650
离开以前
离开以前 2021-02-01 09:21

I\'m installing Meteor (framework) on my AWS EC2 (micro) instance and followed the instructions and after creating a test project I ran meteor on that directory giv

4条回答
  •  半阙折子戏
    2021-02-01 10:13

    I think the problem is that port 3000 is likely blocked by amazon's firewall. You could look at opening it up, try Tyr's solution, or try just running meteor with

    meteor --port 80
    

    You may need root permissions (i.e. sudo) to do this.

提交回复
热议问题