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
909 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服务,首先以Administrator身份运行 `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. ## 从Windows服务中删除
  23. 以Administrator身份运行 `cmd`,然后执行以下命令:
  24. ```
  25. sc delete gitea
  26. ```