Launching the Meteor Server Console

After deploying the Meteor application on the server, how can you output console output to the Meteor server? The application has been deployed using meteor-upMeteor 0.7.

+3
source share
3 answers

How about this? This is indicated in the docs:

mup logs -f

Docs: https://github.com/arunoda/meteor-up

+2
source

You can just ssh on a remote server, if necessary use a screen-type utility if you want to keep a constant shell and run:

tail -f /path/to/your/log

. PaperTrail, .

+1

If you use the new version that I recommend, you domupx logs -f

0
source

All Articles