#!/bin/bash set -eux nexus_domain=$(hostname --fqdn) # use the local nexus user database. config_authentication='nexus' # OR use LDAP. # NB this assumes you are running the Active Directory from https://github.com/rgl/windows-domain-controller-vagrant. #config_authentication='ldap' # install java. apt-get install -y openjdk-8-jre-headless apt-get install -y gnupg # add the nexus user. groupadd --system nexus adduser \ --system \ --disabled-login \ --no-create-home \ --gecos '' \ --ingroup nexus \ --home /opt/nexus \ nexus install -d -o root -g nexus -m 750 /opt/nexus # download and install nexus. pushd /opt/nexus # see http://www.sonatype.com/download-oss-sonatype # see https://help.sonatype.com/display/NXRM3 nexus_version=3.13.0-01 nexus_home=/opt/nexus/nexus-$nexus_version nexus_tarball=nexus-$nexus_version-unix.tar.gz nexus_download_url=https://sonatype-download.global.ssl.fastly.net/nexus/3/$nexus_tarball nexus_download_sha1=baf74b6d61254fd409ca8a058f113c8e18e55b0f wget -q $nexus_download_url if [ "$(sha1sum $nexus_tarball | awk '{print $1}')" != "$nexus_download_sha1" ]; then echo "downloaded $nexus_download_url failed the checksum verification" exit 1 fi tar xf $nexus_tarball # NB this creates the $nexus_home (e.g. nexus-3.13.0-01) and sonatype-work directories. rm $nexus_tarball install -d -o nexus -g nexus -m 700 .java # java preferences are saved here (the default java.util.prefs.userRoot preference). install -d -o nexus -g nexus -m 700 sonatype-work/nexus3/etc chown -R nexus:nexus sonatype-work grep -v -E '\s*##.*' $nexus_home/etc/nexus-default.properties >sonatype-work/nexus3/etc/nexus.properties sed -i -E 's,(application-host=).+,\1127.0.0.1,g' sonatype-work/nexus3/etc/nexus.properties sed -i -E 's,nexus-pro-,nexus-oss-,g' sonatype-work/nexus3/etc/nexus.properties diff -u $nexus_home/etc/nexus-default.properties sonatype-work/nexus3/etc/nexus.properties || true popd # trust the LDAP server certificate for user authentication (when enabled). # NB this assumes you are running the Active Directory from https://github.com/rgl/windows-domain-controller-vagrant. if [ "$config_authentication" = 'ldap' ]; then echo '192.168.56.2 dc.example.com' >>/etc/hosts openssl x509 -inform der -in /vagrant/shared/ExampleEnterpriseRootCA.der -out /usr/local/share/ca-certificates/ExampleEnterpriseRootCA.crt update-ca-certificates -v fi # start nexus. cat >/etc/systemd/system/nexus.service <