Reputation: 27
This error occurred during installation of Oracle on Windows Server 2008.
Details:
Cause - Failed to access the temporary location.
Action - Ensure that the current user has required permissions to access the temporary location.
Additional Information:
- PRVG-1901 : failed to setup CVU remote execution framework directory C:\Users\ADMINI~1\AppData\Local\Temp\2\CVU_12.2.0.1.0_Administrator\ on nodes "rgfindbd"
- Cause: An operation requiring remote execution could not complete because
the attempt to set up the Cluster Verification Utility remote
execution framework failed on the indicated nodes at the
indicated directory location because the CVU remote execution
framework version did not match the CVU java verification
framework version. The accompanying message provides detailed
failure information.
- Action: Ensure that the directory indicated exists or can be created and
the user executing the checks has sufficient permission to
overwrite the contents of this directory. Also review the
accompanying error messages and respond to them.
Summary of the failed nodes rgfindbd
- Version of exectask could not be retrieved from node "rgfindbd"
- Cause: Cause Of Problem Not Available
- Action: User Action Not Available
- Version of exectask could not be retrieved from node "rgfindbd"
- Cause: Cause Of Problem Not Available
- Action: User Action Not Available
Upvotes: 3
Views: 27945
Reputation: 11
all you need to do is to make sure that whatever file, the installer is looking for is placed in that folder and grant your curret user or everyone full control on that folder. In my case,
Hope this help
Upvotes: 0
Reputation: 285
Delete the oraremservicev2 folder in *C:\Users\{name}\AppData\Local\Temp* location and continue the installation. Working fine
Upvotes: 0
Reputation: 61
In administrator cmd go to your setup folder then:
For a client installation: setup -ignorePrereq
-J"-Doracle.install.client.validate.clientSupportedOSCheck=false"
For a server installation: setup -ignorePrereq -J"-Doracle.install.db.validate.supportedOSCheck=false"
Upvotes: 2
Reputation: 11
I can suggest you to
check if RemoteExecService.exe is running from your temp location,
for example C:\Users\\AppData\Local\Temp\oraremservice.
If it does, then kill the process and delete the oraremservice folder. Rerun your installation
Upvotes: 1
Reputation: 1
Run cmd as administrator Locate the folder of the setup And use this setup -ignorePrereq -J"-Doracle.install.db.validate.supportedOSCheck=false"
Upvotes: 0
Reputation: 270
In the folder, where your setup.exe is, run:
setup -ignorePrereq -J"-Doracle.install.db.validate.supportedOSCheck=false"
Upvotes: 4