













脚本autostart.sh为例:
#!/bin/bash
#chkconfig:345 85 15 (要加, 否则service pptpd does not support chkconfig)
#description:开机自启脚本(要加)
/usr/local/tomcat/bin/startup.sh #启动tomcat
赋予脚本可执行权限
chmod +x /opt/script/autostart.sh
打开/etc/rc.d/rc.local或/etc/rc.local文件,在末尾增加如下内容
su - user -c '/opt/script/autostart.sh'
在centos7中,/etc/rc.d/rc.local的权限被降低了,所以需要执行如下命令赋予其可执行权限
chmod +x /etc/rc.d/rc.local
将脚本移动到/etc/rc.d/init.d目录下
mv /opt/script/autostart.sh /etc/rc.d/init.d
增加脚本的可执行权限
chmod +x /etc/rc.d/init.d/autostart.sh
添加脚本到开机自动启动项目中
cd /etc/rc.d/init.d
chkconfig --add autostart.sh
chkconfig autostart.sh on
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。