Re: Screen Resolution

2019-06-12 Thread Amarjeet Singh
I was facing the similar issue.

FreeRDP 1.0.2 doesn't support display update virtual channel.

I also tried using 1.1 and 1.2 releases of FreeRDP but it is not
compaitable with guacamole server.

In order to resolve the above I had to integrate display update virtual
channel support in FreeRDP 1.0.2 version and It is working fine in all the
browsers.

Support of display-update is already there in Guacamole. Support of FreeRDP
2.0.0 will be added in guacamole in the coming release which will resolve
this issue as well.

On Thu, Jun 13, 2019 at 3:54 AM Nick Couchman  wrote:

> On Tue, Jun 11, 2019 at 5:22 PM Goran  wrote:
>
>> Param resize-method=display-update does not work on fullsizing the
>> browser window. It resizes but not to full size.
>>
>> resize-method=reconnect does it's job but is uncomfy.
>>
>> Does someone has a simillar problem?
>>
>
> What O/S are you running guacd on?  Depending on the version of the
> FreeRDP libraries you have installed, there may be issues with this - I
> think this support was introduced in the 1.1 or 1.2 release of FreeRDP, so
> if your distro uses 1.0 it may lack that support.
>
> -Nick
>


Re: Installation script

2019-06-12 Thread ivanmarcus
If the primary site doesn't work for you, and Mike's suggestion doesn't 
reveal anything, there appear to be several mirrors that may be 
accessible and provide what you need, here's a couple:


http://apachemirror.wuchna.com/guacamole/1.0.0/source/

http://apache.mirror.iweb.com/guacamole/1.0.0/source/


On 13/06/2019 5:56 a.m., Mike Jumper wrote:
No. I don't believe the apache.org  servers block 
any IPs, and your logs specifically indicate it connected.


Maybe wget has a verbose option that would help see what isn't working 
on your end?


- Mike

On Wed, Jun 12, 2019, 09:26 Manoj Patil > wrote:


i think my ip is block by apache.org  server


On 12-Jun-2019, at 3:43 PM, Manoj Patil mailto:manoj2pa...@gmail.com>> wrote:

 have issue to installation


https://apache.org/dyn/closer.cgi?action=download=guacamole/1.0.0/source/guacamole-server-1.0.0.tar.gz
Resolving apache.org  (apache.org
)... 40.79.78.1, 95.216.24.32
Connecting to apache.org  (apache.org
)|40.79.78.1|:443... connected.

Unable to establish SSL connection.



On 12-Jun-2019, at 12:25 AM, Mike Jumper mailto:mjum...@apache.org>> wrote:

On Tue, Jun 11, 2019 at 11:49 AM Manoj Patil
mailto:manoj2pa...@gmail.com>> wrote:

dear,

I found the script on below l


wgethttps://raw.githubusercontent.com/Zer0CoolX/guacamole-install-rhel/master/guac-install.sh


but when i am trying to install it on lentos 7.6 it raised error

Downloading Guacamole Packages
-Downloading Guacamole Server package for installation...
[-FAILED-]

%%% ERROR (Script Failed) | Line 1198 | Command:

wgethttps://apache.org/dyn/closer.cgi?action=download=guacamole/1.0.0/source/guacamole-server-1.0.0.tar.gz-O
guacamole-server-1.0.0.tar.gz | Exit code: 4 %%%


From the wget manpage:

EXIT STATUS
   Wget may return one of several error codes if it
encounters problems.

   0   No problems occurred.
   1 Generic error code.
   2 Parse error---for instance, when parsing
command-line options, the .wgetrc or .netrc...
   3   File I/O error.
   4   Network failure.
   ...


- Mike








Re: guacd

2019-06-12 Thread Nick Couchman
On Tue, Jun 11, 2019 at 4:49 PM Goran  wrote:

> It's working:
>
> 
> 
> 
> rdp
> 192.168.100.188
> nla
> true
> q
> 
> 
> 
>
>
Yes - with NLA the username and password must be present at connection time
- they are used as part of the security negotiation with the server, and
the connection will not succeed without them.

NLA has been available since Server 2008, I believe, and required by
default in Server 2012 (Windows 8) and higher.  It is possible to disable
it, but not recommended.

-Nick


Re: Screen Resolution

2019-06-12 Thread Nick Couchman
On Tue, Jun 11, 2019 at 5:22 PM Goran  wrote:

> Param resize-method=display-update does not work on fullsizing the
> browser window. It resizes but not to full size.
>
> resize-method=reconnect does it's job but is uncomfy.
>
> Does someone has a simillar problem?
>

What O/S are you running guacd on?  Depending on the version of the FreeRDP
libraries you have installed, there may be issues with this - I think this
support was introduced in the 1.1 or 1.2 release of FreeRDP, so if your
distro uses 1.0 it may lack that support.

-Nick


Re: Automating creation of users and connections

2019-06-12 Thread Nick Couchman
On Wed, Jun 12, 2019 at 3:56 PM DmitriyL 
wrote:

> I have successfully deployed Guacamole 1.0.0, and now looking into
> automating
> some of the tasks for adding users & connections. For config storage I have
> gone with Postgres, so the idea is to run sql commands against the DB.


This should work fine.


> I
> have reviewed the documentation
> (https://guacamole.apache.org/doc/gug/jdbc-auth.html#jdbc-auth-schema) and
> while I've had some success with writing scripts I'm very new to sql so
> it's
> been a struggle. Is there a repo with SQL scripts for managing common tasks
> in Guacamole DB? Thank you.


No, not really - you'll have to come up with your own scripts. They should
be pretty straight-forward, and I'd also suggest that you can use one of
the extension languages for PostgresSQL to write some functions that take
parameters and do most of the work for you (inserting into the correct
tables, etc.).

You can also use the REST API to do some of this work - there also isn't
much direct documentation on that, but it's pretty easy to use a browser
developer console to get the correct calls and parameters and use that.

And, of course, if you're running into specific issues or getting errors,
post back here and we'll be happy to help you out!

-Nick


Automating creation of users and connections

2019-06-12 Thread DmitriyL
I have successfully deployed Guacamole 1.0.0, and now looking into automating
some of the tasks for adding users & connections. For config storage I have
gone with Postgres, so the idea is to run sql commands against the DB. I
have reviewed the documentation
(https://guacamole.apache.org/doc/gug/jdbc-auth.html#jdbc-auth-schema) and
while I've had some success with writing scripts I'm very new to sql so it's
been a struggle. Is there a repo with SQL scripts for managing common tasks
in Guacamole DB? Thank you. 



--
Sent from: 
http://apache-guacamole-general-user-mailing-list.2363388.n4.nabble.com/

-
To unsubscribe, e-mail: user-unsubscr...@guacamole.apache.org
For additional commands, e-mail: user-h...@guacamole.apache.org



Re: Failed to install guacamole-client 1.0.0

2019-06-12 Thread Mike Jumper
On Wed, Jun 12, 2019, 03:10 ietvkh  wrote:

> Hi
>
> I've run in to similar problems trying to build the client.
> JDK version 11 and maven 3.6.0 running on ubuntu 18.04
>
> First javadoc, markup has changed since 3.0.0.  I excluded it in build..
>
> https://stackoverflow.com/questions/23542876/unable-to-build-maven-project-due-to-javadoc-error


Good to know.


> [ERROR] Failed to execute goal
> org.apache.maven.plugins:maven-javadoc-plugin:2.10.3:jar (attach-javadocs)
> on project guacamole-common: MavenReportException: Error while generating
> Javadoc: Unable to find javadoc command: The environment variable JAVA_HOME
> is not correctly set. -> [Help 1]
>

This looks more like you don't have javadoc installed at all, or don't have
JAVA_HOME properly set as suggested by Maven.

javadoc should be part of the JDK.

then I ran in to javax.xml.bind failed in guacamole-auth-cas
> this package is removed in JDK11.
>
> https://stackoverflow.com/questions/52502189/java-11-package-javax-xml-bind-does-not-exist


That has been fixed:

https://issues.apache.org/jira/browse/GUACAMOLE-736

- Mike


Re: Installation script

2019-06-12 Thread Mike Jumper
No. I don't believe the apache.org servers block any IPs, and your logs
specifically indicate it connected.

Maybe wget has a verbose option that would help see what isn't working on
your end?

- Mike

On Wed, Jun 12, 2019, 09:26 Manoj Patil  wrote:

> i think my ip is block by apache.org server
>
> On 12-Jun-2019, at 3:43 PM, Manoj Patil  wrote:
>
>  have issue to installation
>
>
> https://apache.org/dyn/closer.cgi?action=download=guacamole/1.0.0/source/guacamole-server-1.0.0.tar.gz
> Resolving apache.org (apache.org)... 40.79.78.1, 95.216.24.32
> Connecting to apache.org (apache.org)|40.79.78.1|:443... connected.
>
> Unable to establish SSL connection.
>
>
> On 12-Jun-2019, at 12:25 AM, Mike Jumper  wrote:
>
> On Tue, Jun 11, 2019 at 11:49 AM Manoj Patil 
> wrote:
>
>> dear,
>>
>> I found the script on below l
>>
>> wget
>> https://raw.githubusercontent.com/Zer0CoolX/guacamole-install-rhel/master/guac-install.sh
>>
>>
>> but when i am trying to install it on lentos 7.6 it raised error
>>
>> Downloading Guacamole Packages
>> -Downloading Guacamole Server package for installation... [-FAILED-]
>>
>> %%% ERROR (Script Failed) | Line 1198 | Command: wget
>> https://apache.org/dyn/closer.cgi?action=download=guacamole/1.0.0/source/guacamole-server-1.0.0.tar.gz
>>  -O guacamole-server-1.0.0.tar.gz | Exit code: 4 %%%
>>
>
> From the wget manpage:
>
> EXIT STATUS
>Wget may return one of several error codes if it encounters
> problems.
>
>0   No problems occurred.
>1   Generic error code.
>2   Parse error---for instance, when parsing command-line options,
> the .wgetrc or .netrc...
>3   File I/O error.
>4   Network failure.
>...
>
>
> - Mike
>
>
>
>


Re: Unable to specify upload directory in file stream

2019-06-12 Thread Mike Jumper
On Wed, Jun 12, 2019, 09:17 Lukáš Raška  wrote:

> Hello,
> so after digging through guacd source, I found out it can be controller
> via 482201 console code,
>

Or via the guacctl utility provided to send those codes:

https://github.com/apache/guacamole-server/blob/master/bin/guacctl

but it seems it's not configurable via protocol API and seems to affect
> sftp file transport (couldn't see it in guac_rdp_upload_file_handler, but
> haven't tested on Windows yet).
>
> Are there any plans to unify this behaviour (maybe allow setting the
> directory with custom protocol and use it for other transports as well)?
>

The Guacamole protocol does allow for uploading to specific directories
leveraging the filesystem object. You can see this done in practice in the
file browser within the Guacamole menu.

Quick fix for my usecase is to ignore filesystem->upload_path in
> guac_common_ssh_sftp_handle_file_stream, but that does make it dependent on
> this non-upstream change.
>

If you are stripping away the code that ensures paths are not included in
the uploaded filename, you may well be introducing a security vulnerability
that will allow users to write files anywhere on disk. Upload location is
intentionally tightly controlled.

Or is there any other option how to set the upload_path variable which I'm
> missing?
>

It's done through the filesystem object and "put" streams:

http://guacamole.apache.org/doc/guacamole-common-js/Guacamole.Client.html#event:onfilesystem

http://guacamole.apache.org/doc/guacamole-common-js/Guacamole.Object.html

(See createOutputStream() in particular)

Underlying, low-level protocol:

http://guacamole.apache.org/doc/gug/protocol-reference.html#filesystem-object-instruction

http://guacamole.apache.org/doc/gug/protocol-reference.html#put-object-instruction

The nature of object stream names is described for "get":

http://guacamole.apache.org/doc/gug/protocol-reference.html#get-object-instruction

- Mike


Re: Installation script

2019-06-12 Thread Manoj Patil
i think my ip is block by apache.org  server

> On 12-Jun-2019, at 3:43 PM, Manoj Patil  wrote:
> 
>  have issue to installation
> 
> https://apache.org/dyn/closer.cgi?action=download=guacamole/1.0.0/source/guacamole-server-1.0.0.tar.gz
>  
> 
> Resolving apache.org  (apache.org 
> )... 40.79.78.1, 95.216.24.32
> Connecting to apache.org  (apache.org 
> )|40.79.78.1|:443... connected.
> 
> Unable to establish SSL connection.
> 
> 
>> On 12-Jun-2019, at 12:25 AM, Mike Jumper > > wrote:
>> 
>> On Tue, Jun 11, 2019 at 11:49 AM Manoj Patil > > wrote:
>> dear,
>> 
>> I found the script on below l
>> 
>> wget 
>> https://raw.githubusercontent.com/Zer0CoolX/guacamole-install-rhel/master/guac-install.sh
>>  
>> 
>> 
>> 
>> but when i am trying to install it on lentos 7.6 it raised error
>> 
>> Downloading Guacamole Packages
>> -Downloading Guacamole Server package for installation... [-FAILED-]
>> 
>> %%% ERROR (Script Failed) | Line 1198 | Command: wget 
>> https://apache.org/dyn/closer.cgi?action=download=guacamole/1.0.0/source/guacamole-server-1.0.0.tar.gz
>>  
>> 
>>  -O guacamole-server-1.0.0.tar.gz | Exit code: 4 %%%
>> 
>> From the wget manpage:
>> 
>> EXIT STATUS
>>Wget may return one of several error codes if it encounters problems.
>> 
>>0   No problems occurred.
>>1   Generic error code.
>>2   Parse error---for instance, when parsing command-line options, 
>> the .wgetrc or .netrc...
>>3   File I/O error.
>>4   Network failure.
>>...
>> 
>> - Mike
> 



Re: Unable to specify upload directory in file stream

2019-06-12 Thread Lukáš Raška
Hello,
so after digging through guacd source, I found out it can be
controller via 482201
console code, but it seems it's not configurable via protocol API and seems
to affect sftp file transport (couldn't see it in guac_rdp_upload_file_handler,
but haven't tested on Windows yet).

Are there any plans to unify this behaviour (maybe allow setting the
directory with custom protocol and use it for other transports as well)?
Quick fix for my usecase is to ignore filesystem->upload_path in
guac_common_ssh_sftp_handle_file_stream, but that does make it dependent on
this non-upstream change.

Or is there any other option how to set the upload_path variable which I'm
missing?


Thanks

st 12. 6. 2019 v 12:53 odesílatel Lukáš Raška  napsal:

> Hello,
> we are using Guacamole as part of other application, which is mostly
> utilising just the guacamole-common-js library.
>
> Till now we we're using plain output stream with sendBlob method to upload
> files to connected server. However due to the 8k limitation in chunk size,
> it seems this approach is much slower than it could be. Due to this, we
> switched to similar approach as the native guacamole-client is using -
> sending the file to dedicated endpoint and then partitioning the file in
> backend into 6k chunks before sending it to guacd.
>
>
> We've successfully benchmarked this approach is faster, but we've found
> one issue with file streams creation.
>
> When using for example* client.createFileStream("text/plain",
> "/tmp/file.test"),* the ack is errorneous with *SFTP: Illegal filename*,
> which is caused by slash characters. When using just *file.test *as
> parameter, this uploads just fine into user home folder. So this means we
> cannot specify custom path and need to rely on the user home folder (which
> might not always work).
>
>
> Is there any way how to workaround this limitation? I've tried to look
> into
> https://guacamole.apache.org/doc/gug/protocol-reference.html#file-stream-instruction,
> but haven't found any option how to specify the directory itself.
>
>
> Thanks
>
> --
> Best Regards
>
> Lukáš Raška
>


-- 
Best Regards

Lukáš Raška


Unable to specify upload directory in file stream

2019-06-12 Thread Lukáš Raška
Hello,
we are using Guacamole as part of other application, which is mostly
utilising just the guacamole-common-js library.

Till now we we're using plain output stream with sendBlob method to upload
files to connected server. However due to the 8k limitation in chunk size,
it seems this approach is much slower than it could be. Due to this, we
switched to similar approach as the native guacamole-client is using -
sending the file to dedicated endpoint and then partitioning the file in
backend into 6k chunks before sending it to guacd.


We've successfully benchmarked this approach is faster, but we've found one
issue with file streams creation.

When using for example* client.createFileStream("text/plain",
"/tmp/file.test"),* the ack is errorneous with *SFTP: Illegal filename*,
which is caused by slash characters. When using just *file.test *as
parameter, this uploads just fine into user home folder. So this means we
cannot specify custom path and need to rely on the user home folder (which
might not always work).


Is there any way how to workaround this limitation? I've tried to look into
https://guacamole.apache.org/doc/gug/protocol-reference.html#file-stream-instruction,
but haven't found any option how to specify the directory itself.


Thanks

-- 
Best Regards

Lukáš Raška


Re: Installation script

2019-06-12 Thread Manoj Patil
 have issue to installation

https://apache.org/dyn/closer.cgi?action=download=guacamole/1.0.0/source/guacamole-server-1.0.0.tar.gz
 

Resolving apache.org  (apache.org )... 
40.79.78.1, 95.216.24.32
Connecting to apache.org  (apache.org 
)|40.79.78.1|:443... connected.

Unable to establish SSL connection.


> On 12-Jun-2019, at 12:25 AM, Mike Jumper  wrote:
> 
> On Tue, Jun 11, 2019 at 11:49 AM Manoj Patil  > wrote:
> dear,
> 
> I found the script on below l
> 
> wget 
> https://raw.githubusercontent.com/Zer0CoolX/guacamole-install-rhel/master/guac-install.sh
>  
> 
> 
> 
> but when i am trying to install it on lentos 7.6 it raised error
> 
> Downloading Guacamole Packages
> -Downloading Guacamole Server package for installation... [-FAILED-]
> 
> %%% ERROR (Script Failed) | Line 1198 | Command: wget 
> https://apache.org/dyn/closer.cgi?action=download=guacamole/1.0.0/source/guacamole-server-1.0.0.tar.gz
>  
> 
>  -O guacamole-server-1.0.0.tar.gz | Exit code: 4 %%%
> 
> From the wget manpage:
> 
> EXIT STATUS
>Wget may return one of several error codes if it encounters problems.
> 
>0   No problems occurred.
>1   Generic error code.
>2   Parse error---for instance, when parsing command-line options, the 
> .wgetrc or .netrc...
>3   File I/O error.
>4   Network failure.
>...
> 
> - Mike



Re: Failed to install guacamole-client 1.0.0

2019-06-12 Thread ietvkh
Hi

I've run in to similar problems trying to build the client.
JDK version 11 and maven 3.6.0 running on ubuntu 18.04

First javadoc, markup has changed since 3.0.0.  I excluded it in build..
https://stackoverflow.com/questions/23542876/unable-to-build-maven-project-due-to-javadoc-error

[ERROR] Failed to execute goal
org.apache.maven.plugins:maven-javadoc-plugin:2.10.3:jar (attach-javadocs)
on project guacamole-common: MavenReportException: Error while generating
Javadoc: Unable to find javadoc command: The environment variable JAVA_HOME
is not correctly set. -> [Help 1]


then I ran in to javax.xml.bind failed in guacamole-auth-cas
this package is removed in JDK11.
https://stackoverflow.com/questions/52502189/java-11-package-javax-xml-bind-does-not-exist

[ERROR] COMPILATION ERROR : 
[INFO] -
[ERROR]
/home/guac/guacamole-client-1.0.0/extensions/guacamole-auth-cas/src/main/java/org/apache/guacamole/auth/cas/ticket/TicketValidationService.java:[31,21]
error: package javax.xml.bind does not exist
[ERROR]
/home/guac/guacamole-client-1.0.0/extensions/guacamole-auth-cas/src/main/java/org/apache/guacamole/auth/cas/ticket/TicketValidationService.java:[164,34]
error: cannot find symbol

Br



--
Sent from: 
http://apache-guacamole-general-user-mailing-list.2363388.n4.nabble.com/

-
To unsubscribe, e-mail: user-unsubscr...@guacamole.apache.org
For additional commands, e-mail: user-h...@guacamole.apache.org



Re: Installation script

2019-06-12 Thread Manoj Patil
i have same error 

>> Unable to establish SSL connection

> On 12-Jun-2019, at 3:05 PM, ivanmarcus  wrote:
> 
> It works for me if I issue the command:
> 
> wget 
> https://www.apache.org/dist/guacamole/1.0.0/source/guacamole-server-1.0.0.tar.gz
>  
> 
> This will download the file into whatever directory you are working from at 
> the time.
> 
> 
> On 12/06/2019 7:00 p.m., Manoj Patil wrote:
>> i have issue to installation
>> 
>> https://apache.org/dyn/closer.cgi?action=download=guacamole/1.0.0/source/guacamole-server-1.0.0.tar.gz
>>  
>> 
>> Resolving apache.org  (apache.org 
>> )... 40.79.78.1, 95.216.24.32
>> Connecting to apache.org  (apache.org 
>> )|40.79.78.1|:443... connected.
>> Unable to establish SSL connection.
>> 
>>> On 12-Jun-2019, at 9:28 AM, ivanmarcus >> > wrote:
>>> 
>>> Apropos the earlier info I've passed on I should further note that the 
>>> detail from kifarunix.com  references Guaacmole 
>>> 0.9.14, but the current version is 1.0.0. 
>>> 
>>> However I believe the _process_ should be largely similar (just replace 
>>> 0.9.14 with 1.0.0) - if you had any difficulty I'd use the Guacamole 
>>> project installation detail to assist.
>>> 
>>> 
>>> On 12/06/2019 3:30 p.m., Manoj Patil wrote:
 I am used centos 7.6 64 bit
 
 On Wed, 12 Jun 2019, 01:53 ivanmarcus >>>  wrote:
 Manoj,
 
 I'm not sure what Linux you're using but there is a reasonably good 
 explanation of how to install Guacamole on Ubuntu 18.04 here (there are 
 also links to install on other distributions):
 
 https://kifarunix.com/how-to-setup-guacamole-web-based-remote-desktop-access-tool-on-ubuntu-18-04/
  
 
 I realise it's not a script but coupled with the detail from the guacamole 
 project itself 
 (https://guacamole.apache.org/doc/gug/installing-guacamole.html 
 ) you may 
 find it's less daunting to install manually than it first appears. 
 
 
 
 On 11/06/2019 10:06 p.m., Manoj Patil wrote:
> Dear,
> 
> Is there any automatically installation script for guacamole version 1.0
> 
> 
> 
> -
> To unsubscribe, e-mail: user-unsubscr...@guacamole.apache.org 
> 
> For additional commands, e-mail: user-h...@guacamole.apache.org 
> 
> 
 
>>> 
>> 
> 



Re: Installation script

2019-06-12 Thread ivanmarcus

It works for me if I issue the command:

wget 
https://www.apache.org/dist/guacamole/1.0.0/source/guacamole-server-1.0.0.tar.gz


This will download the file into whatever directory you are working from 
at the time.



On 12/06/2019 7:00 p.m., Manoj Patil wrote:

i have issue to installation

https://apache.org/dyn/closer.cgi?action=download=guacamole/1.0.0/source/guacamole-server-1.0.0.tar.gz
Resolving apache.org  (apache.org 
)... 40.79.78.1, 95.216.24.32
Connecting to apache.org  (apache.org 
)|40.79.78.1|:443... connected.

Unable to establish SSL connection.

On 12-Jun-2019, at 9:28 AM, ivanmarcus > wrote:


Apropos the earlier info I've passed on I should further note that 
the detail from kifarunix.com  references 
Guaacmole 0.9.14, but the current version is 1.0.0.


However I believe the _process_ should be largely similar (just 
replace 0.9.14 with 1.0.0) - if you had any difficulty I'd use the 
Guacamole project installation detail to assist.



On 12/06/2019 3:30 p.m., Manoj Patil wrote:

I am used centos 7.6 64 bit

On Wed, 12 Jun 2019, 01:53 ivanmarcus wrote:


Manoj,

I'm not sure what Linux you're using but there is a reasonably
good explanation of how to install Guacamole on Ubuntu 18.04
here (there are also links to install on other distributions):


https://kifarunix.com/how-to-setup-guacamole-web-based-remote-desktop-access-tool-on-ubuntu-18-04/

I realise it's not a script but coupled with the detail from the
guacamole project itself
(https://guacamole.apache.org/doc/gug/installing-guacamole.html)
you may find it's less daunting to install manually than it
first appears.



On 11/06/2019 10:06 p.m., Manoj Patil wrote:

Dear,

Is there any automatically installation script for guacamole version 1.0



-
To unsubscribe, e-mail:user-unsubscr...@guacamole.apache.org

For additional commands, e-mail:user-h...@guacamole.apache.org












Re: Installation script

2019-06-12 Thread Manoj Patil
i have issue to installation

https://apache.org/dyn/closer.cgi?action=download=guacamole/1.0.0/source/guacamole-server-1.0.0.tar.gz
Resolving apache.org (apache.org)... 40.79.78.1, 95.216.24.32
Connecting to apache.org (apache.org)|40.79.78.1|:443... connected.
Unable to establish SSL connection.

> On 12-Jun-2019, at 9:28 AM, ivanmarcus  wrote:
> 
> Apropos the earlier info I've passed on I should further note that the detail 
> from kifarunix.com references Guaacmole 0.9.14, but the current version is 
> 1.0.0. 
> 
> However I believe the _process_ should be largely similar (just replace 
> 0.9.14 with 1.0.0) - if you had any difficulty I'd use the Guacamole project 
> installation detail to assist.
> 
> 
> On 12/06/2019 3:30 p.m., Manoj Patil wrote:
>> I am used centos 7.6 64 bit
>> 
>> On Wed, 12 Jun 2019, 01:53 ivanmarcus >  wrote:
>> Manoj,
>> 
>> I'm not sure what Linux you're using but there is a reasonably good 
>> explanation of how to install Guacamole on Ubuntu 18.04 here (there are also 
>> links to install on other distributions):
>> 
>> https://kifarunix.com/how-to-setup-guacamole-web-based-remote-desktop-access-tool-on-ubuntu-18-04/
>>  
>> 
>> I realise it's not a script but coupled with the detail from the guacamole 
>> project itself 
>> (https://guacamole.apache.org/doc/gug/installing-guacamole.html 
>> ) you may 
>> find it's less daunting to install manually than it first appears. 
>> 
>> 
>> 
>> On 11/06/2019 10:06 p.m., Manoj Patil wrote:
>>> Dear,
>>> 
>>> Is there any automatically installation script for guacamole version 1.0
>>> 
>>> 
>>> 
>>> -
>>> To unsubscribe, e-mail: user-unsubscr...@guacamole.apache.org 
>>> 
>>> For additional commands, e-mail: user-h...@guacamole.apache.org 
>>> 
>>> 
>> 
>