Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Error while installing dbeaver - Java error code = 13

Tags:

java

dbeaver

I am getting the below error when trying to open dbeaver. Java is up to date...any ideas?

Below is a copy of the error

like image 531
The Numbers Man Avatar asked Jun 02 '16 14:06

The Numbers Man


People also ask

Which Java does DBeaver use?

Java notes: DBeaver requires Java 11 or higher. Since version 7.3.

Does DBeaver need JDK?

eclipse - A Java Runtime Environment (JRE) or Java Development Kit (JDK) must be available in order to run Dbeaver. No Java virtual machine - Stack Overflow. Stack Overflow for Teams – Start collaborating and sharing organizational knowledge.


1 Answers

I had the same problem this morning. There are two practical ways to solve it:

  • Download the right version (probably DBeaver 64Bit version). You must actually find out which JRE-version your computer is running.
  • Change the JVM DBeaver is using: Go to the DBeaver-directory and add the lines below on the top of the dbeaver.ini file. Be aware that the line break is important!
    -vm  
    C:/path/to/your/jdk/jdk-8u144-windows-x64/jre/bin/server/jvm.dll
    
    Of course you must have the right jdk installed where the directory is pointing to.
like image 73
Lycone Avatar answered Oct 24 '22 21:10

Lycone