原創不易,轉載請註明來源,謝謝
-
建立指令碼
web
#!/bin/bash # chkconfig: 2345 55 25 # description: bt Cloud Service ### BEGIN INIT INFO # Provides: web # Required-Start: $all # Required-Stop: $all # Default-Start: 2 3 4 5 # Default-Stop: 0 1 6 # Short-Description: starts web # Description: starts the web ### END INIT INFO sudo docker start mysql57 sudo mount -t virtiofs ProjectWeb /www/wwwroot
-
新增到
/etc/init.d
下面ln -s xxx/web /etc/init.d/web
-
開啟自啟動
systemctl enable web
-
如果不需要了 執行刪除
rm -rf /etc/init.d/web update-rc.d -f web remove