> For the complete documentation index, see [llms.txt](https://docs.taigo.xyz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.taigo.xyz/russkii/ustanovka/ustanovka-servera-launchera.md).

# Установка сервера лаунчера

Сервер лаунчера использует DotNet версии 8.0. Вам необходимо установить это программное обеспечение на свой VPS. Кроме того, вам необходимо развернуть базу данных MySQL (MariaDB) и настроить ее.

Установка dotnet 8.0:

```sh
sudo apt update 
wget -q https://packages.microsoft.com/config/ubuntu/22.04/packages-microsoft-prod.deb -O packages-microsoft-prod.deb
sudo dpkg -i packages-microsoft-prod.deb
sudo apt update
sudo apt install -y dotnet-sdk-8.0
```

Установка MySql:

```bash
apt update
sudo apt install mariadb-server 
sudo systemctl start mariadb.service
mysql 
CREATE USER 'launcher'@'%' IDENTIFIED BY 'YOUR PASSWORD';
GRANT ALL PRIVILEGES ON *.* TO 'launcher'@'%' WITH GRANT OPTION;
CREATE DATABASE launcher;

```

Вам также может понадобиться сервер nginx, если у вас его нет:

```bash
apt install nginx
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.taigo.xyz/russkii/ustanovka/ustanovka-servera-launchera.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
