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