1、增加服務(wù)文件
員工經(jīng)過長(zhǎng)期磨合與沉淀,具備了協(xié)作精神,得以通過團(tuán)隊(duì)的力量開發(fā)出優(yōu)質(zhì)的產(chǎn)品。創(chuàng)新互聯(lián)堅(jiān)持“專注、創(chuàng)新、易用”的產(chǎn)品理念,因?yàn)椤皩W⑺詫I(yè)、創(chuàng)新互聯(lián)網(wǎng)站所以易用所以簡(jiǎn)單”。公司專注于為企業(yè)提供做網(wǎng)站、網(wǎng)站設(shè)計(jì)、微信公眾號(hào)開發(fā)、電商網(wǎng)站開發(fā),微信小程序,軟件定制設(shè)計(jì)等一站式互聯(lián)網(wǎng)企業(yè)服務(wù)。
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
添加權(quán)限:
chmod +x /etc/rc.local
設(shè)置到系統(tǒng)啟動(dòng):
systemctl enable rc-local
啟動(dòng)腳本:
systemctl start rc-local.service
檢查服務(wù)狀態(tài):
systemctl status rc-local.service
你已經(jīng)增加了系統(tǒng)啟動(dòng)腳本,可以在這個(gè)腳本里面增加你想啟動(dòng)的程序,例如
cd /home/gst/tomcat/bin
./strat.sh
轉(zhuǎn)載于:http://mingli.muhuolong.cn/