question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Error on deploy: 'No such file'

See original GitHub issue

Just upgraded from mupx (where everything worked fine).

I wish there would be more verbose error messages.

This is what I get on deploy:

DEBUG=* mup deploy
  mup:module:default exec => mup deploy +0ms
  mup:module:meteor exec => mup meteor deploy +0ms
  mup:module:meteor exec => mup meteor push +9ms
Building App Bundle Locally

Started TaskList: Pushing Meteor
[138.68.154.57] - Pushing Meteor App Bundle to The Server
  nodemiral:sess:138.68.154.57 copy file - src: /tmp/98c8b086-9d0a-44ee-b05a-08a981cf7ad5/bundle.tar.gz, dest: /opt/hoardAdminProduction/tmp/bundle.tar.gz, vars: undefined +0ms
[138.68.154.57] x Pushing Meteor App Bundle to The Server: FAILED
        No such file

My mup.js:

module.exports = {
  servers: {
    one: {
      host: '138.68.154.57',
      username: 'root',
      pem: '../keys/server/id_rsa'
    }
  },

  meteor: {
    name: 'hoardAdminProduction',
    path: '../../',
    servers: {
      one: {}
    },
    buildOptions: {
      serverOnly: true,
    },
    env: {
      ROOT_URL: 'https://admin.hoardspot.com',
      MONGO_URL: 'mongodb://admin:XXX',
      MONGO_OPLOG_URL: "mongodb://admin:XXX"
    },
    ssl: {
      certificate: "../keys/ssl/bundle.crt", // this is a bundle of certificates
      key: "../keys/ssl/wildcard.key", // this is the private key of the certificate
      port: 443 // 443 is the default value and it's the standard HTTPS port
    },
    //dockerImage: 'kadirahq/meteord'
    deployCheckWaitTime: 180
  },
};

Issue Analytics

  • State:closed
  • Created 7 years ago
  • Comments:11 (2 by maintainers)

github_iconTop GitHub Comments

6reactions
madushan1000commented, Sep 28, 2016

Did you run mup setup?

2reactions
masca88commented, Feb 6, 2017

After hours of changing special characters and other things from configuration file I’ve discovered that in the ssl section, the “certificate” key is now changed to “crt”. Alleluja!

I think that it’s also your problem @obiwarn

Read more comments on GitHub >

github_iconTop Results From Across the Web

Initial deploy error on "No such file or directory" #1232 - GitHub
I'm attempting my first deploy. I have a simple Flask app that works locally, and I can run zappa init . When I...
Read more >
How can you solve a "File not found error: No such file or ...
The error ( No such file or directory: '/home/name/project/venv/bin/python3.8' ) suggests that, a virtualenv ( venv ) was running (perhaps ...
Read more >
Troubleshoot deployment issues in Lambda
General: Permission is denied / Cannot load such file ... The Lambda runtime needs permission to read the files in your deployment package....
Read more >
Deployment Error: No such file or directory - Laracasts
Deployment Error : No such file or directory. I have a vapor setup which was working properly until last week, even i didn't...
Read more >
Deployment fails immediately: file not found - Render community
begins, I get the same error: “cloner.sh: line 40: cd: /opt/render/project/src/master: No such file or directory”, and the deployment fails.
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found