Ubuntuシステムに多くのバックエンドサービスをインストールしましたが、今日からもう機能しません。
私はSpringアプリケーションで実行可能でなければならないアプリケーション(pom.xml)を作成しました。
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<executable>true</executable>
</configuration>
</plugin>
</plugins>
</build>
私のサーバーにアップロードし、jarをinit.dサービスとしてインストールしようとした後に起動しようとすると、次のエラーメッセージが表示されます。
Failed to start <myapp>.service: Unit <myapp>.service not found.
ログもなく、何もありません。 init.dサービスをインストールしました。つまり、シンボリックリンクを作成しましたsudo ln -s /var/myapp /myapp.jar /etc/init.d/myapp
。