In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-01-30 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/01 Report--
This article introduces the knowledge of "how to run the jar package in the Linux system". Many people will encounter this dilemma in the operation of the actual case, so let the editor lead you to learn how to deal with these situations. I hope you can read it carefully and be able to achieve something!
In our work, we sometimes need to run the Java programs developed in windows on the Linux system, we need to package the Java programs and upload them to the Linux system to run, the most commonly used way is through java-jar xxx.jar.
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.
This is the end of "how to run the jar package in the Linux system". Thank you for reading. If you want to know more about the industry, you can follow the website, the editor will output more high-quality practical articles for you!
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.