rustdesk.yourdomain.com
.https://rustdesk.yourdomain.com
or http://youripaddress:21114
.admin
and password test1234
.rustdesk.yourdomain.com
.https://rustdesk.yourdomain.com
or http://youripaddress:21114
.admin
and password test1234
.The services use systemd so can be started and stopped using sudo systemctl stop|start|restart rustdesk-hbbs|rustdesk-hbbr
e.g. sudo systemctl restart rustdesk-hbbs
.
The logs are stored in /var/log/rustdesk-server, you can view them using tail /var/log/rustdesk-server/hbbs.log
or tail /var/log/rustdesk-server/hbbs.error
.
To check the status sudo systemctl status rustdesk-hbbs|rustdesk-hbbr
e.g. sudo systemctl status rustdesk-hbbs
.
https://rustdesk.yourdomain.com
or http://youripaddress:21114
.admin
and password test1234
.admin
in the top right hand corner.Settings
.Please see here.
A lot of VPS providers block ports 465 and 25.
A simple way to check is using telnet. To test in the Linux terminal type telnet your.mailserver.com 25
. On Windows use PowerShell with Test-NetConnection -ComputerName your.mailserver.com -Port 25
.
Your mail server may not be using port 25. Please make sure you are using the correct ports.
Sure, you can find scripts to aid deployment here https://rustdesk.com/docs/en/self-host/client-deployment/
Use a proxy like Nginx, the simple install script has one, it’s really simple. This is how we do it.
Similar configs should work with Traefik v2, HAProxy, Apache Proxy and Cloudflare Tunnel.
Please file via GitHub.
This is easily sorted, you need to allow cross-group access.
Edit
.Configs are generated automatically.
Windows EXE
.Submit
.Please get in touch with our sales team.
Yes! We have a YouTube Channel.
Ensure API is set on both the device being controlled and the machine controlling.
On the left hand side click on Logs
.
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
Disable and then delete will now be available.
$ErrorActionPreference= 'silentlycontinue'
$rdver = ((Get-ItemProperty "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\RustDesk\").Version)
if($rdver -eq "1.2.2")
{
write-output "RustDesk $rdver is the newest version."
exit
}
If (!(Test-Path C:\Temp)) {
New-Item -ItemType Directory -Force -Path C:\Temp > null
}
cd C:\Temp
Invoke-WebRequest "https://github.com/rustdesk/rustdesk/releases/download/1.2.2/rustdesk-1.2.2-x86_64.exe" -Outfile "rustdesk.exe"
Start-Process .\rustdesk.exe --silent-install -wait