SQL Developer does not run on Ubuntu

Asked

Viewed 888 times

2

I’m trying to run Oracle SQL Developer on Ubuntu and when it arrives in the image part below the execution gets stuck.

problema com instalação

I searched the internet but couldn’t find anything that could help me. Someone has had this problem?

Theoretically the screen should appear below:

inserir a descrição da imagem aqui

  • Sorry, I didn’t care about formatting, actually my concern was just an answer to a problem.

  • What version of Ubuntu? To install Oracle SQL Developer 17.3 you must first install Java JDK 8 and only after Oracle SQL Developer. See http://www.oracle.com/technetwork/developer-tools/sql-developer/downloads/sqldev-relnotes-173-3939064.html

  • Version 16.04, sql Developer 17.3.1. I installed java JDK 8 before performing sql installation.

  • This version of Oracle SQL Developer, 17.3, is recent. Maybe because of this there are still no specific tutorials for installing Oracle SQL Developer 17.3 on Ubuntu 16.04.

1 answer

2

To use Oracle SQL Developer 17.3, you must first install the Java Development Kit (JDK) 8, as shown on the page Oracle SQL Developer 17.3 Release Notes. This documentation also states that If SQL Developer cannot find a local JDK, you will be prompted to enter the Location path for the JDK. Note that the prompt wants only the Folder, not the java.exe.

The first time Oracle SQL Developer runs, it prompts where JDK is installed: Type the full pathname of a JDK installation. One way to get the full name is to open a terminal session and execute the following commands:

cd /usr/lib/jvm
ls

The response of the last command varies according to the installed JDK (Oracle JDK or Openjdk). In the case of default installation of Ubuntu may be something like

default-java    java-1.8.0-openjdk-amd64     java-8-openjdk-amd64

Then enter the following full pathname:

/usr/lib/jvm/java-1.8.0-openjdk-amd64

References:

  • I tried to reinstall JDK according to your comment and it worked perfectly. I followed this link to reinstall the JDK https://www.vivaolinux.com.br/artigo/Installacao-e-Configuraca-do-JDK-7?pagina=3 logically changing only the version.

  • am in another situation. During the installation SQL Veloper did not ask user and password. In this case I cannot log in, is there any default user or some way to configure a user ?

  • 1

    User and password refer to the connection to the database. I suggest you create another specific topic, as it is a different subject; that is, it has no reference to the installation but directly to the database you want to connect to.

  • Okay. Thanks for your help.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.