如何在CentOS 6.9版(最终版)上使用wget或curl下载oracle数据库?
答案 0 :(得分:2)
请参见Downloading Oracle database 12c Release 1 (12.1.0.2.0) on Linux via wget
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
系统会提示您输入密码。
确保验证您的下载。