PAVAN VARMA
PAVAN VARMA

Reputation: 27

How to resolve 'INS 30131 Initial setup required for the execution of installer validation failed' in Oracle installation?

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

Answers (7)

Monktar BELLO
Monktar BELLO

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,

  • folder is "C:\Users<CurrentUser>\AppData\Local\Temp\CVU_21.0.0.0.0_"
  • file expected "exectask.exe" which I found in installer directory then I copied to the folder in previous bullet

Hope this help

Upvotes: 0

Adithya
Adithya

Reputation: 285

Delete the oraremservicev2 folder in *C:\Users\{name}\AppData\Local\Temp* location and continue the installation. Working fine

Upvotes: 0

mohsen Abdi
mohsen Abdi

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

WXYZ
WXYZ

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

Run cmd as administrator Locate the folder of the setup And use this setup -ignorePrereq -J"-Doracle.install.db.validate.supportedOSCheck=false"

Upvotes: 0

Annemarie Rinyu
Annemarie Rinyu

Reputation: 270

In the folder, where your setup.exe is, run:

setup -ignorePrereq -J"-Doracle.install.db.validate.supportedOSCheck=false"

Upvotes: 4

Abdul Rehman Kaim Khani
Abdul Rehman Kaim Khani

Reputation: 1170

this work in my case

# chmod 777 -R /tmp

Upvotes: -1

Related Questions