The best way to start a jar package project under Centos7 server

The best way to start a jar package project under Centos7 server

Preface

Everyone knows how to run a jar package on Linux. Why do I want to talk about it separately? Careful friends may have discovered the keywords Centos7 and best way in the title.

This shows that I am not just writing something casually to write a blogヾ(◍°∇°◍)ノ゙

First of all, Centos7 recommends that we run the project like this

First execute the command:

cd /ets/systemd/system

Go to this directory and create a new file yourProjectName.service. You can set yourProjectName to the service name you want.

Edit a new file with vi

vi yourProjectName.service

file name

[Unit] 
Description=yourProjectName #DescriptionAfter=syslog.target network.target #Depends on [Service] 
Type=simple 

ExecStart=/usr/bin/java -jar /opt/javaapps/yourProjectName.jar 
#The first part is the absolute path of the java command and the second part is the absolute path of the jar package. ExecStop=/bin/kill -15 $MAINPID 

User=root 
Group=root 

[Install] 
WantedBy=multi-user.target

use

systemctl start yourProjectName

or

systemctl start yourProjectName.service

The service is started.

If you change the project:

Run first

systemctl daemon-reload

Then run systemctl start sell.service

To stop the service:

systemctl stop yourProjectName

or

systemctl stop yourProjectName.service

Set the startup to start automatically:

systemctl enable yourProjectName

or

systemctl enable yourProjectName.service

Or if you don't want to start the machine:

systemctl disable yourProjectName

or

systemctl disable yourProjectName.service

Okay, that's all. Running the project in a standardized manner helps with later maintenance.

Summarize

The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. If you have any questions, you can leave a message to communicate. Thank you for your support for 123WORDPRESS.COM.

You may also be interested in:
  • Linux editing start, stop and restart springboot jar package script example
  • Shell script for one-click restart of Jar package and some experience sharing of new server deployment
  • Linux shell script to start jar package
  • How to start jar package and run it in the background in Linux
  • Steps for automatic restart of jar package at startup under Windows

<<:  Detailed explanation of CocosCreator message distribution mechanism

>>:  Summary of common tool examples in MySQL (recommended)

Recommend

MySQL Optimization: Cache Optimization (Continued)

There are caches everywhere inside MySQL. When I ...

Detailed graphic explanation of mysql query control statements

mysql query control statements Field deduplicatio...

Implementation of setting fixed IP when starting docker container

Network type after docker installation [root@insu...

MySQL 5.7.13 installation and configuration method graphic tutorial on Mac

MySQL 5.7.13 installation tutorial for Mac, very ...

How to set up Referer in Nginx to prevent image theft

If the server's images are hotlinked by other...

The Complete List of MIME Types

What is MIME TYPE? 1. First, we need to understan...

Implementing a shopping cart with native JavaScript

This article shares the specific code of JavaScri...

CSS cleverly uses gradients to achieve advanced background light animation

accomplish This effect is difficult to replicate ...

How to set up virtual directories and configure virtual paths in Tomcat 7.0

Tomcat7.0 sets virtual directory (1) Currently, o...

HTML drag and drop function implementation code

Based on Vue The core idea of ​​this function is ...

Steps to change mysql character set to UTF8 under Linux system

Table of contents 1. Check the MySQL status in th...

Vue+ElementUI implements paging function-mysql data

Table of contents 1. Problem 2. Solution 2.1 Pagi...

How to view nginx configuration file path and resource file path

View the nginx configuration file path Through ng...