Giter Site home page Giter Site logo

Error deploying about meteor HOT 28 CLOSED

meteor avatar meteor commented on May 4, 2024
Error deploying

from meteor.

Comments (28)

n1mmy avatar n1mmy commented on May 4, 2024

Hopefully fixed. Try now.

from meteor.

phillc avatar phillc commented on May 4, 2024

I was able to redeploy, delete, redeploy, and delete again successfully. However, on deletes, I get "Error deleting application: Unable to delete application", and when deploying again the data is still there

from meteor.

n1mmy avatar n1mmy commented on May 4, 2024

Aha, I see the problem! Real fix coming soon.

In the mean time, you can try create/deleting multiple times. It's an intermittent failure, so eventually it should work.

from meteor.

felippenardi avatar felippenardi commented on May 4, 2024

Why trying to deploy any app the first time I already get this error, so there is nothing to delete.

There is no way to deploy a meteor application right now?

from meteor.

n1mmy avatar n1mmy commented on May 4, 2024

Sorry, this is an intermittent issue that strikes sometimes. Try several times in a row and it should eventually work.

I've got a fix figured out, I'm just working on getting it tested and deployed now. Hopefully by the end of today, or maybe tomorrow if things go wrong.

from meteor.

n1mmy avatar n1mmy commented on May 4, 2024

Ok, this should be fixed for real now. No more intermittent error.

Give it a whirl and let me know if you can replicate the problem again.

Sorry about that, and thanks for your patience.

from meteor.

felippenardi avatar felippenardi commented on May 4, 2024

THe problem still happening for me, now a bit differently:

$ meteor deploy inchat.meteor.com
Deploying to inchat.meteor.com. Bundling ... uploading ...
Error deploying application: undefined

from meteor.

n1mmy avatar n1mmy commented on May 4, 2024

Damnit, I thought I had it... looking into it.

from meteor.

n1mmy avatar n1mmy commented on May 4, 2024

@felippenardi Interesting.... this looks like a different issue. I'm not see anything in the logs for inchat.meteor.com, it looks like the request is not even making it to the deployment server.

First off, can you try running 'curl deploy.meteor.com/has_password/www.meteor.com' from the same place you are running meteor deploy to make sure something isn't funny with the network.

Second, how long does it take after it says 'uploading' to fail. Does it take a few seconds to upload and then fail, or is it very quick after it finishes bundling and starts uploading.

Thanks.

from meteor.

felippenardi avatar felippenardi commented on May 4, 2024

Thank you for looking into it.

When running the command you gave, nothing came out as a result.

It should do this?

And answering your second question, when finishing bundleling, the error come almost instantaneous.

Any clue?

Em 02/05/2012, às 15:20, Nick [email protected] escreveu:

@felippenardi Interesting.... this looks like a different issue. I'm not see anything in the logs for inchat.meteor.com, it looks like the request is not even making it to the deployment server.

First off, can you try running 'curl deploy.meteor.com/has_password/www.meteor.com' from the same place you are running meteor deploy to make sure something isn't funny with the network.

Second, how long does it take after it says 'uploading' to fail. Does it take a few seconds to upload and then fail, or is it very quick after it finishes bundling and starts uploading.

Thanks.


Reply to this email directly or view it on GitHub:
#100 (comment)

from meteor.

n1mmy avatar n1mmy commented on May 4, 2024

The command I wrote should print 'true'.

Sounds like you don't have access to the network from that machine. Are you running meteor on a virtual machine? Perhaps you are behind some sort of restrictive firewall? Can you try curl www.google.com and see if you get a lot of HTML?

Meteor should print a better error message in this case, but if you can't reach the network there's not much we can do.

from meteor.

felippenardi avatar felippenardi commented on May 4, 2024

I`m getting true!

I didnt see it because there was no line break, but now I noticed it.

1- i did the curl and got the "true"
2- I tried 3 times to use the deploy command, and got two different erros

from meteor.

n1mmy avatar n1mmy commented on May 4, 2024

Aha! It looks like you a behind some sort of proxy. The error you see in the final attempt is not HTML from meteor. Someone in between you and the meteor servers is intercepting and modifying your requests. 'webmaster' is running 'squid/2.7.STABLE9'.

I'm not really sure what to suggest. Perhaps you can talk to your proxy administrator and get them to open a hole for deploy.meteor.com? Or you could try setting up a VPN so you can get unrestricted access to the internet (eg. privatetunnel.com, ivpn.net, and many more out there). Or perhaps just go to a coffeeshop with free wifi and deploy from there.

from meteor.

felippenardi avatar felippenardi commented on May 4, 2024

Thank you, Man! That was it :D

hohoho.meteor.com

from meteor.

n1mmy avatar n1mmy commented on May 4, 2024

No prob!

from meteor.

Peth404 avatar Peth404 commented on May 4, 2024

I deployed my app. It was doing just fine, but I changed the data model a bit and wanted to refresh the db, so I did a deploy --delete and now I cannot deploy to the same name again... Error deploying application: Error creating application.

from meteor.

glasser avatar glasser commented on May 4, 2024

@Peth404 Was this a consistent issue or did it work when you tried again later?

from meteor.

zachdixon avatar zachdixon commented on May 4, 2024

Apologize for the bump, but I'm getting a similar result here. I deployed an app to catskill-moc.meteor.com fine 2 days ago and did it multiple times. It's a very simple app (mostly static stuff, no collections or any Meteor stuff except for one Iron Router route). Today I tried deploying the same app to catskill-moc-v2.meteor.com and got this error the first time:

Error deploying application: <!DOCTYPE html>
<html>
<head>
<title>Error</title>
<style type="text/css">
body {
font-family: 'Helvetica Neue', Helvetica, Arial, san-serif;
padding: 0;
margin: 0;
text-align: center;
}
.meteor {
padding-top: 200px;
padding-bottom: 20px;
height: 142px;
}
.message {
padding-top: 50px;
font-size: 3em;
color: #777;
letter-spacing: -1px;
font-weight: bold;
}

.submessage {
padding-top: 20px;
font-size: 1.5em;
color: #777;
letter-spacing: -1px;
font-weight: bold;
}

.counter {
padding-top: 30px;
font-size: 1em;
color: #aaa;
letter-spacing: -1px;
}

</style>
</head>
<body>
<div class="meteor"><img src="//warehouse.meteor.com/mother-assets/meteor-logo-final.png"/></div>
<div class="message">
This site is down.
</div>
<div class="submessage">
Try again later.
</div>
<div id="counter" class="counter">
</div>


<script type="text/javascript">
var refreshTime = 0 ;
if (refreshTime) {
var counterDiv = document.getElementById("counter");
var countdown = function () {
if (refreshTime < 1) {
counterDiv.innerHTML =
"Retrying...";
location.reload(true);
} else {
counterDiv.innerHTML =
"Retrying in " + refreshTime + " seconds...";
refreshTime = refreshTime - 1;
setTimeout(countdown, 1000);
}
}
countdown();
}
</script>

</body>
</html>

Any new subdomain I try, I get that error the first time; then any subsequent time it says it deploys, but the app never loads. It's continually stuck on the "This site is loading" page. I even tried deploying the original app to the original location and it did the same thing.

I've tried from two different locations/internets and got the same result.

Here's the logs from one of them:

[Wed May 06 2015 23:03:00 GMT+0000 (UTC)] INFO STATUS null -> starting
[Wed May 06 2015 23:03:00 GMT+0000 (UTC)] NOTICE Starting application on port 25098
[Wed May 06 2015 23:03:01 GMT+0000 (UTC)] INFO STATUS starting -> crashed
[Wed May 06 2015 23:03:09 GMT+0000 (UTC)] INFO HIT / 71.97.28.19
[Wed May 06 2015 23:03:15 GMT+0000 (UTC)] INFO HIT / 71.97.28.19
[Wed May 06 2015 23:03:16 GMT+0000 (UTC)] INFO HIT /favicon.ico 71.97.28.19
[Wed May 06 2015 23:03:21 GMT+0000 (UTC)] INFO HIT / 71.97.28.19
[Wed May 06 2015 23:03:22 GMT+0000 (UTC)] INFO HIT /favicon.ico 71.97.28.19
[Wed May 06 2015 23:03:27 GMT+0000 (UTC)] INFO HIT / 71.97.28.19
[Wed May 06 2015 23:03:27 GMT+0000 (UTC)] INFO HIT /favicon.ico 71.97.28.19
[Wed May 06 2015 23:03:28 GMT+0000 (UTC)] INFO HIT / 71.97.28.19
[Wed May 06 2015 23:03:33 GMT+0000 (UTC)] INFO HIT /favicon.ico 71.97.28.19
[Wed May 06 2015 23:03:34 GMT+0000 (UTC)] INFO HIT / 71.97.28.19
[Wed May 06 2015 23:03:34 GMT+0000 (UTC)] INFO HIT /favicon.ico 71.97.28.19
[Wed May 06 2015 23:03:40 GMT+0000 (UTC)] INFO HIT /favicon.ico 71.97.28.19

That IP address seems to be Verizon's (my ISP) but I'm not sure if that has anything to do with it? I was able to deploy from this internet before.

I also did the curl deploy.meteor.com/has_password/www.meteor.com command listed above and it returned false. curl www.google.com returns the html fine.

Any ideas? Thanks!

from meteor.

pdroll avatar pdroll commented on May 4, 2024

I'm having the same issues as outlined by @zachdixon. Just came up for the first time today. Earlier this week, I was able to deploy without issues. Now, after running with --delete, deploy always fails with Error deploying application: message.

from meteor.

ipstas avatar ipstas commented on May 4, 2024

Looks like it is the same issue again.
www.followlater.com fails
I can deploy to fll8r.meteor.com though

meteor deploy www.followlater.com --debug
Deploying to www.followlater.com.

Error deploying application:

<title>Error</title> <style type="text/css"> body { font-family: 'Helvetica Neue', Helvetica, Arial, san-serif; padding: 0; margin: 0; text-align: center; } .meteor { padding-top: 200px; padding-bottom: 20px; height: 142px; } .message { padding-top: 50px; font-size: 3em; color: #777; letter-spacing: -1px; font-weight: bold; } .submessage { padding-top: 20px; font-size: 1.5em; color: #777; letter-spacing: -1px; font-weight: bold; } .counter { padding-top: 30px; font-size: 1em; color: #aaa; letter-spacing: -1px; } </style>
This site is down.
Try again later.
<script type="text/javascript"> var refreshTime = 0 ; if (refreshTime) { var counterDiv = document.getElementById("counter"); var countdown = function () { if (refreshTime < 1) { counterDiv.innerHTML = "Retrying..."; location.reload(true); } else { counterDiv.innerHTML = "Retrying in " + refreshTime + " seconds..."; refreshTime = refreshTime - 1; setTimeout(countdown, 1000); } } countdown(); } </script>

from meteor.

zachdixon avatar zachdixon commented on May 4, 2024

Updating to see if this solution works for you other guys, or if there's another problem going on somewhere.

I tried redeploying again this morning with the same result.

I then tried deleting the app and received the same HTML error page saying "This site is down, try again later". Tried to delete again and said the site does not exist.

This seemed like similar behavior described here

That thread mentioned long names causing this problem which mine was only 15 characters long; shouldn't be an issue. I then tried a shorter name (6 characters long) and it worked just fine. I wasn't getting the error message that was supposedly put into place for this problem, so not sure what's going on exactly.

from meteor.

ipstas avatar ipstas commented on May 4, 2024

OK, I have fixed the issue.

  1. meteor deploy -D appname
  2. meteor reset (in the local app folder)
  3. meteor deploy -------------with all the stuff

So it looks like the problem with the DB, it had something that prevented app starting
What puzzles me, I need to reset locally and then it works. I never knew deploy actually deploys DB as well

from meteor.

pdroll avatar pdroll commented on May 4, 2024

@ipstas You nailed it. Running meteor reset before deploying again did the trick.

from meteor.

guinunez avatar guinunez commented on May 4, 2024

@ipstas saved my day

from meteor.

curiositry avatar curiositry commented on May 4, 2024

Getting the same issue now, but @ipstas solution doesn’t seem to work; in fact, running meteor deploy -D appname produces the same error as a regular deploy…

from meteor.

Calvinxc1 avatar Calvinxc1 commented on May 4, 2024

Having the same issue, but the 'meteor reset' prior to deploying seemed to work.

from meteor.

watsonkelvin avatar watsonkelvin commented on May 4, 2024

I'm having the same issue today that @zachdixon had, along with another error I'm getting, which is "Error deploying application: Connection error (socket hang up)."

I've done meteor reset before doing my meteor deploy, but I still get "Error deploying application: Connection error (socket hang up)."

My application runs perfectly on localhost and has deployed without any issues prior to today.

from meteor.

DomClaxton avatar DomClaxton commented on May 4, 2024

I'm getting the same error. Error deploying application: Connection error (socket hang up)

from meteor.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.