mirror of
https://github.com/rustdesk/doc.rustdesk.com.git
synced 2025-07-22 03:52:34 +00:00
87 lines
4.2 KiB
Markdown
87 lines
4.2 KiB
Markdown
---
|
|
title: RustDesk Server Pro
|
|
weight: 200
|
|
pre: "<b>2.2. </b>"
|
|
---
|
|
|
|
RustDesk Server Pro has more features compared to the open source version.
|
|
|
|
- Account
|
|
- No concurrent connection limit, aka no limit of simultaneous connections (OSS version has no limit either, but TeamViewer etc. have this limit)
|
|
- [Web console](https://rustdesk.com/docs/en/self-host/rustdesk-server-pro/console/)
|
|
- API
|
|
- [OIDC](https://rustdesk.com/docs/en/self-host/rustdesk-server-pro/oidc/), [LDAP](https://rustdesk.com/docs/en/self-host/rustdesk-server-pro/ldap/), [2FA](https://rustdesk.com/docs/en/self-host/rustdesk-server-pro/2fa/)
|
|
- Address book
|
|
- Rename
|
|
- Log management (Connection, file transfer, alarm, etc.)
|
|
- Device management
|
|
- [Security Settings sync](https://rustdesk.com/docs/en/self-host/rustdesk-server-pro/strategy/)
|
|
- [Access control](https://rustdesk.com/docs/en/self-host/rustdesk-server-pro/permissions/)
|
|
- [Multiple relay servers](https://rustdesk.com/docs/en/self-host/rustdesk-server-pro/relay/) (automatically selects your closest relay)
|
|
- [Custom client generator](https://rustdesk.com/docs/en/self-host/client-configuration/#1-custom-client-generator-pro-only)
|
|
|
|
{{% notice note %}}
|
|
If you build your own server on your home/office, and can't connect it through public IP/domain, please check [this article](https://rustdesk.com/docs/en/self-host/nat-loopback-issues/).
|
|
{{% /notice %}}
|
|
|
|
{{% notice note %}}
|
|
We recommend reading this first before proceeding, [How does self-hosted server work?](/docs/en/self-host/#how-does-self-hosted-server-work).
|
|
{{% /notice %}}
|
|
|
|
### Hardware requirement
|
|
|
|
Lowest level VPS is enough for your use cases. The server software is not CPU and memory intensive. Our public ID server hosted on a 2 CPU/4 GB Vultr server serves 1.0+ million endpoints. Each relay connection consumes avg 180kb per second. 1 cpu core and 1G ram is enough to support 1000 relay concurrent connections.
|
|
|
|
### Video tutorials
|
|
|
|
There are many video tutorials available online that can guide you through installing the OSS version, https://rustdesk.com/docs/en/self-host/rustdesk-server-oss/install/#video-tutorials.
|
|
|
|
The installation of the Pro version is almost identical, except for the following differences:
|
|
|
|
- Different download path and Docker images are required.
|
|
- An additional TCP port (21114) is needed for the web console.
|
|
|
|
### License
|
|
|
|
You can get license from https://rustdesk.com/pricing.html, check [license](https://rustdesk.com/docs/en/self-host/rustdesk-server-pro/license/) page for more details.
|
|
|
|
### Installation
|
|
|
|
```
|
|
bash <(wget -qO- https://get.docker.com)
|
|
wget rustdesk.com/pro.yml -O compose.yml
|
|
docker compose up -d
|
|
```
|
|
|
|
For more details, please check [Docker](/docs/en/self-host/rustdesk-server-pro/installscript/docker/).
|
|
|
|
#### Ports Required
|
|
|
|
You need port `21114`-`21119` TCP and `21116` UDP open, please ensure these ports are setup when you set firewall rules and Docker port mapping.
|
|
|
|
More information about these ports, please check [here](/docs/en/self-host/rustdesk-server-oss/install/#ports).
|
|
|
|
### Set license
|
|
|
|
Open your web console by accessing `http://<server ip>:21114`, [log in](/docs/en/self-host/rustdesk-server-pro/console/#log-in) using the default credentials admin/test1234 `admin`/`test1234`. Follow [this guide](/docs/en/self-host/rustdesk-server-pro/license/#set-license) to set the license.
|
|
|
|
### Upgrade Server
|
|
|
|
This [guide](https://rustdesk.com/docs/en/self-host/rustdesk-server-pro/faq/#there-is-a-new-version-of-rustdesk-server-pro-out-how-can-i-upgrade) covers how to upgrade RustDesk Server Pro from a lower version, addressing different installation methods.
|
|
|
|
### Setup HTTPS for web console
|
|
|
|
Here is a simple tutorial of [manual HTTPS setup](https://rustdesk.com/docs/en/self-host/rustdesk-server-pro/faq/#set-up-https-for-web-console-manually).
|
|
|
|
### Migrate to new host and backup / restore
|
|
|
|
Here is a detailed [tutorial](https://github.com/rustdesk/rustdesk-server-pro/discussions/184).
|
|
|
|
### Migrate license
|
|
|
|
Please follow this [guide](https://rustdesk.com/docs/en/self-host/rustdesk-server-pro/license/#invoices-license-retrieval-and-migration).
|
|
|
|
### Upgrade license
|
|
|
|
Follow [this guide](/docs/en/self-host/rustdesk-server-pro/license/#renewupgrade-license) to upgrade your license for more users and devices at any time.
|