0138.html 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>Install Apache Guacamole on Debian</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  6. <meta charset="UTF-8">
  7. <meta name="keywords" content="Linux,Debian,Raspberry Pi,SBC,Apache,Guacamole,Web Based RDP,Web Based VNC,Web Based SSH,System Administration,Home Lab,Home Lab Ideas,Install Guide,Browser Based,Web Based,Web Based Tools,Self-Hosted,Apache Guacamole,Apache Guacamole Installation Guide,How To Install Apache Guacamole,RDP,SSH,VNC,Terminal,Browser Based Administration,Browser Based RDP,Browser Based VNC,Free Software,Freeware,System Administrator,How To,Tutorial,i12bretro">
  8. <meta name="author" content="i12bretro">
  9. <meta name="description" content="Install Apache Guacamole on Debian">
  10. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  11. <meta name="revised" content="04/09/2022 06:35:32 AM" />
  12. <link rel="icon" type="image/x-icon" href="includes/favicon.ico">
  13. <script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
  14. <script type="text/javascript" src="includes/js/steps.js"></script>
  15. <link href="css/steps.css" rel="stylesheet" type="text/css" />
  16. </head>
  17. <body>
  18. <div id="gridContainer">
  19. <div class="topMargin"></div>
  20. <div id="listName" class="topMargin">
  21. <h1>Install Apache Guacamole on Debian</h1>
  22. </div>
  23. <div></div>
  24. <div id="content">
  25. <h2>Installing Guacamole and Initial Setup</h2>
  26. <ol>
  27. <li>Open a terminal and run the following commands:
  28. <div class="codeBlock">wget -O guac-install.sh https://git.io/fxZq5<br />
  29. chmod +x guac-install.sh<br />
  30. sudo ./guac-install.sh</div>
  31. </li>
  32. <li>Select No, No, Yes to the prompts</li>
  33. <li>Set MySQL root and guacamole user passwords</li>
  34. <li>Wait several minutes for the install process to complete</li>
  35. <li>Open a web browser and navigate to http://<host_or_ip>DNS-or-IP:8080/guacamole/</host_or_ip></li>
  36. <li>Log in with guacadmin/guacadmin</li>
  37. <li>Go to Settings &gt; Users</li>
  38. <li>Create a new user and grant all permissions</li>
  39. <li>Log out and log in as the new user</li>
  40. <li>Go to Settings &gt; Users &gt; Delete the guacadmin user</li>
  41. <li>Go to Settings &gt; Connections &gt; New Connection</li>
  42. <li>Setup a test connection to a known working host</li>
  43. <li>Click Save</li>
  44. <li>Go to Home &gt; Click on the created connection</li>
  45. <li>Enjoy browser based SSH, VNC, RDP and more</li>
  46. </ol>
  47. <h2>Optional Steps</h2>
  48. <ol>
  49. <li>To remove the need to navigate to /guacamole, run the following commands in a terminal window
  50. <div class="codeBlock">sudo su<br />
  51. cd /var/lib/tomcat9/webapps<br />
  52. rm ROOT -r<br />
  53. mv guacamole ROOT</div>
  54. </li>
  55. <li>Open a web browser and navigate to http://DNS-or-IP:8080/ to reach the guacamole UI</li>
  56. </ol>
  57. </div>
  58. </div>
  59. </body>
  60. </html>