Download version 3.6+ is not working
See original GitHub issueI tried to use version 3.6.1 but the download is not working with a 403 error:
java.io.IOException: Server returned HTTP response code: 403 for URL: https://downloads.mongodb.org/win32/mongodb-win32-x86_64-3.6.1.zip
The pom.xml
is configured like:
<embedded-mongo.version>2.0.3</embedded-mongo.version>
<dependency>
<groupId>de.flapdoodle.embed</groupId>
<artifactId>de.flapdoodle.embed.mongo</artifactId>
<version>${embedded-mongo.version}</version>
<scope>test</scope>
</dependency>
My system info:
λ ver
Microsoft Windows [Version 10.0.16299.248]
λ wmic os get osarchitecture
OSArchitecture
64-bit
Issue Analytics
- State:
- Created 6 years ago
- Reactions:2
- Comments:5 (3 by maintainers)
Top Results From Across the Web
Python Release Python 3.6.0
See the downloads page for currently supported versions of Python. The final source-only security fix release for 3.6 was 3.6.15 and the ...
Read more >Ups, we did it again! - Dashboard version 3.6.2.7 does not ...
I'm having the same problem. Software did an upgrade from 3.4.2.9 and hasn't worked since. 3.5.2.7 and 3.6.2.7 both will not work. Was...
Read more >Issues with RStudio version 3.6.3: troubles installing packages
I upgraded RStudio version to 3.6.3 and have endless issues ... Please download and install the appropriate version of Rtools before ...
Read more >How do I install Python 3.6 using apt-get? - Ask Ubuntu
Install your preferred Python version (this will download the source and build it for your user, no input required) pyenv install 3.6.0.
Read more >How to Download and Install Python 3.6 on Windows 10
I will also show how to use windows command line running your first python Hello world on windows 10. You can download python...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
But in #232 that issue with “403 error” isn’t mentioned and I think you’ll be getting this “403 error” even after #232 is fixed. The issue described in current ticket takes place because of bad constructed URL. It wants to download
/win32/mongodb-win32-x86_64-3.6.1.zip
whereas the only correct path is/win32/mongodb-win32-x86_64-2008plus-ssl-3.6.1.zip
. I had the same issue. I run embedded mongo from SpringBoot. I setspring.mongodb.embedded.version: 3.6.2
and got the error you get. Then I found out I need to add some more properties to make it build correct URL, so I addedspring.mongodb.embedded.features: features: ONLY_WITH_SSL, ONLY_WINDOWS_2008_SERVER
and the “403 error” problem has gone. But I still can’t get it running 😃 that time probably because of #232@ryabko @sydneyhenrard you could also adapt the solution from #256