Installing Oracle JDeveloper Studio Edition 12.2.1.3.0

Please someone help me with the installation of oracle jdev. The instructions in the internet only support the old versions. The new version has a .bin file and a folder which contains some other installation data and I don't know what to do with that folder! I tried this commands which caused error..

chmod 777 jdev_suite_122130_linux64.bin
sudo ./jdev_suite_122130_linux64.bin

This is the error:

ERROR: Installer execution failed (1).

Solution 1:

To set up the installer if required the right command should have been: chmod +x jdev_suite_122130_linux64.bin. But nonetheless, run it without sudo:

./jdev_suite_122130_linux64.bin

Next time check whether it's executable with:

ls -l jdev_suite_122130_linux64.bin

Excerpts from here

Below are some additional considerations to make prior to running the installer:

  • On UNIX operating systems, Oracle recommends that you set the umask to 027 on your system prior to installation. This ensures that file permissions will be set properly during installation. Use the following command:

    umask 027
    
    • You must enter this command in the same terminal window from which you plan to run the product installer.
  • On UNIX operating systems, do not run the installation program as the root user. The installer startup validation will fail and you will not be able to continue.

  • When managing a product installation (for example, applying patches, or starting Managed Servers), you must use the same user ID as was used to perform the initial product installation.

From the above the new permissions you set 777 will not let the installer go forward. Hence you need to take it back to the default then follow the instructions above in the excerpt. The was o requirement to change the permissions in the first place. If you downloaded the zip file then unzip again and check the permissions with ls -l <file_name>. Armed with this information you can now follow the recommended way to run the installer.

See page 15 here