通过wget在Linux上下载Oracle数据库12c第1版(12.1.0.2.0)

时间:2017-10-12 08:49:16

标签: command-line oracle12c centos6

如何在CentOS 6.9版(最终版)上使用wget或curl下载oracle数据库?

3 个答案:

答案 0 :(得分:2)

请参见Downloading Oracle database 12c Release 1 (12.1.0.2.0) on Linux via wget

  1. 在PC上使用浏览器,转到http://www.oracle.com/technetwork/database/enterprise-edition/downloads/index-092322.html
  2. 阅读,理解并接受许可协议
  3. 使用您的Oracle SSO帐户登录
  4. 开始和停止下载,在浏览器的下载管理器中复制下载链接,例如在Firefox中: enter image description here
  5. 使用复制的URL开始curl下载 public static string[] SplitLine(string input) { Regex lineSplit = new Regex("(?:^|,)(\"(?:[^\"]+|\"\")*\"|[^,]*)", RegexOptions.Compiled); List<string> list = new List<string>(); string curr = null; foreach (Match match in lineSplit.Matches(input)) { curr = match.Value; if (0 == curr.Length) { list.Add(""); } list.Add(curr.TrimStart(',')); } return list.ToArray(); } (显然AuthParam = XXX必须是您的)

答案 1 :(得分:0)

您可以使用wget下载它。但是您需要 AuthParam 以及zip URL。您可以简单地使用Internet Explorer进行相同的操作。在此处阅读全文:https://support.dbagenesis.com/knowledge-base/downloading-oracle-12c-using-linux-wget/?unapproved=353&moderation-hash=41dde518defdb8e225ffed9c81fb83da#comment-353

答案 2 :(得分:-2)

Oracle在下载文件时支持基本身份验证。

尝试 wget --http-user=you@domain.com --ask-password "http://download.oracle.com/otn/linux/oracle12c/121020/linuxamd64_12102_database_1of2.zip" -O file1of2

wget --http-user=you@domain.com --ask-password "http://download.oracle.com/otn/linux/oracle12c/121020/linuxamd64_12102_database_2of2.zip" -O file2of2

系统会提示您输入密码。

确保验证您的下载。