Sonatype CLI Binaries
The CLI binary versions are a drop-in replacement for the Java version without the Java runtime environment requirements. The parameters are the same as the Java CLI versions with the addition of Secure Sockets Layer (SSL) customizations.
The native binary versions of the Sonatype IQ CLI are available for direct download on the main IQ Download and Compatibility page next to the JAR version.
Linux
The Linux CLI can be installed on distributions supporting deb
or rpm
packages:
Debian/Ubuntu
Download the public GPG signing key and add the key to your apt source keyring
wget -qO- https://repo.sonatype.com/repository/sonatype-hosted/pki/deb-gpg/GPG-KEY-sonatype-apt-hosted.asc | \ gpg --dearmor | \ sudo tee /usr/share/keyrings/sonatype-apt-hosted.gpg >/dev/null
Add the repository to your sources. They may be added manually or automatically.
Manually create file:
/etc/apt/sources.list.d/sonatype-hosted.list
deb [signed-by=/usr/share/keyrings/sonatype-apt-hosted.gpg arch=amd64] https://repo.sonatype.com/repository/sonatype-apt-hosted/ stable main
Automatic call to add sources.
sudo wget -P /etc/apt/sources.list.d/ https://repo.sonatype.com/repository/sonatype-hosted/deb/sonatype-hosted.list
Install the application via apt-get.
sudo apt-get update && sudo apt-get install nexus-iq-cli
Red Hat/CentOS
Add the repository to your sources.
Manually create /etc/yum.repos.d/sonatype-hosted.repo
[sonatype-hosted] name=Sonatype Hosted baseurl=https://repo.sonatype.com/repository/sonatype-yum-hosted/ enabled=1 gpgcheck=1 gpgkey=https://repo.sonatype.com/repository/sonatype-hosted/pki/rpm-gpg/RPM-GPG-KEY-Sonatype-yum.asc priority=1
Or automatically:
sudo wget -P /etc/yum.repos.d/ https://repo.sonatype.com/repository/sonatype-hosted/rpm/sonatype-hosted.repo
Install the application via yum (or dnf). The first time you install the package you will be prompted to install the GPG signing key.
sudo yum install nexus-iq-cli
Mac/Homebrew
The Mac CLI can be installed via the Homebrew package manager like so:
brew tap sonatype/nexus-iq-cli brew install --cask nexus-iq-cli
Command to run on Linux or Mac OS
./nexus-iq-cli
Windows
Command to run on Windows
nexus-iq-cli.exe
Passing SSL Parameters to the Sonatype CLI
The JAR version of the CLI uses the standard SSL approach found in all Java applications.
-Djavax.net.ssl.trustStore
-Djavax.net.ssl.keyStore
For the native binaries, we pass in values through the following parameters:
CLI property | JVM property |
---|---|
|
|
|
|
|
|
|
|
|
|
|
|
Using the Windows Trust Store for SSL
Set WINDOWS-ROOT
as the trust store type to have the JVM trust certificates from the Windows Truststore.
--ssl-trust-store-type=WINDOWS-ROOT