doc.rustdesk.com/content/self-host/install/_index.zh-cn.md

135 lines
5.8 KiB
Markdown
Raw Normal View History

2022-04-11 11:05:11 +02:00
---
title: 安装
weight: 10
---
## 如何自建中继
-----------
### 步骤1: 下载服务器端软件程序
2022-04-19 07:35:45 +02:00
[下载](https://gitee.com/rustdesk/rustdesk-server/)或者使用docker [rustdesk/rustdesk-server](https://hub.docker.com/r/rustdesk/rustdesk-server/tags)。
2022-04-19 07:32:08 +02:00
提供版本:
2022-04-11 11:05:11 +02:00
- Linux
- Windows
以下针对Linux版本做使用说明。
2022-04-12 20:13:52 +02:00
有两个可执行文件和一个文件夹:
2022-04-11 11:05:11 +02:00
- hbbs - RustDesk ID注册服务器
- hbbr - RustDesk 中继服务器
Linux版本在Centos7构建在 Centos7/8Ubuntu 18/20上测试过Debian系列的发行版本应该都没有问题。如果有其他发行版本需求请联系我。
#### 服务器要求
2022-04-11 15:56:34 +02:00
硬件要求很低最低配置的云服务器就可以了CPU和内存要求都是最小的。关于网络大小如果TCP打洞直连失败就要耗费中继流量一个中继连接的流量在30k-3M每秒之间1920x1080屏幕取决于清晰度设置和画面变化。如果只是办公需求平均在100K/s。
2022-04-11 11:05:11 +02:00
### 步骤2: 在服务器上运行 hbbs 和 hbbr
在服务器上运行 hbbs/hbbr (Centos 或 Ubuntu)。建议使用[pm2](https://pm2.keymetrics.io/) 管理服务。
```
2022-05-12 15:06:38 +02:00
./hbbs -r <hbbr运行所在主机的地址[:port]>
./hbbr
2022-04-11 11:05:11 +02:00
```
2022-04-19 07:32:08 +02:00
2022-04-22 11:47:47 +02:00
或者使用 pm2 运行 hbbs/hbbr
2022-04-19 07:32:08 +02:00
2022-04-22 11:47:47 +02:00
```
2022-05-12 15:06:38 +02:00
pm2 start hbbs -- -r <relay-server-ip[:port]>
pm2 start hbbr
2022-04-22 11:47:47 +02:00
```
<a name="demo"></a>
2022-04-11 15:56:34 +02:00
{{% notice note %}}
2022-04-22 11:47:47 +02:00
`pm2` 需要 nodejs v16+,如果你运行 pm2 失败(例如在 `pm2 list` 中看不到 hbbs/hbbr请从 https://nodejs.org 下载并安装 LTS 版本的 nodejs。 如果你想让 hbbs/hbbr 在重启后自动运行,请查看 `pm2 save``pm2 startup`。 更多关于 [pm2](https://pm2.keymetrics.io/docs/usage/quick-start/)。另一个不错的日志工具是 [pm2-logrotate](https://github.com/keymetrics/pm2-logrotate)。
2022-05-15 11:35:47 +02:00
hhbs的`-r`参数不是必须的他只是方便你不用在客户端指定中继服务器如果是默认21117端口可以不填port。客户端指定的中继服务器优先级高于这个。**如果RustDesk被控客户端版本>=1.1.9, 客户端也不需要制定终极服务器地址,如果中继服务器没有跑在不同的服务器或者端口上。**
2022-04-11 15:56:34 +02:00
{{% /notice %}}
2022-04-11 11:05:11 +02:00
2022-05-12 15:06:38 +02:00
默认情况下hbbs 监听21115(tcp), 21116(tcp/udp), 21118(tcp)hbbr 监听21117(tcp), 21119(tcp)。务必在防火墙开启这几个端口, **请注意21116同时要开启TCP和UDP**。其中21115是hbbs用作NAT类型测试21116/UDP是hbbs用作ID注册与心跳服务21116/TCP是hbbs用作TCP打洞与连接服务21117是hbbr用作中继服务, 21118和21119是为了支持网页客户端。如果您不需要网页客户端2111821119支持对应端口可以不开。
2022-04-11 11:05:11 +02:00
2022-05-12 15:06:38 +02:00
- TCP(**21115, 21116, 21117, 21118, 21119**)
2022-04-22 11:47:47 +02:00
- UDP(**21116**)
2022-04-11 11:05:11 +02:00
如果你想选择**自己的端口**,使用 “-h” 选项查看帮助。
#### Docker示范
2022-04-12 19:29:05 +02:00
##### Linux/amd64
2022-04-11 11:05:11 +02:00
```
sudo docker image pull rustdesk/rustdesk-server
2022-05-12 15:06:38 +02:00
sudo docker run --name hbbs -p 21115:21115 -p 21116:21116 -p 21116:21116/udp -p 21118:21118 -v `pwd`:/root -it --net=host --rm rustdesk/rustdesk-server hbbs -r <relay-server-ip[:port]>
sudo docker run --name hbbr -p 21117:21117 -p 21119:21119 -v `pwd`:/root -it --net=host --rm rustdesk/rustdesk-server hbbr
2022-04-11 11:05:11 +02:00
```
2022-04-12 19:29:05 +02:00
##### Linux/arm64v8
```
sudo docker image pull rustdesk/rustdesk-server:latest-arm64v8
2022-05-12 15:06:38 +02:00
sudo docker run --name hbbs -p 21115:21115 -p 21116:21116 -p 21116:21116/udp -p 21118:21118 -v `pwd`:/root -it --net=host --rm rustdesk/rustdesk-server:latest-arm64v8 hbbs -r <relay-server-ip[:port]>
sudo docker run --name hbbr -p 21117:21117 -p 21119:21119 -v `pwd`:/root -it --net=host --rm rustdesk/rustdesk-server:latest-arm64v8 hbbr
2022-04-12 19:29:05 +02:00
```
2022-04-20 21:36:57 +02:00
<a name="net-host"></a>
2022-04-19 19:05:02 +02:00
{{% notice note %}}
2022-04-20 21:36:57 +02:00
据我所知,--net=host 仅适用于 Linux它让 hbbs/hbbr 可以看到对方真实的ip, 而不是固定的容器ip (172.17.0.1)。
如果--net=host运行正常-p选项就不起作用了, 可以去掉。
2022-04-19 19:05:02 +02:00
**请去掉 --net=host如果您在非Linux系统上遇到无法连接的问题**
{{% /notice %}}
2022-04-11 11:05:11 +02:00
### 步骤3: 在客户端设置 hbbs/hbbr 地址
点击 ID 右侧的菜单按钮如下,选择“ ID/中继服务器”。
![](/docs/en/self-host/install/images/server-set-menu-zh.png)
2022-05-12 15:06:38 +02:00
在 ID 服务器输入框中(被控端+主控端)输入 hbbs 主机或 ip 地址另外两个地址可以不填RustDesk会自动推导如果没有特别设定中继服务器指的是hbbr21116端口。
2022-04-11 11:05:11 +02:00
例如:
```
hbbs.yourhost.com
```
或者
```
hbbs.yourhost.com:21116
```
2022-04-11 13:23:47 +02:00
![](/docs/en/self-host/install/images/server-set-window-zh.png)
2022-05-17 08:35:52 +02:00
#### 把配置放在可执行文件名里 (Windows only)
把`rustdesk.exe` 修改为 rustdesk-`host=<host-ip-or-name>,key=<public-key-string>`.exe, 例如: rustdesk-`host=192.168.1.137,key=xfdsfsd32=32`.exe你可以在About窗口看到配置结果如下图所示。
2022-05-18 06:06:22 +02:00
{{% notice note %}}
`host``key` 都需要添加,缺少一个就不好使。
{{% /notice %}}
2022-05-17 08:35:52 +02:00
| Menu | About Page |
| -- | -- |
![](/docs/en/self-host/install/images/aboutmenu.png) | ![](/docs/en/self-host/install/images/lic.png) |
## Key
-----------
2022-04-21 14:42:16 +02:00
同上个版本不同本版本中的key是强制的但是不用你自己设置。hbbs在第一次运行时会自动产生一对加密私钥和公钥分别位于运行目录下的`id_ed25519`和`id_ed25519.pub`文件中),其主要用途是为了通讯加密。
如果您在上一步骤中没有填写`Key:`(公钥文件`id_ed25519.pub`中的内容),不影响连接,但是连接无法加密。
2022-04-11 13:23:47 +02:00
```
cat ./id_ed25519.pub
```
2022-04-21 14:42:16 +02:00
如果您禁止没有key的用户建立非加密连接请在运行hbbs和hbbr的时候添加`-k _ `参数,例如:
2022-04-11 13:23:47 +02:00
```
2022-05-10 05:08:09 +02:00
./hbbs -r <relay-server-ip[:port]> -k _
2022-04-11 13:23:47 +02:00
./hbbr -k _
```
2022-04-21 14:42:16 +02:00
如果要更改key请删除 `id_ed25519``id_ed25519.pub` 文件并重新启动 hbbs/hbbrhbbs将会产生新的密钥对。
2022-04-21 09:33:05 +02:00
2022-04-11 13:23:47 +02:00