Closed aciolfi closed 2 years ago
Hi, thanks for your interest in VarFish.
That's a new one.
docker logs varfish-docker-compose_varfish-web_1
?DJANG_DEBUG=1
into .env
in the varfish-docker-compose
folder and try that again?Cheers,
Hi Manuel,
thank you for your reply.
Regarding the point 1, you'll find attached the log output...not very comprehensible for me.
Regarding the point 2, adding that line in .env
seems to have no effect.
varfish-docker-compose_varfish-web_1.log
Cheers, Andrea
Oh, I see now. I think you are hitting a bug in 0.23.7 that is resolved in 0.23.9. I did not think that I had pushed that to main
. Could you please try the following:
main
branch with git branch
.git pull origin --rebase
to get the latest version of varfish-docker-compose
.docker-compose down && docker-compose up -d
.OK, I've tried but no way to make it work.
$git branch
-> * main
$git pull origin --rebase
results in error: unknown option rebase
So I've tried $git rebase origin
, and I've got:
Cannot rebase: You have unstaged changes.
Please commit or stash them.
The problem is that I cannot commit or stash anything...what if I only use $git pull origin
(forcing the action)?
Thanks
(sorry for the confusion, but I've realized I've pasted here the wrong commands...now I've edited)
What about?
git stash
git pull --rebase
git stash apply
Unfortunately, I get always the same error using git stash...and the option --rebase
for my git is unknown...so I've manually removed the old .env
, and then running $git rebase origin
seems to work it out, pulling the updated varfish-web (ghcr.io/bihealth/varfish-server:0.23.9-0).
But...This is what I get now, running wget -O /tmp/test.html -S https://<myServerIP>/ --no-check-certificate
--2021-10-01 13:06:36-- https://<myServerIP>/
Connecting to <myServerIP>:443... connected.
WARNING: cannot verify <myServerIP>'s certificate, issued by '/CN=TRAEFIK DEFAULT CERT':
Unable to locally verify the issuer's authority.
WARNING: certificate common name 'TRAEFIK DEFAULT CERT' doesn't match requested host name '<myServerIP>'.
HTTP request sent, awaiting response...
HTTP/1.1 502 Bad Gateway
Date: Fri, 01 Oct 2021 11:06:36 GMT
Content-Length: 11
Content-Type: text/plain; charset=utf-8
2021-10-01 13:06:36 ERROR 502: Bad Gateway.
So, probably I've messed up something...Do you suggest to restart from scratch?
It looks like you did not create a .env
file based on the env.example
. I just realized that the manual does not describe this step... Could you copy env.example
to .env
and edit the values that say so?
I just extended the documentation here:
OK, now it works!
Thank you, Andrea
Thanks for the feedback, I'm glad that we could resolve this.
Hi there,
I'm trying to set up a VarFish Server using Docker Compose (OS Centos 7.5, Docker version 1.13.1, docker-compose version 1.29.2).
I've followed your instructions, and when I run
docker-compose up -d
I get:Then I run
docker ps
and I get:I cannot find any obvious issues there, but if I try to connect to my server I always get the same 404 error, instead of the login page. If I run
wget -O /tmp/test.html -S https://<myServerIP>/ --no-check-certificate
, I get:Do you have any idea what's going on? Thanks in advance for your help, Andrea