Translations:Setting up a Multiplayer Server/73/fr

From Vintage Story Wiki
Revision as of 18:38, 16 July 2023 by PixelCat (talk | contribs) (Created page with "Utilisez votre logiciel de modification de fichier préféré pour créer un fichier de service (dans cet exemple nano). nano /usr/lib/systemd/system/vintagestoryserver.service Insérez le contenu suivant : [Unit] Description=Unite Serveur Vintage Story After=network.target [Service] WorkingDirectory=/srv/gameserver/vintagestory ExecStart=/usr/bin/mono VintagestoryServer.exe --dataPath /srv/gameserver/data/vs Restart=always RestartSec=30 StandardOu...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Utilisez votre logiciel de modification de fichier préféré pour créer un fichier de service (dans cet exemple nano).

 nano /usr/lib/systemd/system/vintagestoryserver.service

Insérez le contenu suivant :

 [Unit]
 Description=Unite Serveur Vintage Story
 After=network.target
 
 [Service]
 WorkingDirectory=/srv/gameserver/vintagestory
 ExecStart=/usr/bin/mono VintagestoryServer.exe --dataPath /srv/gameserver/data/vs
 Restart=always
 RestartSec=30
 StandardOutput=syslog
 StandardError=syslog
 SyslogIdentifier=VSSRV
 User=gameserver
 Group=gameserver
 
 [Install]
 WantedBy=multi-user.target