Skip to content

Verify Downloads

To verify that any CodeLogic file you have downloaded is not corrupted in some way, and also that it is has not been tampered with, a signed checksum file is available.

Important

Internet access is required to verify downloads.

The checksums are specific to a CodeLogic release.

Determine your CodeLogic version

There are multiple ways to determine the version.

$ sudo journalctl --unit=codelogic --no-pager | grep "CodeLogic agents version"
Apr 30 10:32:55 ubuntu24 codelogic-server[2741]: Starting Server for CodeLogic agents version 25.9.3...
Apr 30 10:33:58 ubuntu24 codelogic-server[5723]: Started Server for CodeLogic agents version 25.9.3 at http://192.168.86.50.

$ apt list --installed | grep codelogic
codelogic/now 25.9.3 amd64 [installed,local]
Agents should be the same version but can be verified using codelogic-java or codelogic-sql.

$ dnf list installed codelogic
Installed Packages
codelogic.noarch                        25.6.2-1                        @@commandline
Agents should be the same version but can be verified using codelogic-java or codelogic-sql.

The version is in the lower left corner of the Codelogic Server GUI.

CodeLogic Server Version

Download the Checksum File

Replace 25.9.3 with the version that matches your installation.

$ wget http://repo.codelogic.com/checksums/25.9.3/SHA256SUMS.txt

Verify a Download

Every download from the CodeLogic server has a SHA-256 checksum in the SHA256SUMS.txt file. This includes the agent docker images, plugins, and packages.

For example, to verify the plugin for the Intellij IDE:

  1. Download the Plugin for IntelliJ IDEA from the CodeLogic Server > Store > Plugins | Extensions page.
  2. Generate a SHA-256 checksum for the downloaded file.
    $ sha256sum ./codelogic-intellij-plugin.zip 
    bba19b8b532318bad0d21b40f19f97f881577abd155fc832b70ed52fc2004303  ./codelogic-intellij-plugin.zip
    
  3. Compare the generated checksum to the checksum in SHA256SUMS.txt.
    $ grep codelogic-intellij-plugin.zip SHA256SUMS.txt
    bba19b8b532318bad0d21b40f19f97f881577abd155fc832b70ed52fc2004303  codelogic-intellij-plugin.zip