ubuntu新增自啟動

狂客發表於2024-06-01

原創不易,轉載請註明來源,謝謝

  1. 建立指令碼 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
    
  2. 新增到/etc/init.d下面

    ln -s xxx/web /etc/init.d/web
    
  3. 開啟自啟動

    systemctl enable web
    
  4. 如果不需要了 執行刪除

    rm -rf /etc/init.d/web
    update-rc.d -f web remove
    

相關文章