mirror of https://github.com/go-gitea/gitea
Git with a cup of tea, painless self-hosted git service
Mirror for internal git.with.parts use
https://git.with.parts
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.
37 lines
1.1 KiB
37 lines
1.1 KiB
7 years ago
|
---
|
||
|
date: "2017-08-23T09:00:00+02:00"
|
||
|
title: "Démarrer en tant que service Windows"
|
||
|
slug: "windows-service"
|
||
1 year ago
|
sidebar_position: 50
|
||
4 years ago
|
toc: false
|
||
7 years ago
|
draft: false
|
||
2 years ago
|
aliases:
|
||
|
- /fr-fr/windows-service
|
||
7 years ago
|
menu:
|
||
|
sidebar:
|
||
|
parent: "installation"
|
||
|
name: "Service Windows"
|
||
1 year ago
|
sidebar_position: 50
|
||
7 years ago
|
identifier: "windows-service"
|
||
|
---
|
||
|
|
||
|
# Activer un service Windows
|
||
|
|
||
|
Pour activer le service Windows Gitea, ouvrez une `cmd` en tant qu'Administrateur puis utilisez la commande suivante :
|
||
|
|
||
|
```
|
||
5 years ago
|
sc create gitea start= auto binPath= "\"C:\gitea\gitea.exe\" web --config \"C:\gitea\custom\conf\app.ini\""
|
||
7 years ago
|
```
|
||
|
|
||
3 years ago
|
N'oubliez pas de remplacer `C:\gitea` par le chemin que vous avez utilisé pour votre installation.
|
||
7 years ago
|
|
||
3 years ago
|
Ensuite, ouvrez "Services Windows", puis recherchez le service `gitea`, faites un clic droit et selectionnez "Run". Si tout fonctionne, vous devriez être capable d'accèder à Gitea à l'URL `http://localhost:3000` (ou sur le port configuré si différent de 3000).
|
||
7 years ago
|
|
||
|
## Désactiver un service Windows
|
||
|
|
||
|
Pour désactiver le service Windows Gitea, ouvrez une `cmd` en tant qu'Administrateur puis utilisez la commande suivante :
|
||
|
|
||
|
```
|
||
|
sc delete gitea
|
||
|
```
|