服务器使用的是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
,没找到有效信息:
继续执行命令
journalctl -xe
:发现是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列要运行的命令