You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@guacamole.apache.org by "wuxiaobai (Jira)" <ji...@apache.org> on 2021/02/02 12:48:00 UTC

[jira] [Reopened] (GUACAMOLE-1276) The upload file size in the rdp protocol exceeds 4GB and cannot be uploaded successfully

     [ https://issues.apache.org/jira/browse/GUACAMOLE-1276?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

wuxiaobai reopened GUACAMOLE-1276:
----------------------------------

This is my installation, I did not use any reverse proxy server . ** 

_In addition, I use glyptodon also encountered this problem._

 

[root@localhost ~]# yum install –y epel-release

[root@localhost ~]# yum install –y yum-utils device-mapper-persistent-data lvm2

[root@localhost ~]# yum-manager --add-repo [https://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo]

[root@localhost ~]# sed -i 's+download.docker.com+mirrors.aliyun.com/docker-ce+' /etc/yum.repos.d/docker-ce.repo

[root@localhost ~]# yum makecache fast

[root@localhost ~]# yum install -y docker-ce

[root@localhost ~]# systemctl enable docker

[root@localhost ~]# systemctl start docker

[root@localhost ~]# docker pull guacamole/guacd:1.3.0

[root@localhost ~]# docker pull guacamole/guacamole:1.3.0

[root@localhost ~]# docker pull mysql/mysql-server:5.7

[root@localhost ~]# docker run --name guacd --restart=always -d guacamole/guacd:1.3.0

[root@localhost ~]# docker run --rm guacamole/guacamole:1.3.0 /opt/guacamole/bin/initdb.sh --mysql > /opt/initdb.sql

[root@localhost ~]# docker run --name mysql --restart=always  -e MYSQL_ROOT_PASSWORD=guacamole -d mysql/mysql-server:5.7

[root@localhost ~]# docker cp /opt/initdb.sql mysql:/initdb.sql

[root@localhost ~]# docker exec -it mysql mysql -uroot –pguacamole

mysql> CREATE DATABASE guacamole;

mysql> CREATE USER 'guacamole'@'%' IDENTIFIED BY 'guacamole';

mysql> GRANT SELECT,INSERT,UPDATE,DELETE ON guacamole.* TO 'guacamole'@'%';

mysql> FLUSH PRIVILEGES;

mysql> use guacamole;

mysql> source /opt/initdb.sql;

mysql> exit

[root@localhost ~]# docker run --name guacamole --restart=always --link guacd:guacd --link mysql:mysql -e MYSQL_DATABASE='guacamole' -e MYSQL_USER='guacamole' -e MYSQL_PASSWORD='guacamole' -d -p 8080:8080 guacamole/guacamole:1.3.0

> The upload file size in the rdp protocol exceeds 4GB and cannot be uploaded successfully
> ----------------------------------------------------------------------------------------
>
>                 Key: GUACAMOLE-1276
>                 URL: https://issues.apache.org/jira/browse/GUACAMOLE-1276
>             Project: Guacamole
>          Issue Type: Bug
>          Components: guacamole
>    Affects Versions: 1.2.0, 1.3.0
>         Environment: CentOS 7 / Debian 10 
> Docker
>            Reporter: wuxiaobai
>            Priority: Major
>
> This problem exists regardless of whether it is installed natively or deployed using Docker.
> I seem to have seen the same problem before, but I can’t find it now.
>  
> *Problem Description:*
> Upload any file larger than 4GB, and after reaching the 4GB file in guacamole shared disk inside the file transfer can not continue



--
This message was sent by Atlassian Jira
(v8.3.4#803005)