Linux start-up script for java application

前端 未结 6 1029
醉梦人生
醉梦人生 2021-01-07 11:31

I have Jar file to run in Linux using this command:

java -jar SyslogAgent_01.jar 192.168.2.154 1998 D:/apachelog.log ApacheLog 13

Can anyon

6条回答
  •  不要未来只要你来
    2021-01-07 11:49

    While it is not recommended to sudo items like this, it can be accomplished by the following:

    sudo crontab -e
    

    Place the following in the cron:

    @reboot java -jar SyslogAgent_01.jar 192.168.2.154 1998 D:/apachelog.log ApacheLog 13
    

提交回复
热议问题