Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to run jar package under Linux

2025-04-06 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/01 Report--

This article will explain in detail how to run the jar package under Linux. The editor thinks it is very practical, so I share it for you as a reference. I hope you can get something after reading this article.

Users who use the Linux system sometimes encounter a situation, that is, they need to run the Java program developed on the Windows system on the Linux system. In this case, users need to package the Java program as a jar package and upload it to the server of the Linux system to run.

Optimization method 1: java-jar xxx.jar &

& indicates that the background runs and the ssh window is not locked, but when the window is closed, the program still exits.

Optimization method 2: nohup java-jar xxx.jar &

Nohup means to run the command line without hanging up. When the account exits or closes the terminal, the program is still running.

When a job is executed with the nohup command, all output from the job is redirected to a file in nohup.out unless another output file is specified.

Optimization method 3: nohup java-jar xxx.jar > / usr/local/temp.txt &

> / usr/local/temp.txt means to record all startup log information in the temp.txt file

This is the end of the article on "how to run the jar package under Linux". I hope the above content can be of some help to you, so that you can learn more knowledge. if you think the article is good, please share it for more people to see.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report