Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
systems:guacamole [2019/03/02 10:27]
ajdavis
systems:guacamole [2020/03/20 09:00] (current)
ajdavis [Guacamole (Remote Desktop RDP, VNC relay)]
Line 1: Line 1:
 == Guacamole (Remote Desktop RDP, VNC relay) == == Guacamole (Remote Desktop RDP, VNC relay) ==
  
-Guacamole is the RDP/VNC+Guacamole is the RDP/VNC relay/wrapper we use to access machines inside the network from remote locations. This is hosted on the internal webserver and runs on Tomcat at port 8080.
  
-Guacamole is a 2 part system. The guacamole daemon (guacd) and guacamole web application. The web app uses Tomcat. If guacamole is inaccessible by users after rebooting the server try running the following commands:+Guacamole is a 2 part system. It consists of the guacamole daemon (guacd) and guacamole web application. The web app uses Tomcat.  
 + 
 +If guacamole is inaccessible by users after rebooting the server try running the following commands:
 <code> <code>
 systemctl start guacd systemctl start guacd
-sudo systemctl start tomcat+su - root 
 +systemctl stop tomcat 
 +systemctl start tomcat
 </code> </code>
- 
-[[http://support.audina.net:8080/guacamole|Audina Guacamole Login]] 
  
 Add/edit users in /etc/guacamole/user-mapping.xml Add/edit users in /etc/guacamole/user-mapping.xml
  
-[[http://guacamole.apache.org/doc/gug/configuring-guacamole.html#user-mapping|Guacamole Docs]]+[[http://guacamole.apache.org/doc/gug/configuring-guacamole.html#user-mapping|Guacamole Docs]] 
 +* [[http://support.audina.net:8080/manager/html|Tomcat Manager]]  
 +* [[http://support.audina.net/guacamole/|Audina Guacamole Login]]  
 + 
 +=== Windows 10 RDP w/ Guacamole === 
 +Guacamole apparently doesn't work with Windows 10 or Windows Server 2016 RDP naturally so you have to edit the registry to make it work. Change the keys at the following path: 
 + 
 +<code>Windows Registry Editor Version 5.00 
 + 
 +[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Terminal Server\WinStations\RDP-Tcp] 
 +"SecurityLayer"=dword:00000001 
 +"UserAuthentication"=dword:00000000 
 +</code>