guacamole

Create guacamole users

寵の児 提交于 2019-12-07 09:03:52
问题 I have just setup guacamole 0.9.9 with a MySQL user database and LDAP authentication and it all works flawlessly so far. However, I want to be able to create new users and connections in the MySQL database from outside of guacamole. Is there a way to use the API to perform these tasks? All I'm reading about the API is creating a new web application which embeds remote connections. Thank you. 回答1: You can use the following MySQL commands in your code to create new users. SET @salt = UNHEX(SHA2

The user-mapping.xml file doesn't work in guacamole, Invalid login

China☆狼群 提交于 2019-12-07 08:12:43
问题 Recently, I was following installation instructions for Guacamole in the manual on http://guac-dev.org/. My system is Ubuntu 14.04. First, I installed the basic required dependencies: $ apt-get install -y apache2 libcairo2-dev libjpeg62-dev libpng12-dev libossp-uuid-dev libfreerdp-dev libpango1.0-dev libssh2-1-dev libtelnet-dev libpulse-dev libssl-dev libvorbis-dev maven tomcat7 $ apt-get install -y libvncserver-dev Then, I downloaded guacamole-server-0.9.8.tar.gz and guacamole-0.9.8.war and

The user-mapping.xml file doesn't work in guacamole, Invalid login

社会主义新天地 提交于 2019-12-05 17:40:16
Recently, I was following installation instructions for Guacamole in the manual on http://guac-dev.org/ . My system is Ubuntu 14.04. First, I installed the basic required dependencies: $ apt-get install -y apache2 libcairo2-dev libjpeg62-dev libpng12-dev libossp-uuid-dev libfreerdp-dev libpango1.0-dev libssh2-1-dev libtelnet-dev libpulse-dev libssl-dev libvorbis-dev maven tomcat7 $ apt-get install -y libvncserver-dev Then, I downloaded guacamole-server-0.9.8.tar.gz and guacamole-0.9.8.war and installed them according to the instructions in the manual: $ tar xf guacamole-server-0.9.8.tar.gz $

Create guacamole users

こ雲淡風輕ζ 提交于 2019-12-05 11:58:45
I have just setup guacamole 0.9.9 with a MySQL user database and LDAP authentication and it all works flawlessly so far. However, I want to be able to create new users and connections in the MySQL database from outside of guacamole. Is there a way to use the API to perform these tasks? All I'm reading about the API is creating a new web application which embeds remote connections. Thank you. You can use the following MySQL commands in your code to create new users. SET @salt = UNHEX(SHA2(UUID(), 256)); INSERT INTO guacamole_user (username, password_salt, password_hash, password_date) VALUES (

Guacamole安装教程

纵饮孤独 提交于 2019-12-01 13:34:36
Guacamole是Apache基金会下的开源软件,它可以作为远程桌面网关,使你通过浏览器就能访问Windows远程桌面,它还支持VNC和SSH等标准协议。 官网:http://guacamole.apache.org/ Guacamole分为 客户端 和 服务端 两部分,客户端有*.war包,放到Tomcat的webapps目录即可自动部署;服务端则需要在自己的服务器上编译安装。 以下安装步骤主要摘抄自官方手册,详情见:http://guacamole.apache.org/doc/gug/ OS版本 :Ubuntu 16.04 第1步:安装编译需要的依赖包 apt install libjpeg-turbo8-dev apt install libcairo2-dev apt install libpng-dev apt install libossp-uuid-dev apt install libavcodec-dev libavutil-dev libswscale-dev apt install libfreerdp-dev apt install libpango1.0-dev libssh2-1-dev apt install libtelnet-dev libvncserver-dev libpulse-dev apt install libssl-dev

Jumpserver安装过程

不羁的心 提交于 2019-11-28 06:41:09
Jumpserver 安装过程 可参照此官方文档搭建: http://docs.jumpserver.org/zh/docs/step_by_step.html 其中,需注意处: # docker run --name jms_guacamole -d -p 8081:8080 -v /opt/guacamole/key:/config/guacamole/key -e JUMPSERVER_KEY_DIR=/config/guacamole/key -e JUMPSERVER_SERVER=http://47.75.212.209:8080 jumpserver/guacamole:latest windows 问题排查地址: http://docs.jumpserver.org/zh/docs/faq_windows.html 来源: https://www.cnblogs.com/immense/p/11397652.html

Using Portainer to Deploy Guacamole Docker- Web-based Remote Access Gateway

为君一笑 提交于 2019-11-26 16:16:11
Apache Guacamole is a clientless remote desktop gateway. It has been called clientless gateway because no plugins or client software are required. The utility offers a HTML5 interface that is used to start remote sessions. There is no other special client software need to be installed as long as you have a browser. The following popular protocols are supported, VNC, RDP, SSH, Telnet. Architecture Guacamole consists of the following components: Guacamole architecture Guacamole Server (Tomcat Servlet Container) Guacamole Proxy Server (guacd), establishes remote connections Remote hosts –