1---
2date: "2017-07-21T12:00:00+02:00"
3title: "在 Linux 中以服務執行"
4slug: "linux-service"
5weight: 10
6toc: false
7draft: false
8menu:
9  sidebar:
10    parent: "installation"
11    name: "Linux 服務"
12    weight: 20
13    identifier: "linux-service"
14---
15
16### 以 Linux 服務執行 Gitea
17
18您可使用 systemd 或 supervisor 以服務的方式執行 Gitea。下列步驟已在 Ubuntu 16.04 中測試,但它們應該適用於所有的 Linux 發行版(只需要一些小小的調整)。
19
20#### 使用 systemd
21
22複製範例 [gitea.service](https://github.com/go-gitea/gitea/blob/master/contrib/systemd/gitea.service) 到 `/etc/systemd/system/gitea.service` 後用您喜愛的文字編輯器開啟檔案。
23
24取消註解任何需要在此系統上啟動的服務像是 MySQL。
25
26修改 user, home directory 和其它必要的啟動參數。若預設埠已被占用請修改埠號或移除「-p」旗標。
27
28在系統啟動時啟用並執行 Gitea:
29
30```
31sudo systemctl enable gitea
32sudo systemctl start gitea
33```
34
35若您使用 systemd 220 或更新版本,您能以一行指令啟動並立即執行 Gitea:
36
37```
38sudo systemctl enable gitea --now
39```
40
41#### 使用 supervisor
42
43在終端機使用下列指令安裝 supervisor:
44
45```
46sudo apt install supervisor
47```
48
49為 supervisor 建立 log 資料夾:
50
51```
52# assuming Gitea is installed in /home/git/gitea/
53mkdir /home/git/gitea/log/supervisor
54```
55
56附加範例 [supervisord config](https://github.com/go-gitea/gitea/blob/master/contrib/supervisor/gitea) 的設定值到 `/etc/supervisor/supervisord.conf`。
57
58用您喜愛的文字編輯器修改使用者(git)和家目錄(/home/git)設定以符合部署環境。若預設埠已被占用請修改埠號或移除「-p」旗標。
59
60最後設定在系統啟動時啟用並執行 supervisor:
61
62```
63sudo systemctl enable supervisor
64sudo systemctl start supervisor
65```
66
67若您使用 systemd 220 或更新版本,您能以一行指令啟動並立即執行 supervisor:
68
69```
70sudo systemctl enable supervisor --now
71```
72