Update _index.en.md

This commit is contained in:
dinger1986 2023-08-21 20:53:06 +01:00 committed by GitHub
parent b08f401daf
commit ecac0b32cb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -207,3 +207,23 @@ Yes! We have a [YouTube Channel](https://youtube.com/@RustDesk).
## Why are my logs are empty? ## Why are my logs are empty?
Ensure API is set on both the device being controlled and the machine controlling. Ensure API is set on both the device being controlled and the machine controlling.
On the left hand side click on `Logs`. On the left hand side click on `Logs`.
## How can I uninstall RustDesk Server Pro?
Run the following commands
```
sudo systemctl stop rustdesk-hbbs.service
sudo systemctl disable rustdesk-hbbs.service
sudo systemctl stop rustdesk-hbbr.service
sudo systemctl disable rustdesk-hbbr.service
sudo systemctl daemon-reload
sudo rm /etc/systemd/system/rustdesk-hbbs.service
sudo rm etc/systemd/system/rustdesk-hbbr.service
sudo rm /usr/bin/hbbs
sudo rm /usr/bin/hbbr
sudo rm -rf /var/lib/rustdesk-server/
sudo rm -rf /var/log/rustdesk-server/
```
If the script installed nginx then remove using
```
sudo apt remove nginx
```