我正在尝试在我的 Windows 10 Home 上安装全新下载的 Oracle Database 19c,但收到错误消息:Failed to set ACL's for specified User.
在日志详细信息中,我看到提到更新注册表项HKEY_LOCAL_MACHINE\SOFTWARE\Oracle\KEY_OraDB19Home1
,在那里我没有看到任何异常。
我遵循了本指南,并且:
- 跑
net share
- 跑
net use \\localhost\c$
- 我
Stop
和Disabled
服务OracleRemExecServiceV2 - 我还以管理员身份使用 PowerShell 运行命令
setup.exe -ignorePrereq -J"-Doracle.install.db.validate.supportedOSCheck=false"
- 当然,我还使用全新的密码为 Oracle 创建了一个全新的用户。我还尝试了管理员组中的 Windows 用户
- 我去了 regedit 并在HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System上创建了一个新
DWORD
值LocalAccountTokenFilterPolicy
设置为1
- 我禁用了Windows Defender和整个防火墙
- 然后我尝试了调试模式,所以从我运行的提升提示符运行
setup.exe -debug -ignorePrereq -J"-Doracle.install.db.validate.supportedOSCheck=false"
,结果我得到:
native operation failed with WSE-000053: Windows application programming interface (API) SetFileSecurityW failed.
和
O/S-Error: (OS 123) The filename, directory name, or volume label syntax is incorrect.
这对我来说完全没有意义,因为它看起来像一个 Windows 错误。
在拥有大量 CPU 和 RAM 的全新机器上安装 Oracle DB 怎么这么难?
ACL 是什么意思以及如何设置它?
我哪里错了?