首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
MCP广场
社区首页 >问答首页 >Oracle 19c安装程序挂起管道输出的无限读取

Oracle 19c安装程序挂起管道输出的无限读取
EN

Database Administration用户
提问于 2021-12-28 11:40:38
回答 2查看 1.5K关注 0票数 1

我试图在Windows 10 64位上安装Oracle 19c。这台机器上从来没有安装过甲骨文产品。当我运行setup.exe时,cmd窗口启动,然后启动启动屏幕,然后出现安装程序窗口,但从未填充。它只是有处理光标。不管我等多久,什么都不会发生。

OracleRemExecServiceV2已安装并正在运行。它是被杀死安装留下的。我删除了它,重新启动并再次尝试安装,结果是相同的。

到目前为止,我所做的工作如下:

  1. 删除了OracleRemExecServiceV2服务。
  2. 对oracle的完整注册搜索(并非全部单词)返回了常见的可疑内容: Microsoft、.Net、OLE DB、Server和Visual客户端。
  3. 在/mnt/c中使用bash,查找。-iname "oracle“,它找到了安装目录、InstallActions目录和前面提到的客户机程序集。

那么,在原木上。早期,有一种警告似乎被纠正了。

代码语言:javascript
运行
复制
    INFO:  [27-Dec-2021 22:15:00] Opening bean stores from which the beans can be loaded
    INFO:  [27-Dec-2021 22:15:00] Loading beanstore from a given input stream
    WARNING:  [27-Dec-2021 22:15:00] Unable to create xml tag for the key:CommonProgramFiles(x86)
    WARNING:  [27-Dec-2021 22:15:00] Unable to create xml tag for the key:ProgramFiles(x86)
    INFO:  [27-Dec-2021 22:15:00] Translating external format into raw format 
    INFO:  [27-Dec-2021 22:15:00] Loaded BeanStore using the flow data defaults
    INFO:  [27-Dec-2021 22:15:00] No global condition definition found.
    INFO:  [27-Dec-2021 22:15:00] Building the flow graph

在日志结束时,当所有准备完成(所有后台任务都完成)时,安装程序将启动。

代码语言:javascript
运行
复制
    INFO:  [27-Dec-2021 22:15:00] Waiting for completion of background operations
    INFO:  [27-Dec-2021 22:15:00] Completed background operations
    INFO:  [27-Dec-2021 22:15:00] Validating view at state <supportedOSCheck>
    INFO:  [27-Dec-2021 22:15:00] Completed validating view at state <supportedOSCheck>
    INFO:  [27-Dec-2021 22:15:00] Validating state <supportedOSCheck>
    INFO:  [27-Dec-2021 22:15:00] Verifying target environment...
    INFO:  [27-Dec-2021 22:15:00] Checking whether the IP address of the localhost could be determined...
    INFO:  [27-Dec-2021 22:23:38] Pause Oracle Database 19c Installer
    INFO:  [27-Dec-2021 22:23:42] Resume Oracle Database 19c Installer
    INFO:  [27-Dec-2021 22:26:04] Pause Oracle Database 19c Installer
    INFO:  [27-Dec-2021 22:26:06] Resume Oracle Database 19c Installer
    INFO:  [27-Dec-2021 22:26:06] Adding ExitStatus USER_CANCELLED_INSTALL to the exit status set
    INFO:  [27-Dec-2021 22:26:06] Finding the most appropriate exit status for the current application
    INFO:  [27-Dec-2021 22:26:06] The inventory does not exist, but the location of the inventory is known: C:\Program Files\Oracle\Inventory
    INFO:  [27-Dec-2021 22:26:06] Finding the most appropriate exit status for the current application
    INFO:  [27-Dec-2021 22:26:06] Exit Status is -4
    INFO:  [27-Dec-2021 22:26:06] Shutdown Oracle Database 19c Installer
    INFO:  [27-Dec-2021 22:26:06] Unloading Setup Driver

你可以看到22:15到22:23之间的差距,直到我杀死它。

查看InstallActions文件夹,我找到了一个1.7GB的InstallActions.out文件。检查该文件会发现,所有文件看起来都很好,缺少的值被创建,等等。

代码语言:javascript
运行
复制
    [Worker 0] [ 2021-12-28 08:40:57.120 GMT ] [nativesystem.WindowsNative.Native]  Trying to open a named pipe
    [Worker 0] [ 2021-12-28 08:40:57.120 GMT ] [nativesystem.WindowsNative.Native]  About to open pipe
    [Worker 0] [ 2021-12-28 08:40:57.120 GMT ] [nativesystem.WindowsNative.Native]  calling create file for pipe \\GOANNA\pipe\srvmremotexecpipev2
    [Worker 0] [ 2021-12-28 08:41:57.133 GMT ] [nativesystem.WindowsNative.Native]  Local pipe failed (53), retry using local pipe notation
    [Worker 0] [ 2021-12-28 08:41:57.133 GMT ] [nativesystem.WindowsNative.Native]  calling create file for pipe \\.\pipe\srvmremotexecpipev2
    [Worker 0] [ 2021-12-28 08:41:57.133 GMT ] [nativesystem.WindowsNative.Native]  Created handle to Pipe 
    
    [Worker 0] [ 2021-12-28 08:41:57.133 GMT ] [nativesystem.WindowsNative.Native]  Pipe has connected, set the handle state
    [Worker 0] [ 2021-12-28 08:41:57.133 GMT ] [nativesystem.WindowsNative.Native]  Fill up the request message
    [Worker 0] [ 2021-12-28 08:41:57.133 GMT ] [nativesystem.WindowsNative.Native]  Finish filling up the request message
    [Worker 0] [ 2021-12-28 08:41:57.133 GMT ] [nativesystem.WindowsNative.Native]  Sending a message to the pipe server. Total bytes to write=18528
    [Worker 0] [ 2021-12-28 08:41:57.134 GMT ] [nativesystem.WindowsNative.Native]  After call to WriteFile. totalWritten=18528, cbWritten=18528
    [Worker 0] [ 2021-12-28 08:41:57.134 GMT ] [nativesystem.WindowsNative.Native]  Reading from the pipe

其次是1700万个相同的行,

代码语言:javascript
运行
复制
    [Worker 0] [ 2021-12-28 08:mm:ss.nnn GMT ] [nativesystem.WindowsNative.Native]  Reading from the pipe

我不知道下一步该去哪里。InstallActions.err是空的。

这是我的第一个问题。任何帮助都将不胜感激。

EN

回答 2

Database Administration用户

发布于 2022-09-25 22:41:24

如果您在...\Inventory\logs OUT文件中看到“从管道中读取”消息,请使用管理帐户登录Windows并运行名为“服务器”和“工作站”的服务。

票数 0
EN

Database Administration用户

发布于 2023-03-21 19:42:14

我也有这个问题。我以管理员身份登录,并重新启动了服务器和工作站服务。这没什么用。

最终对我起作用的是我禁用了所有的网络适配器,并重新运行了安装。这一变化几乎是立即发生的,没有进一步的问题。

我不知道为什么会起作用,我只是看到其他人在另一个网站上发布了类似的解决方案,并尝试了一下。

票数 0
EN
页面原文内容由Database Administration提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://dba.stackexchange.com/questions/305446

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档