为什么在Heroku上运行应用程序时会出现引导超时错误(错误R10)



我在Heroku上部署了一个Java应用程序。部署就像一个魅力,没有错误或警告,应用程序开始工作。然而,一段时间后,我得到以下错误:

错误R10(引导超时)->Web进程在启动后90秒内未能绑定到$PORT

当我在本地运行应用程序时,不会收到任何错误。

仅供参考:此应用程序定期检查postgresql数据库中的表是否发生了更改,如果发生了,则会更新同一数据库中的另一个表(据我所知,与我的问题无关,但到此为止)。

这是日志:

2019-02-12T19:37:15.444651+00:00 heroku[web.1]: Starting process with command `java $JAVA_OPTS -Dserver.port=24637 -cp target/classes:target/dependency/* com.name.numbersbackend.Main`
2019-02-12T19:37:18.657701+00:00 app[web.1]: Setting JAVA_TOOL_OPTIONS defaults based on dyno size. Custom settings will override them.
2019-02-12T19:37:18.660650+00:00 app[web.1]: Picked up JAVA_TOOL_OPTIONS: -Xmx300m -Xss512k -XX:CICompilerCount=2 -Dfile.encoding=UTF-8 
2019-02-12T19:37:35.580329+00:00 app[web.1]: .
2019-02-12T19:37:51.105807+00:00 app[web.1]: .
2019-02-12T19:38:06.683974+00:00 app[web.1]: .
2019-02-12T19:38:22.198062+00:00 app[web.1]: .
2019-02-12T19:38:37.792613+00:00 app[web.1]: .
2019-02-12T19:38:45.489753+00:00 heroku[web.1]: Error R10 (Boot timeout) -> Web process failed to bind to $PORT within 90 seconds of launch
2019-02-12T19:38:45.489753+00:00 heroku[web.1]: Stopping process with SIGKILL
2019-02-12T19:38:45.663859+00:00 heroku[web.1]: Process exited with status 137
2019-02-12T19:38:45.682773+00:00 heroku[web.1]: State changed from starting to crashed
2019-02-12T19:38:45.766843+00:00 heroku[web.1]: State changed from crashed to starting
2019-02-12T19:38:48.871480+00:00 heroku[web.1]: Starting process with command `java $JAVA_OPTS -Dserver.port=39010 -cp target/classes:target/dependency/* com.name.numbersbackend.Main`
2019-02-12T19:38:51.074950+00:00 app[web.1]: Setting JAVA_TOOL_OPTIONS defaults based on dyno size. Custom settings will override them.
2019-02-12T19:38:51.077995+00:00 app[web.1]: Picked up JAVA_TOOL_OPTIONS: -Xmx300m -Xss512k -XX:CICompilerCount=2 -Dfile.encoding=UTF-8 
2019-02-12T19:39:07.724633+00:00 app[web.1]: .
2019-02-12T19:39:23.250203+00:00 app[web.1]: .
2019-02-12T19:39:38.760492+00:00 app[web.1]: .
2019-02-12T19:39:54.313859+00:00 app[web.1]: .
2019-02-12T19:40:09.881207+00:00 app[web.1]: .
2019-02-12T19:40:19.374407+00:00 heroku[web.1]: State changed from starting to crashed
2019-02-12T19:40:19.187236+00:00 heroku[web.1]: Error R10 (Boot timeout) -> Web process failed to bind to $PORT within 90 seconds of launch
2019-02-12T19:40:19.187351+00:00 heroku[web.1]: Stopping process with SIGKILL
2019-02-12T19:40:19.354497+00:00 heroku[web.1]: Process exited with status 137

FYI:2019-02-12T19:39:38.760492+00:00 app[web.1]: .行(以及类似的行)包含我的应用程序的一些临时输出,以显示它实际上正在做一些事情。对于每一行,程序都会检查表是否有更改,如果有,是否需要采取行动(如果确实需要采取行动,则应用程序的输出更有意义)。

正如你所看到的,该应用程序启动良好,工作了一段时间,然后崩溃,甚至重新启动。然而,在某个时刻,它会完全停止工作。

这是我的pom.xml:

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.name</groupId>
<artifactId>com.name.app.backend</artifactId>
<version>1.0</version>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<id>copy-dependencies</id>
<phase>package</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>8</source>
<target>8</target>
</configuration>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<!-- https://mvnrepository.com/artifact/org.json/json -->
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20180813</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.postgresql/postgresql -->
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>42.2.5</version>
</dependency>
<dependency>
<groupId>com.github.myname</groupId>
<artifactId>app-lib</artifactId>
<version>master-SNAPSHOT</version>
</dependency>
</dependencies>
</project>

和我的Procfile:

web: java $JAVA_OPTS -Dserver.port=$PORT -cp target/classes:target/dependency/* nl.limakajo.numbersbackend.Main

在SO上搜索和浏览了很多之后,我还没有找到解决方案。

听起来你希望这个进程在后台运行,而不是处理web请求。如果是这种情况,那么您不希望在Procfile中使用web:。在Heroku上,web进程被特殊处理:它被分配了一个PORTenv var,必须在启动后的前90秒内绑定到该变量。

我建议将您的Procfile更改为:

worker: java $JAVA_OPTS -cp target/classes:target/dependency/* nl.limakajo.numbersbackend.Main

相关内容

  • 没有找到相关文章

最新更新