10 KiB
title | weight |
---|---|
FAQ | 600 |
How can I install with the Simple Install Script?
- Get your license from https://rustdesk.com/pricing.html, check license page for more details.
- Spin up a VPS, bare metal or Linux VM.
- If you want to use DNS and SSL create a DNS name i.e.
rustdesk.yourdomain.com
. - Go to this page.
- Copy and paste the command into your Linux terminal.
- Follow the prompts as they guide you through the install.
- Once the install is complete go to
https://rustdesk.yourdomain.com
orhttp://youripaddress:21114
. - Log in with the username
admin
and passwordtest1234
. - Enter your license code purchased in step 1.
How can I convert from RustDesk Server Open Source to RustDesk Server Pro?
- Get your license from https://rustdesk.com/pricing.html, check license page for more details.
- Open TCP port 21114.
- Log into your RustDesk Server.
- If you didn't already use DNS and want to use SSL create a DNS name i.e.
rustdesk.yourdomain.com
. - Go to this page.
- Copy and paste the command into your Linux terminal.
- Follow the prompts as they guide you through the install.
- Once the install is complete go to
https://rustdesk.yourdomain.com
orhttp://youripaddress:21114
. - Log in with the username
admin
and passwordtest1234
. - Enter your license code purchased in step 1.
There is a new version of RustDesk Server Pro out, how can I upgrade?
- Go to this page.
- Copy and paste the command into your Linux terminal.
- Follow the prompts as they guide you through the upgrade.
I installed with the scripts, how can I start and stop services?
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
.
I installed with the scripts, how can I view the Linux logs?
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
.
I installed with the scripts, how can I check the status of the RustDesk services?
To check the status sudo systemctl status rustdesk-hbbs|rustdesk-hbbr
e.g. sudo systemctl status rustdesk-hbbs
.
How can I install RustDesk Server Pro on Windows?
- Get your license from https://rustdesk.com/pricing.html, check license page for more details.
- Download the the windows installer from GitHub.
- Unzip the windows installer.
- Run the Installer and follow the steps on screen.
- Once its completed open RustDesk Server.
- Follow the prompts as they guide you through the install.
- Click
Services
and thenStart
. - Once the install is complete go to
http://youripaddress:21114
. - Log in with the username
admin
and passwordtest1234
. - Enter your license code purchased in step 1.
How can I change the admin password?
- Go to
https://rustdesk.yourdomain.com
orhttp://youripaddress:21114
. - Log in with the username
admin
and passwordtest1234
. - Click on
admin
in the top right hand corner. - Click on
Settings
. - Enter your new password in the boxes provided.
How can I delete the default admin
user?
- Create another account with
administrator
enabled. - Log in with the new administrative account.
- Delete the
admin
onUsers
page.
How can I setup my relay servers?
- Go to
Settings
on the left hand menu. - Click on
Relay
on the sub-menu. - Click
+
next toRelay Servers
. - Enter the Relay server DNS address or IP address in the box which now shows and press Enter.
- If you have more than one Relay server you can keep clicking
+
and adapt the Geo settings is required (remember and copy your key to the other servers).
How can I set or change the license?
- Go to
Settings
on the left hand menu. - Click on
License
on the sub-menu. - Click
Edit
and paste in your license code. - Click
OK
.
How can I move my license to a new server?
Please see here.
How can I view the logs?
On the left hand side click on Logs
.
How can I setup Emails?
Gmail in this example
- Go to
Settings
on the left hand menu. - Click on
SMTP
on the sub-menu. - Enter the SMTP address
smtp.gmail.com
. - Enter the Port 587 in
SMTP Port
. - Enter the Gmail account i.e.
myrustdeskserver@gmail.com
inMail Account
. - Enter your password (you might need an app password).
- Enter your Gmail account i.e.
myrustdeskserver@gmail.com
inFrom
. - Click
Check
to save.
Emails aren't working from my VPS
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.
Can I deploy RustDesk using powershell?
Sure, this script can help, replace youraddress
and yourkey
with your address and key for your RustDesk Server Pro Address and Key
$ErrorActionPreference= 'silentlycontinue'
$rdver = ((Get-ItemProperty "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\RustDesk\").Version)
if($rdver -eq "1.2.1")
{
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
powershell Invoke-WebRequest "https://github.com/rustdesk/rustdesk/releases/download/1.2.1/rustdesk-1.2.1-x86_64.exe" -Outfile "rustdesk.exe"
Start-Process .\rustdesk.exe --silent-install -wait
$ServiceName = 'Rustdesk'
$arrService = Get-Service -Name $ServiceName -ErrorAction SilentlyContinue
if ($arrService -eq $null)
{
Start-Sleep -seconds 20
}
while ($arrService.Status -ne 'Running')
{
Start-Service $ServiceName
Start-Sleep -seconds 5
$arrService.Refresh()
}
net stop rustdesk
$username = ((Get-WMIObject -ClassName Win32_ComputerSystem).Username).Split('\')[1]
Remove-Item C:\Users\$username\AppData\Roaming\RustDesk\config\RustDesk2.toml
New-Item C:\Users\$username\AppData\Roaming\RustDesk\config\RustDesk2.toml
Set-Content C:\Users\$username\AppData\Roaming\RustDesk\config\RustDesk2.toml "rendezvous_server = 'youraddress' `nnat_type = 1`nserial = 0`n`n[options]`ncustom-rendezvous-server = 'youraddress'`nkey = 'yourkey'`nrelay-server = 'youraddress'`napi-server = 'https://youraddress'"
Remove-Item C:\Windows\ServiceProfiles\LocalService\AppData\Roaming\RustDesk\config\RustDesk2.toml
New-Item C:\Windows\ServiceProfiles\LocalService\AppData\Roaming\RustDesk\config\RustDesk2.toml
Set-Content C:\Windows\ServiceProfiles\LocalService\AppData\Roaming\RustDesk\config\RustDesk2.toml "rendezvous_server = 'youraddress' `nnat_type = 1`nserial = 0`n`n[options]`ncustom-rendezvous-server = 'youraddress'`nkey = 'yourkey'`nrelay-server = 'youraddress'`napi-server = 'https://youraddress'"
net start rustdesk
How can I get RustDesk IDs from agents on my network or using an RMM type system?
On Windows you can use the following PowerShell script:
$ErrorActionPreference= 'silentlycontinue'
Start-Process "$env:ProgramFiles\RustDesk\RustDesk.exe" --get-id
sleep 2
$rustdesk_id = (get-clipboard)
Write-Output $rustdesk_id
How can I set a persistent password on an agent on my network or using an RMM type system?
On Windows you can use the following PowerShell script:
$ErrorActionPreference = 'silentlycontinue'
net stop rustdesk > null
$ProcessActive = Get-Process rustdesk -ErrorAction SilentlyContinue
if($ProcessActive -ne $null)
{
stop-process -ProcessName rustdesk -Force
}
$rustdesk_pw = (-join ((65..90) + (97..122) | Get-Random -Count 12 | % {[char]$_}))
Start-Process "$env:ProgramFiles\RustDesk\RustDesk.exe" "--password $rustdesk_pw" -wait
Write-Output $rustdesk_pw
net start rustdesk > null
I have installed RustDesk Server Pro manually but the API web console isn't behind SSL, how can I secure this?
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.
How can I file a bug report?
Please file via GitHub.
Why if I am self hosting is this not free and open source?
- RustDesk has become a full time job for a number of people, they have lives, wives, jobs and kids which all demands attention and costs money!
- We want to be here and still making great progress in years to come.
- The open source version will continue to be open source and we encourage others to make developments in line with the AGPL license.
I cant connect to devices in different groups, why is this?
This is easily sorted, you need to allow cross-group access.
- Add new Groups.
- Click Edit.
- Select the relevant groups you want access (it automatically adds them in the corresponding group).
How do I get configs automatically?
Configs are generated automatically.
- Download the newest clients from GitHub.
- On the main page in the web console click on Windows EXE.
- Fill in the host and API (if different from your config).
- Click Submit.
- Scan QR code on Android and rename exe to what has been generated.
Do you offer hosting for RustDesk Server Pro?
Please get in touch with our sales team.
Is there somewhere I can see video setup guides?
Yes! We have a YouTube Channel.