all 12 official packages · exact bytes · sha-256

DBeaver offline installer: every official package, with checksums

The DBeaver offline installer is not a separate download — every official DBeaver package is a complete offline installer, containing the full application and the bundled OpenJDK 21 runtime in one file. This page lists all 12 official 26.1.4 packages with exact byte sizes and SHA-256 checksums, read from the official GitHub release API on 2026-08-03, plus the air-gapped driver setup the installer pages never explain. Only database drivers normally download on demand — and even those work offline.

  • 12 packages · v26.1.4
  • sizes in exact bytes
  • SHA-256 from the official release API
  • links resolve to github.com/dbeaver
verified 2026-08-03

Direct official links for the DBeaver offline installer

#platformsizesha-256download
1 Windows x86_64installer (.exe) 109.9 MB115,273,240 bytes 3ee1f622c29e0097…full: 3ee1f622c29e0097ef89157e2abe08798f38f5c506b089e7a92cff2deeb2e498 windows-x86_64.exe
2 Windows aarch64installer (.exe) 104.0 MB109,092,656 bytes 6c24cca43690eebc…full: 6c24cca43690eebc2de649cd528476f3356054a257e6a8b5c01284d5346ce101 windows-aarch64.exe
3 macOS aarch64disk image (.dmg) 115.2 MB120,771,408 bytes 28f66f7131314e12…full: 28f66f7131314e128cefe4abd08f161be07bfa14c914ca88a80107f910ddef4b macos-aarch64.dmg
4 macOS x86_64disk image (.dmg) 116.4 MB122,085,394 bytes 6c83df018fbe706c…full: 6c83df018fbe706c13a649ed2c9bf1f02c67f4c6484d4047f67ba11a3c844b3f macos-x86_64.dmg
5 Linux x86_64Debian/Ubuntu (.deb) 119.3 MB125,051,450 bytes 5f7a9b0bf726175a…full: 5f7a9b0bf726175a7d02cd8f093807829241ed21f23dca6557326e8764a35a32 linux-x86_64.deb
6 Linux x86_64Fedora/RHEL (.rpm) 119.3 MB125,142,071 bytes d49eec1f0b27df6d…full: d49eec1f0b27df6ddf1a7221c1c93a12e515ad6d3f36e420ea02c3489c000332 linux-x86_64.rpm
7 Linux x86_64portable (.tar.gz) 119.2 MB125,014,465 bytes bf249dbbf052b442…full: bf249dbbf052b442cdca2e643ba722c709e533b7e0a5075fba6a21d7c50131e2 linux-x86_64.tar.gz
8 Linux aarch64Debian/Ubuntu (.deb) 118.3 MB124,034,714 bytes 506780baae5376a4…full: 506780baae5376a406ea236678dce3d192fe2a78b531d2f0019a89de4164b8ee linux-aarch64.deb
9 Windows x86_64Windows portable (.zip) 121.8 MB127,756,479 bytes 27bda23dc227760f…full: 27bda23dc227760f9a48beee631d353b1d5b8c8ddb3096c6d66259fa860e0a45 windows-x86_64.zip
10 Windows aarch64Windows portable (.zip) 114.2 MB119,756,203 bytes 3cac00db35ffcffc…full: 3cac00db35ffcffca049fedc5337eb470ca2bf94629b283a7e731050eb06f75b windows-aarch64.zip
11 Linux aarch64Fedora/RHEL (.rpm) 118.4 MB124,125,162 bytes 90d26751f4501b38…full: 90d26751f4501b38dbe29c53343a1bc014b0c99e52f77bbcec105d82f8d5200a linux-aarch64.rpm
12 Linux aarch64portable (.tar.gz) 118.3 MB123,996,284 bytes 5ae94d239900beb0…full: 5ae94d239900beb04116e7b5eeec473e93905be76662baba9785e741aba46763 linux-aarch64.tar.gz

Every row links to the official dbeaver/dbeaver GitHub release via a redirect on this site (so we can count clicks without cookies); follow any link and the file arrives from GitHub's release CDN. Verify after download: certutil -hashfile file SHA256 (Windows), shasum -a 256 file (macOS), or sha256sum file (Linux).

the part that actually needs planning

Offline database drivers: the air-gapped setup

Installing DBeaver offline is trivial; the step people get stuck on is drivers, because DBeaver fetches JDBC drivers from the internet the first time you connect to each database type. On an air-gapped machine, register them manually:

  1. On a connected machine, download the JDBC driver JAR. Most drivers live on Maven Central — for example the PostgreSQL driver artifact org.postgresql:postgresql. Download the plain .jar file.
  2. Copy the JAR to the offline machine along with the DBeaver installer, using whatever transfer your environment allows (USB, internal mirror).
  3. Register the driver in DBeaver. Open Database → Driver Manager, select your database type, and in the Libraries tab remove the download-on-demand entries and Add File → your copied .jar.
  4. Create the connection as normal. With the JAR registered locally, “Test Connection” works without DBeaver ever reaching the internet.
offline install FAQ

DBeaver offline installer FAQ

Is there a real DBeaver offline installer?

Yes — every official DBeaver package already is one. The .exe, .dmg, .deb, .rpm, .zip and .tar.gz files each contain the complete application plus the bundled OpenJDK 21 runtime, so installation itself needs no internet connection at all.

Does DBeaver need internet after installation?

Only for two optional things: downloading JDBC drivers on first use of a database type, and checking for updates. Both work offline if you register driver JARs manually — the walkthrough above covers it.

Which file is the DBeaver offline installer for Windows?

dbeaver-ce-26.1.4-windows-x86_64.exe (109.9 MB) for normal PCs, or the aarch64 .exe for Windows-on-ARM. The .zip variants are portable versions of the same build — unpack and run, no installer, no admin rights.

How do I verify a DBeaver download?

Compare its SHA-256 against the table on this page (digests read from the official GitHub release API on 2026-08-03). On Windows run certutil -hashfile SHA256, on macOS shasum -a 256 , on Linux sha256sum — the output must match exactly.

Can I install DBeaver drivers without internet?

Yes. DBeaver only auto-downloads drivers as a convenience — any JDBC driver JAR you copy over can be registered by hand in Database → Driver Manager → Libraries → Add File, which is the standard air-gapped workflow.

Is the portable .zip different from the installer?

Same application, different packaging. The .zip/.tar.gz unpack anywhere, need no admin rights and create no shortcuts or registry entries — ideal for USB sticks and locked-down machines. The installers add menu integration and an uninstaller.

Do these links go to this website’s own servers?

No. Every link in the table resolves to the official dbeaver/dbeaver GitHub release — this site hosts no binaries anywhere. That is also why the checksums are verifiable: they come from the same official source you download from.

Where do I find offline installers for older DBeaver versions?

Every past release keeps its assets on GitHub and the official archive at dbeaver.io/files. Our older versions page lists them with dates and the URL pattern for direct downloads.

Compiled by the dbeaver.dev Team · updated · unofficial; sizes and checksums are reproducible against the GitHub release API. Corrections: [email protected].