Use crontab to run the script of executing jar program regularly in centOS6

Use crontab to run the script of executing jar program regularly in centOS6

1. Write a simple Java program

public class testshell {
  public static void main(String[] args) {
    int count = 0;
    for (String arg : args) {
      System.out.println("The " + (++count) + " parameter: " + arg);
    }
  }
}

Package the above program into centOS6

2. Write a shell script

#!/bin/bash
export JAVA_HOME=/usr/local/jdk1.8.0_91
export PATH=$JAVA_HOME/bin:$PATH
A=`date`
java -cp /root/Desktop/testshell.jar com.testshell "$A" >>/root/Desktop/c.txt

Here, please note that the absolute path address of the jar package in the Java environment variable is written

3. Edit the timer file (crontab -e)

*/1 * * * * /root/Desktop/b.sh

Summarize

The above is the script that I introduced to you in centOS6 using crontab to regularly run and execute jar programs. I hope it will be helpful to you. If you have any questions, please leave me a message and I will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!
If you find this article helpful, please feel free to reprint it and please indicate the source. Thank you!

You may also be interested in:
  • Detailed explanation of how to configure windows timer to execute java jar file

<<:  MySQL 8.0.15 installation and configuration method graphic tutorial (Windows 10 X64)

>>:  Vue's new partner TypeScript quick start practice record

Recommend

Summary of methods for inserting videos into HTML pages

Now if you want to use the video tag in a page, y...

MySQL 8.0.15 winx64 installation and configuration method graphic tutorial

This article shares the installation and configur...

CSS3 custom scroll bar style::webkit-scrollbar sample code detailed explanation

The default scroll bar style in Windows is ugly, ...

Detailed explanation of Linux server status and performance related commands

Server Status Analysis View Linux server CPU deta...

JavaScript implements the generation of 4-digit random verification code

This article example shares the specific code for...

Analysis and solution of abnormal problem of loading jar in tomcat

Description of the phenomenon: The project uses s...

Docker Getting Started Installation Tutorial (Beginner Edition)

Doccer Introduction: Docker is a container-relate...

Remote Desktop Connection between Windows and Linux

When it comes to remote desktop connection to Lin...

How to add Tomcat Server configuration to Eclipse

1. Window -> preferences to open the eclipse p...

Centos7 mysql database installation and configuration tutorial

1. System environment The system version after yu...

How to use react-color to implement the front-end color picker

background We can use react-color to implement th...

Solve the problem of setting Chinese language pack for Docker container

If you use docker search centos in Docker Use doc...