1.在/etc/init.d/下創(chuàng)建一個bootstart.sh腳本
cd /etc/init.d
vim bootstart.sh
腳本內(nèi)容如下
#!/bin/sh
#chkconfig: 2345 80 90
#description:開機自動啟動的腳本程序
# 開啟redis服務(wù) 端口為6379
/usr/local/redis/bin/redis-server /usr/local/redis/etc/redis.conf
#tomcat 端口8060
/usr/local/tomcat/tomcat-admin/bin/./startup.sh
#nginx 目錄/wwww
/usr/local/nginx/sbin/nginx
腳本第一行 “#!/bin/sh” 告訴系統(tǒng)使用的shell;
腳本第二行 “#chkconfig: 2345 80 90” 表示在2/3/4/5運行級別啟動,啟動序號(S80)笛粘,關(guān)閉序號(K90)碗殷;
腳本第三行 表示的是服務(wù)的描述信息
注意: 第二行和第三行必寫廊营,否則會出現(xiàn)如“服務(wù) *.sh 不支持 chkconfig”這樣的錯誤抹镊。
2. 給腳本賦可執(zhí)行權(quán)限
chmod +x bootstart.sh
3.添加腳本到開機自動啟動項目中
chkconfig --add bootstart.sh
chkconfig bootstart.sh on
4.重啟linux系統(tǒng)
reboot