linux定时启动进程,Linux配置开机启动特定程序和定时执行执行特定程序

服务器使用的是Ubuntu,开机启动特定程序和定时自动重启服务器涉及到2个文件:

/etc/rc.local : 添加开机时自动执行特定程序的命令。

/etc/crontab : 添加定时重启命令。

开机启动特定程序:

比如假设安装tomcat在/usr/local/tomcat/下,设置开机启动tomcat,则添加执行tomcat的bin目录下的startup.sh文件的命令:

su - root -c "/usr/local/tomcat/bin/startup.sh"。

完整的rc.local文件的配置:

#!/bin/sh -e

#

# rc.local

#

# This script is executed at the end of each multiuser runlevel.

# Make sure that the script will "exit 0" on success or any other

# value on error.

#

# In order to enable or disable this script just change the execution

# bits.

#

# By default this script does nothing.

su - root -c "/usr/local/tomcat/bin/startup.sh"

exit 0

比如需要开机启动特定java程序,java程序所在目录: /server/myProject.jar,则添加命令:

su - root -c "java -jar /server/myProject.jar".

完整的rc.local文件:

#!/bin/sh -e

#

# rc.local

#

# This script is executed at the end of each multiuser runlevel.

# Make sure that the script will "exit 0" on success or any other

# value on error.

#

# In order to enable or disable this script just change the execution

# bits.

#

# By default this script does nothing.

su - root -c "/usr/local/tomcat/bin/startup.sh"

su - root -c "java -jar /server/myProject.jar"

exit 0

CentOS7 兼容问题

在centos7之前,都习惯将自己的程序启动命令添加到/etc/rc.local,可是到centos7上面发现不生效了。难道不兼容了?系统默认应该是装了systemd-sysvcompat来兼容sysv的服务的。在centos7上面默认是使用systemd的,所以rc.local这个文件应该也是通过systemd的service启动。

1. 设置可执行权限

/etc/rc.local是 /etc/rc.d/rc.local的一个软链接:

[root@master ~] chmod +x /etc/rc.d/rc.local

[root@master ~] chmod +x /etc/rc.local

2. 添加rc-local.service,并启动该服务

查看开机启动项目中是否有rc-local.service这个服务:

[root@master ~] systemctl list-units --type=service

查看该服务状态是否已开启成功:

[root@master ~] systemctl status rc-local.service

如果rc-local.service没有添加在启动项目中或者没有启动成功,

执行以下命令将rc-local.service添加到启动项服务中:

[root@master ~] systemctl enable rc-local.service

然后启动该服务:

[root@master ~] systemctl start rc-local.service

本人启动服务失败,按提示执行systemctl status rc-local.service,没找到有效信息:

ef77c50feda1?utm_campaign=maleskine&utm_content=note&utm_medium=seo_notes&utm_source=recommendation

image.png

继续执行命令journalctl -xe:

ef77c50feda1?utm_campaign=maleskine&utm_content=note&utm_medium=seo_notes&utm_source=recommendation

image.png

发现是nginx启动时端口被占用(之前已经启动了nginx,在rc.local中设置了开机启动nginx),启动失败,导致执行启动该服务也失败。执行nginx -s quit关闭nginx再重新执行systemctl start rc-local.service就可以了。

定时执行特定命令

crontab文件默认的内容:

# /etc/crontab: system-wide crontab

# Unlike any other crontab you don't have to run the `crontab'

# command to install the new version when you edit this file

# and files in /etc/cron.d. These files also have username fields,

# that none of the other crontabs do.

SHELL=/bin/sh

PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin

# m h dom mon dow user command

17 * * * * root cd / && run-parts --report /etc/cron.hourly

25 6 * * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily )

47 6 * * 7 root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.weekly )

52 6 1 * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.monthly )

#

init 6是重启机器的命令,比如需要在每天的5:30am重启机器,则添加命令:

30 5 * * * root init 6

完整的crontab文件内容:

# /etc/crontab: system-wide crontab

# Unlike any other crontab you don't have to run the `crontab'

# command to install the new version when you edit this file

# and files in /etc/cron.d. These files also have username fields,

# that none of the other crontabs do.

SHELL=/bin/sh

PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin

# m h dom mon dow user command

17 * * * * root cd / && run-parts --report /etc/cron.hourly

25 6 * * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily )

47 6 * * 7 root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.weekly )

52 6 1 * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.monthly )

30 5 * * * root init 6

#

contab定时执行jar包

比如每天12:00am执行/usr/local/hello.jar:

创建shell脚本文件/usr/local/hello.sh

#!/bin/sh

source /etc/profile

#必须使java jdk环境变量生效,否则执行jar任务失败

export JAVA_HOME=/usr/lib/jvm/jdk1.8.0_171

export JRE_HOME=${JAVA_HOME}/jre

export CLASSPATH=.:${JAVA_HOME}/lib:${JRE_HOME}/lib

export PATH=${JAVA_HOME}/bin:$PATH

java -jar /usr/local/hello.jar

确保脚本有执行权限:chmod a+x hello.sh

在/etc/crontab文件添加以下一行

0 12 * * * root sh /usr/local/hello.sh

查看crontab执行日志

root$ tail -f /var/log/cron

contab的时间格式

*      *      *      *     *     command

分    时    日   月   周     命令

第1列表示分钟1~59 每分钟用*或者*/1表示

第2列表示小时1~23(0表示0点)

第3列表示日期1~31

第4列表示月份1~12

第5列表示星期0~6(0表示星期天)

第6列要运行的命令

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值