デフォルトでは、Meteorアプリケーションはポート3000から開始します

$ meteor[[[[[~/path-to/meteor/hello]]]]]
=> Started proxy.
=> Started MongoDB.
=> Started your app.

=> App running at: http://localhost:3000/....

===  1.流星港9999

Meteorアプリケーションを別のポートで起動するには、 `--port`パラメーターでMeteorを起動してください。

$ meteor –port 9999[[[[[~/path-to/meteor/app]]]]]
⇒ Started proxy.
⇒ Started MongoDB.
⇒ Started your app.

⇒ App running at:

http://localhost:9999/…​

;.

メテオールポート80

1024より小さいポートの場合、 `sudo`が必要です

$ meteor --port 80
Error: listen EACCES

$ sudo meteor --port 80[[[[[~/path-to/meteor/app]]]]]
=> Started proxy.
=> Started MongoDB.
=> Started your app.

=> App running at: http://localhost:80/....

** 注** 実稼働環境では、https://github.com/arunoda/meteorup[Meteor Up]を使用するか、別のポートでMeteorアプリを起動し、Webサーバーにリバースプロキシを設定してください。

link://tag/meteor/[meteor]