Translations:Setting up a Multiplayer Server/73/ru: Difference between revisions

From Vintage Story Wiki
(Created page with "Используйте свой любимый инструмент для создания файла сервисной единицы (в этом примере испол...")
 
No edit summary
 
Line 1: Line 1:
Используйте свой любимый инструмент для создания файла сервисной единицы этом примере используется nano)
Используйте свой любимый инструмент для создания файла сервисаданном примере используется nano)
   nano /usr/lib/systemd/system/vintagestoryserver.service
   nano /usr/lib/systemd/system/vintagestoryserver.service
Вставить следующее содержимое
Вставьте следующее содержимое
   [Unit]
   [Unit]
   Description=Vintage Story Server Unit
   Description=Vintage Story Server Unit
Line 8: Line 8:
   [Service]
   [Service]
   WorkingDirectory=/srv/gameserver/vintagestory
   WorkingDirectory=/srv/gameserver/vintagestory
   ExecStart=/usr/bin/mono VintagestoryServer.exe --dataPath /srv/gameserver/data/vs
   ExecStart=dotnet VintagestoryServer.dll --dataPath /srv/gameserver/data/vs
   Restart=always
   Restart=always
   RestartSec=30
   RestartSec=30

Latest revision as of 11:03, 2 March 2024

Information about message (contribute)
This message has no documentation. If you know where or how this message is used, you can help other translators by adding documentation to this message.
Message definition (Setting up a Multiplayer Server)
Use your favourite tool to create a service unit file (this example uses nano)
  nano /usr/lib/systemd/system/vintagestoryserver.service
Insert the following content
  [Unit]
  Description=Vintage Story Server Unit
  After=network.target
  
  [Service]
  WorkingDirectory=/srv/gameserver/vintagestory
  ExecStart=dotnet VintagestoryServer.dll --dataPath /srv/gameserver/data/vs
  Restart=always
  RestartSec=30
  StandardOutput=syslog
  StandardError=syslog
  SyslogIdentifier=VSSRV
  User=gameserver
  Group=gameserver
  
  [Install]
  WantedBy=multi-user.target

Используйте свой любимый инструмент для создания файла сервиса(в данном примере используется nano)

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

Вставьте следующее содержимое

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