In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-01-21 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/01 Report--
This article shows you how to run the jar package in the Linux system, the content is concise and easy to understand, it will definitely brighten your eyes. I hope you can get something through the detailed introduction of this article.
There are mainly several ways to run jar package in Linux system, such as blocking, background operation, background continuous operation and so on. Here is a detailed explanation of the specific methods of running jar package in Linux system.
1 blocking mode
Java-jar xxx.jar
Copy the code
Features: the session window of the current terminal is blocked, you can press CTRL + C to interrupt the operation of the program, or directly close the session window-when the jar program will be terminated.
2 mode of operation in the background
# run in the background through the "&" symbol:
Java-jar xxx.jar &
Copy the code
Features: the session window of the current terminal will not be blocked, but if you close the current window, the program will stop running.
(3) continuous operation mode in the background
# run in the background through the "nohup" command:
Nohup java-jar xxx.jar &
Copy the code
The nohup command means to run the command without hanging up.
Features: when the user exits or the terminal is closed, the operation of the program will not be affected.
Description: when you run a task with the nohup command, all output from this task will be redirected to the nohup.out file by default, unless you specify another output file. Specify the output file method as follows:
# redirect the output to the xxx.log file:
Nohup java-jar xxx.jar > xxx.log &
Copy the code
The > symbol is a redirector that redirects all output from its previous commands to a later file instead of displaying it on the screen.
The above content is how to run the jar package in the Linux system. Have you learned the knowledge or skills? If you want to learn more skills or enrich your knowledge reserve, you are welcome to follow the industry information channel.
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.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.