Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
4.4k views
in Technique[技术] by (71.8m points)

node.js - Error R10 (Boot timeout) -> Web process failed to bind to $PORT within 60 seconds of launch error when trying to launch the application

I am trying to launch my mern web app but it gives me this error, "Error R10 (Boot timeout) -> Web process failed to bind to $PORT within 60 seconds of launch". I did set my port to process.env.PORT||8080 and here is my index.js code:

const app = require("./server.js");
const PORT = process.env.PORT || 8080;
const path = require("path");
const express = require("express");

if (process.env.NODE_ENV === "production") {
  app.use(express.static("acl-frontend/build"));
  app.get("*", (req, res) => {
    res.sendFile(
      path.resolve(__dirname, "acl-frontend", "build", "index.html")
    );
  });
}

app.listen(PORT, () => {
  console.log("This server is running");
});


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...