Closed hpages closed 4 years ago
Thank you for reporting this! Judging by Ensembl/ensembl-rest#427 there is not a whole lot we can do at Rfam right now to fix this issue.
If you are interested, I can point you to alternative ways of accessing the data that do not rely on rfam.xfam.org, such as the public MySQL database, the EBI Search, or the FTP archive (ftp://ftp.ebi.ac.uk/pub/databases/Rfam). Please let me know if we can help. Thanks again!
There is a certificate problem for the xfam.org domain:
hpages@spectre:~$ gnutls-cli -p 443 xfam.org | grep -B1 broken
- Certificate[3] info:
- subject `C=US,O=The Go Daddy Group\, Inc.,OU=Go Daddy Class 2 Certification Authority', issuer `C=US,O=The Go Daddy Group\, Inc.,OU=Go Daddy Class 2 Certification Authority', RSA key 2048 bits, signed using RSA-SHA1 (broken!), activated `2004-06-29 17:06:20 UTC', expires `2034-06-29 17:06:20 UTC', SHA-1 fingerprint `2796bae63f1801e277261ba0d77770028f20eee4'
I don't control how Bioconductor packages or other software access the rfam website. Just reporting that all the tools that access it via curl are now broken on Ubuntu 20.04 because of this certificate problem. Addressing this on the server side would be much easier than refactoring a bunch of existing code.
Thanks, H.
Thank you for this info - I will look into this and update this issue with my progress. Many thanks for providing the detailed error report!
Hi @AntonPetrov , have you been able to look into this? Thanks!
@hpages I am sorry, there is no progress on this yet. I will update the issue once I hear back from the folks maintaining the Rfam SSL certificates. Thank you!
@hpages I was informed that adding the --ciphers DEFAULT@SECLEVEL=1
option to curl
should fix the problem in Ubuntu 20.04. Sorry that it took so long to get a potential solution.
Hi @AntonPetrov ,
Thanks for the suggestion. Yes, there are a few workarounds that are available on the client side. However, as mentioned previously, I don't control how Bioconductor packages or other software access the rfam website which is why addressing the problem on the server side would be great.
Anyway, it seems that the rfaRm maintainer has managed to implement a workaround in their package so as far as Bioconductor is concerned, the problem is solved.
Thanks!
Hi,
This fails with Ubuntu 20.04:
but works fine with Ubuntu < 20.04 and on Windows and macOS Mojave.
This seems to happen with some websites because of a combination of three reasons: server misconfiguration, increased TLS security level in Ubuntu 20.04 by default, and a bug in OpenSSL 1.1.1. See https://github.com/Ensembl/ensembl-rest/issues/427 for a similar issue with the Ensembl server.
FWIW this breaks Bioconductor package rfaRm: https://bioconductor.org/checkResults/3.12/bioc-LATEST/rfaRm/nebbiolo1-install.html
Internally the package tries to access rfam.xfam.org with the following R code:
Thanks! H.