-
Star
(113)
You must be signed in to star a gist -
Fork
(50)
You must be signed in to fork a gist
-
-
Save sr75/11187116 to your computer and use it in GitHub Desktop.
http://d.stavrovski.net/blog/post/how-to-install-and-setup-oracle-java-jdk-in-centos-6 | |
# rpm | |
wget --no-cookies \ | |
--no-check-certificate \ | |
--header "Cookie: oraclelicense=accept-securebackup-cookie" \ | |
"http://download.oracle.com/otn-pub/java/jdk/7u55-b13/jdk-7u55-linux-x64.rpm" \ | |
-O jdk-7-linux-x64.rpm | |
# ubuntu | |
wget --no-cookies \ | |
--no-check-certificate \ | |
--header "Cookie: oraclelicense=accept-securebackup-cookie" \ | |
"http://download.oracle.com/otn-pub/java/jdk/7u55-b13/jdk-7u55-linux-x64.tar.gz" \ | |
-O jdk-7-linux-x64.tar.gz | |
# then | |
tar -xzvf jdk-7-linux-x64.tar.gz |
It doesn't seem to work anymore unfortunately. It gives 401 Authorization Required
It just looks like Oracle is aggressively removing old versions of Java from now on. Only latest 8u181 is available for download.
Here is the command:
wget --header "Cookie: oraclelicense=accept-securebackup-cookie" http://download.oracle.com/otn-pub/java/jdk/8u181-b13/96a7b8442fe848ef90c96a2fad6ed6d1/jdk-8u181-linux-x64.rpm
its very usefull thankyou soo much..
i tried this for http://www.oracle.com/technetwork/database/application-development/jdbc/downloads/jdbc-ucp-183-5013470.html but i still keep getting 401 Authorization Required
wget http://download.oracle.com/otn/utilities_drivers/jdbc/183/ojdbc8.jar --no-check-certificate --no-cookies --header "Cookie: oraclelicense=accept-securebackup-cookie"
Thanks so much!!
still works for jre-8u192-linux-x64.tar.gz with edited script:
$ wget --no-cookies --no-check-certificate --header "Cookie: oraclelicense=accept-securebackup-cookie" \
"https://download.oracle.com/otn-pub/java/jdk/8u192-b12/750e1c8617c5452694857ad95c3ee230/jre-8u192-linux-x64.tar.gz"
-O jre-8-linux.tar.gz
Doesn't work with JDK 11
yes it is not work for jdk8u202
wget command requires username and password authentication now for this to work.
I confirm your point ezst036, I can't download it anymore from a curl or wget since the april 16th and the license update.
So now, I use a private S3
Something goes wrong with https://login.oracle.com/sso/auth,
You get System error. Please re-try your action. If you continue to get this error, please contact the Administrator.
it doesnot work now. i tried below command, gives: 401 Authorization Required Username/Password Authentication Failed.
wget --no-cookies --no-check-certificate --header "Cookie: oraclelicense=accept-securebackup-cookie" "https://download.oracle.com/otn/java/jdk/8u211-b12/478a62b7d4e34b78b671c754eaaf38ab/jdk-8u211-linux-x64.tar.gz" -O jdk-8u211-linux-x64.tar.gz
any command to sign in oracle account- accept the license agreement - download the jdk tar.gz from cli?
the reason is becoz;
The Oracle JDK License has changed for releases starting April 16, 2019.
The new Oracle Technology Network License Agreement for Oracle Java SE is substantially different from prior Oracle JDK licenses. The new license permits certain uses, such as personal use and development use, at no cost -- but other uses authorized under prior Oracle JDK licenses may no longer be available. Please review the terms carefully before downloading and using this product. An FAQ is available here.
Oracle Java downloads now require logging in to an Oracle account to download Java updates, like the latest Oracle Java 8u211 / Java SE 8u212. Because of this I cannot update the PPA with the latest Java (and the old links were broken by Oracle).
For this reason, THIS PPA IS DISCONTINUED (unless I find some way around this limitation).
Oracle Java 8 is now stable. Below you'll find instructions on how to install it in Ubuntu / Linux Mint via a PPA repository. The PPA supports JDK8 for both 32bit and 64bit as well as ARM (ARM v6/v7 Hard Float ABI - there's no JDK 8 ARM Soft Float ABI archive available for download on Oracle's website).
please help!
This worked for me, for getting 8u131 version, which I needed: wget -c --header "Cookie: oraclelicense=accept-securebackup-cookie" http://download.oracle.com/otn-pub/java/jdk/8u131-b11/d54c1d3a095b4ff2b6607d096fa80163/jdk-8u131-linux-x64.rpm
I got this from https://stackoverflow.com/questions/10268583/downloading-java-jdk-on-linux-via-wget-is-shown-license-page-instead, which lists commands for various versions.
tried the above and doesnt work anymore
wget -c --header "Cookie: oraclelicense=accept-securebackup-cookie" https://download.oracle.com/otn/java/jdk/8u121-b13/e9e7ea248e2c4826b92b3f075a80e441/jdk-8u121-linux-x64.tar.gz
We are getting the below error
"HTTP request sent, awaiting response... 401 Authorization Required"
None of the above commands seems to work anymore.
I was able to download it with the following:
wget \
--continue \
--no-check-certificate \
-O jdk-11.0.4_linux-x64_bin.rpm \
--header "Cookie: oraclelicense=a" \
"https://download.oracle.com/otn/java/jdk/11.0.4+10/cf1bbcbf431a474eb9fc550051f4ee78/jdk-11.0.4_linux-x64_bin.rpm?AuthParam=1567225725_a1c0cdc68062ddd501584d78c7030671"
This may also help: https://stackoverflow.com/a/10959815/2184122
Latest, 1.7.2
wget --no-cookies --no-check-certificate \
--header "Cookie: oraclelicense=accept-securebackup-cookie"
"http://download.oracle.com/otn-pub/java/jdk/8u172-b11/a58eab1ec242421181065cdc37240b08/jdk-8u172-linux-x64.rpm"