elwoodxblues
elwoodxblues

Reputation: 41

Unable to run any Meteor app

Recently I have discovered the Meteor framework and wanted to run some examples on my machine. I've done the following steps:

  1. curl https://install.meteor.com/ | sh
  2. meteor create myapp
  3. cd myapp
  4. meteor

And as a result I get:

[[[[[ ~/workspace/myapp ]]]]]     

=> Started proxy.                             

/home/marcin/.meteor/packages/meteor-tool/.1.0.38.ieqxkv++os.linux.x86_64+web.browser+web.cordova/meteor-tool-os.linux.x86_64/dev_bundle/lib/node_modules/fibers/future.js:173
                        throw(ex);
                              ^
SyntaxError: Unexpected end of input
    at Object.parse (native)
    at readSessionData (/home/marcin/.meteor/packages/meteor-tool/.1.0.38.ieqxkv++os.linux.x86_64+web.browser+web.cordova/meteor-tool-os.linux.x86_64/tools/auth.js:136:15)
    at Object.exports.getSessionId (/home/marcin/.meteor/packages/meteor-tool/.1.0.38.ieqxkv++os.linux.x86_64+web.browser+web.cordova/meteor-tool-os.linux.x86_64/tools/auth.js:1029:32)
    at /home/marcin/.meteor/packages/meteor-tool/.1.0.38.ieqxkv++os.linux.x86_64+web.browser+web.cordova/meteor-tool-os.linux.x86_64/tools/stats.js:66:23

I tried to reinstall Meteor and meteor reset but it won't help. I removed the app and created a new one but the problem still occurs. I managed to run the examples finally using Vagrant, but this is only some workaround and not a solution to the real problem. I have no idea why a fresh install of Meteor won't work on my machine. I am running 64bit Ubuntu 14.04. I'd appreciate any help with this.

Upvotes: 0

Views: 617

Answers (3)

minou
minou

Reputation: 1

try this command

$ meteor -p 3006 open port her and go to localhost:meteor -p 3006

Upvotes: 0

elwoodxblues
elwoodxblues

Reputation: 41

As @imslavko said, the solution to this problem is to remove the meteor session file: rm ~/.meteorsession.

Upvotes: 4

Chip Castle
Chip Castle

Reputation: 2192

This is a shot in the dark, but can you do an update from within the project directory?

meteor update

Upvotes: 0

Related Questions