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.2.0 packages with exact byte sizes and SHA-256 checksums, read from the official GitHub release API on 2026-09-18, 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.2.0
  • sizes in exact bytes
  • SHA-256 from the official release API
  • links resolve to github.com/dbeaver
verified 2026-09-18

Direct official links for the DBeaver offline installer

#platformsizesha-256download
1 Windows x86_64installer (.exe) 111.8 MB117,187,216 bytes 009e8a99be478261…full: 009e8a99be478261d09fdeb40ab5ef64bfe1f5faf79288cac670164719d921d2 windows-x86_64.exe
2 Windows aarch64installer (.exe) 105.9 MB111,006,000 bytes eec0a2e2d737a93b…full: eec0a2e2d737a93b61681ea4b2f9b96ee4a587cc2c92298ee8a8576b6cee61c0 windows-aarch64.exe
3 macOS aarch64disk image (.dmg) 117.5 MB123,190,051 bytes 62a03aa88429d4ee…full: 62a03aa88429d4eef3576550397aae75d2576a012deda0c83d4b44f5fbcd4a3f macos-aarch64.dmg
4 macOS x86_64disk image (.dmg) 118.8 MB124,586,402 bytes 43c3bd4b67c2727c…full: 43c3bd4b67c2727cafd2901c0875a964370b5c37eff5e616643ceb145989f7c1 macos-x86_64.dmg
5 Linux x86_64Debian/Ubuntu (.deb) 121.6 MB127,534,154 bytes c321310cb9d661f5…full: c321310cb9d661f5e1b8210152a212d0d586fb722b8a9260bd305dc496fc4fec linux-x86_64.deb
6 Linux x86_64Fedora/RHEL (.rpm) 121.7 MB127,623,265 bytes acb3bc2fc2c3547d…full: acb3bc2fc2c3547df154f2bec20b5dc6b7941bd420ccb778de94e43e7170947e linux-x86_64.rpm
7 Linux x86_64portable (.tar.gz) 121.6 MB127,494,932 bytes f504e70a74763aa0…full: f504e70a74763aa02e0b63d6842b85ca64526f682be457b3f30e330cc10748ed linux-x86_64.tar.gz
8 Linux aarch64Debian/Ubuntu (.deb) 120.7 MB126,517,448 bytes ca8b47c985f2a294…full: ca8b47c985f2a294367cdedb45ad047965c1bd88c0c507ca6bd8cc5638638708 linux-aarch64.deb
9 Windows x86_64Windows portable (.zip) 124.2 MB130,229,044 bytes a2429b50e3e5ab0b…full: a2429b50e3e5ab0b5aeee4abea5bbbdae1968173996488fd592f43781058baca windows-x86_64.zip
10 Windows aarch64Windows portable (.zip) 116.6 MB122,229,302 bytes d9f2f64cf8c12736…full: d9f2f64cf8c127362eeab072ddfe5793483b90c38c89e86a60c0a6a9521fdcc4 windows-aarch64.zip
11 Linux aarch64Fedora/RHEL (.rpm) 120.7 MB126,605,219 bytes a10c532c0ebce880…full: a10c532c0ebce880643937083ccc3b77ca1a0a3869efab2b557d55a6b14a1972 linux-aarch64.rpm
12 Linux aarch64portable (.tar.gz) 120.6 MB126,477,046 bytes 6ada803a39c072fc…full: 6ada803a39c072fc8f1c7770669298e92a3501744a6e1ff919794a0dedf95963 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.2.0-windows-x86_64.exe (111.8 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-09-18). 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 Clarence N. Adams, Editor, Unofficial DBeaver Guide · updated · unofficial; sizes and checksums are reproducible against the GitHub release API. Corrections: [email protected].