1、增加服务文件
员工经过长期磨合与沉淀,具备了协作精神,得以通过团队的力量开发出优质的产品。创新互联坚持“专注、创新、易用”的产品理念,因为“专注所以专业、创新互联网站所以易用所以简单”。公司专注于为企业提供做网站、网站设计、微信公众号开发、电商网站开发,微信小程序,软件定制设计等一站式互联网企业服务。
vi /etc/systemd/system/rc-local.service
[Unit]
Description=/etc/rc.local
ConditionPathExists=/etc/rc.local
[Service]
Type=forking
ExecStart=/etc/rc.local start
TimeoutSec=0
StandardOutput=tty
RemainAfterExit=yes
SysVStartPriority=99
[Install]
WantedBy=multi-user.target
2、增加rc.local文件
vi /etc/rc.local
#!/bin/sh -e
exit 0
添加权限:
chmod +x /etc/rc.local
设置到系统启动:
systemctl enable rc-local
启动脚本:
systemctl start rc-local.service
检查服务状态:
systemctl status rc-local.service
你已经增加了系统启动脚本,可以在这个脚本里面增加你想启动的程序,例如
cd /home/gst/tomcat/bin
./strat.sh
转载于:http://mingli.muhuolong.cn/