Guacamole, wallabag, Observium, Paperwork (Zuhkov's Docker Template Repository)


Recommended Posts

I really want the 0.9.7 features so I'm forking his container and will do a pull request.  Its not an easy update.. they changed around how the named the mysql auth model.. so i'm trying

 

doesn't look too bad..

 

placing some extension files in two places , creating a database and then running some sql script to build the schema and make the tables.

Link to comment

I really want the 0.9.7 features so I'm forking his container and will do a pull request.  Its not an easy update.. they changed around how the named the mysql auth model.. so i'm trying

 

doesn't look too bad..

 

placing some extension files in two places , creating a database and then running some sql script to build the schema and make the tables.

 

Yes sparlkly.. but I'm stoopid.

 

Broken:

 

### Install MySQL Authentication Module
RUN cd /tmp && \
    wget -q --span-hosts http://downloads.sourceforge.net/project/guacamole/current/extensions/guacamole-auth-mysql-${GUAC_VER}.tar.gz && \
    tar -zxf guacamole-auth-mysql-$GUAC_VER.tar.gz && \
    mv -f `find . -type f -name '*.jar'` /var/lib/guacamole/classpath && \
    mv -f guacamole-auth-mysql-$GUAC_VER/schema/*.sql /root &&\
    rm -Rf /tmp/*

 

My Current Attempt:

 

### Install MySQL Authentication Module
RUN cd /tmp && \
    wget -q --span-hosts http://downloads.sourceforge.net/project/guacamole/current/extensions/guacamole-auth-jdbc-${GUAC_VER}.tar.gz && \
    tar -zxf guacamole-auth-jdbc-$GUAC_VER.tar.gz && \
    mv -f guacamole-auth-jdbc-$GUAC_VER/mysql/guacamole-auth-jdbc-mysql-$GUAC_VER.jar /var/lib/guacamole/classpath && \
    mv -f guacamole-auth-jdbc-$GUAC_VER/mysql/schema/*.sql /root &&\
    rm -Rf /tmp/*

Link to comment

I really want the 0.9.7 features so I'm forking his container and will do a pull request.  Its not an easy update.. they changed around how the named the mysql auth model.. so i'm trying

 

doesn't look too bad..

 

placing some extension files in two places , creating a database and then running some sql script to build the schema and make the tables.

 

Yes sparlkly.. but I'm stoopid.

 

Broken:

 

### Install MySQL Authentication Module
RUN cd /tmp && \
    wget -q --span-hosts http://downloads.sourceforge.net/project/guacamole/current/extensions/guacamole-auth-mysql-${GUAC_VER}.tar.gz && \
    tar -zxf guacamole-auth-mysql-$GUAC_VER.tar.gz && \
    mv -f `find . -type f -name '*.jar'` /var/lib/guacamole/classpath && \
    mv -f guacamole-auth-mysql-$GUAC_VER/schema/*.sql /root &&\
    rm -Rf /tmp/*

 

My Current Attempt:

 

### Install MySQL Authentication Module
RUN cd /tmp && \
    wget -q --span-hosts http://downloads.sourceforge.net/project/guacamole/current/extensions/guacamole-auth-jdbc-${GUAC_VER}.tar.gz && \
    tar -zxf guacamole-auth-jdbc-$GUAC_VER.tar.gz && \
    mv -f guacamole-auth-jdbc-$GUAC_VER/mysql/guacamole-auth-jdbc-mysql-$GUAC_VER.jar /var/lib/guacamole/classpath && \
    mv -f guacamole-auth-jdbc-$GUAC_VER/mysql/schema/*.sql /root &&\
    rm -Rf /tmp/*

 

 

sourceforge is down, (or was 10 minutes ago)

Link to comment

I really want the 0.9.7 features so I'm forking his container and will do a pull request.  Its not an easy update.. they changed around how the named the mysql auth model.. so i'm trying

 

doesn't look too bad..

 

placing some extension files in two places , creating a database and then running some sql script to build the schema and make the tables.

 

Yes sparlkly.. but I'm stoopid.

 

Broken:

 

### Install MySQL Authentication Module
RUN cd /tmp && \
    wget -q --span-hosts http://downloads.sourceforge.net/project/guacamole/current/extensions/guacamole-auth-mysql-${GUAC_VER}.tar.gz && \
    tar -zxf guacamole-auth-mysql-$GUAC_VER.tar.gz && \
    mv -f `find . -type f -name '*.jar'` /var/lib/guacamole/classpath && \
    mv -f guacamole-auth-mysql-$GUAC_VER/schema/*.sql /root &&\
    rm -Rf /tmp/*

 

My Current Attempt:

 

### Install MySQL Authentication Module
RUN cd /tmp && \
    wget -q --span-hosts http://downloads.sourceforge.net/project/guacamole/current/extensions/guacamole-auth-jdbc-${GUAC_VER}.tar.gz && \
    tar -zxf guacamole-auth-jdbc-$GUAC_VER.tar.gz && \
    mv -f guacamole-auth-jdbc-$GUAC_VER/mysql/guacamole-auth-jdbc-mysql-$GUAC_VER.jar /var/lib/guacamole/classpath && \
    mv -f guacamole-auth-jdbc-$GUAC_VER/mysql/schema/*.sql /root &&\
    rm -Rf /tmp/*

 

 

sourceforge is down, (or was 10 minutes ago)

 

[me=smdion]finds a bowl of soup to cry in.[/me]

Link to comment

tar xvf guacamole-auth-jdbc-0.9.7.tar.gz
GUAC_VER=0.9.7 && mv -f ~/guacamole-auth-jdbc-$GUAC_VER/mysql/guacamole-auth-jdbc-mysql-$GUAC_VER.jar ~/

 

 

worked for me.

 

Yea... I changed from

 

http://downloads.sourceforge.net/project/guacamole/current/extensions/guacamole-auth-jdbc-${GUAC_VER}.tar.gz

 

to

 

http://ufpr.dl.sourceforge.net/project/guacamole/current/extensions/guacamole-auth-jdbc-${GUAC_VER}.tar.gz

 

working now..

Link to comment

tar xvf guacamole-auth-jdbc-0.9.7.tar.gz
GUAC_VER=0.9.7 && mv -f ~/guacamole-auth-jdbc-$GUAC_VER/mysql/guacamole-auth-jdbc-mysql-$GUAC_VER.jar ~/

 

 

worked for me.

 

Yea... I changed from

 

http://downloads.sourceforge.net/project/guacamole/current/extensions/guacamole-auth-jdbc-${GUAC_VER}.tar.gz

 

to

 

http://ufpr.dl.sourceforge.net/project/guacamole/current/extensions/guacamole-auth-jdbc-${GUAC_VER}.tar.gz

 

working now..

 

cool.

Link to comment
  • 3 weeks later...

I had to increase the size of my docker.img file and then re-download all docker containers - now Observium doesn't work anymore but gives me the following error: MySQL Error: Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2)

 

Any idea what the problem is? Do I have to delete Observium's config dir and start again? If this is the only way, can I use an external MariaDB database instead?

Link to comment
  • 1 month later...
  • 4 weeks later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.