You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
940 B

  1. ---
  2. date: "2016-12-21T15:00:00-02:00"
  3. title: "註冊為 Windows 服務"
  4. slug: "windows-service"
  5. weight: 10
  6. toc: true
  7. draft: false
  8. menu:
  9. sidebar:
  10. parent: "installation"
  11. name: "Windows 服務"
  12. weight: 30
  13. identifier: "windows-service"
  14. ---
  15. # 註冊為 Windows 服務
  16. 要註冊為 Windows 服務,首先要以管理者身份執行 `cmd`,跳出命令列視窗後執行底下指令:
  17. ```
  18. sc create gitea start= auto binPath= ""C:\gitea\gitea.exe" web --config "C:\gitea\custom\conf\app.ini""
  19. ```
  20. 別忘記將 `C:\gitea` 取代為您的 Gitea 安裝路徑。
  21. 之後打開 "Windows Services",並且搜尋服務名稱 "gitea",按右鍵選擇 "Run"。在瀏覽器打開 `http://localhost:3000` 就可以成功看到畫面 (如果修改過連接埠,請自行修正,3000 是預設值)。
  22. ## 刪除服務
  23. 要刪除 Gitea 服務,請用管理者身份執行 `cmd` 並且執行底下指令:
  24. ```
  25. sc delete gitea
  26. ```