upgrade to nexus 3.84.1-01
This commit is contained in:
parent
85dd3059ba
commit
881bc3949a
|
|
@ -155,7 +155,7 @@ You can also access the database cli shell as:
|
||||||
sudo -i # switch to the root user.
|
sudo -i # switch to the root user.
|
||||||
systemctl stop nexus # make sure nexus is not running while you use the database.
|
systemctl stop nexus # make sure nexus is not running while you use the database.
|
||||||
su -s /bin/bash nexus # switch to the nexus user.
|
su -s /bin/bash nexus # switch to the nexus user.
|
||||||
nexus_home=/opt/nexus/nexus-3.84.0-03 # make sure you have the correct version here.
|
nexus_home=/opt/nexus/nexus-3.84.1-01 # make sure you have the correct version here.
|
||||||
nexus_data="$(realpath $nexus_home/../sonatype-work/nexus3)"
|
nexus_data="$(realpath $nexus_home/../sonatype-work/nexus3)"
|
||||||
install -d $nexus_data/../tmp
|
install -d $nexus_data/../tmp
|
||||||
rm -f $nexus_data/../tmp/h2-*.jar
|
rm -f $nexus_data/../tmp/h2-*.jar
|
||||||
|
|
|
||||||
|
|
@ -35,12 +35,12 @@ pushd /opt/nexus
|
||||||
# see https://help.sonatype.com/en/download-archives---repository-manager-3.html
|
# see https://help.sonatype.com/en/download-archives---repository-manager-3.html
|
||||||
# see https://help.sonatype.com/en/release-notes.html
|
# see https://help.sonatype.com/en/release-notes.html
|
||||||
# see https://help.sonatype.com/en/sonatype-nexus-repository.html
|
# see https://help.sonatype.com/en/sonatype-nexus-repository.html
|
||||||
nexus_version=3.84.0-03
|
nexus_version=3.84.1-01
|
||||||
nexus_home=/opt/nexus/nexus-$nexus_version
|
nexus_home=/opt/nexus/nexus-$nexus_version
|
||||||
nexus_tarball=nexus-$nexus_version-linux-x86_64.tar.gz
|
nexus_tarball=nexus-$nexus_version-linux-x86_64.tar.gz
|
||||||
nexus_download_url=https://download.sonatype.com/nexus/3/$nexus_tarball
|
nexus_download_url=https://download.sonatype.com/nexus/3/$nexus_tarball
|
||||||
wget -q $nexus_download_url
|
wget -q $nexus_download_url
|
||||||
tar xf $nexus_tarball # NB this creates the $nexus_home (e.g. nexus-3.84.0-03) and sonatype-work directories.
|
tar xf $nexus_tarball # NB this creates the $nexus_home (e.g. nexus-3.84.1-01) and sonatype-work directories.
|
||||||
rm $nexus_tarball
|
rm $nexus_tarball
|
||||||
sed -i -E 's,#!.+,#!/usr/bin/bash,g' "$nexus_home/bin/nexus"
|
sed -i -E 's,#!.+,#!/usr/bin/bash,g' "$nexus_home/bin/nexus"
|
||||||
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 .java # java preferences are saved here (the default java.util.prefs.userRoot preference).
|
||||||
|
|
|
||||||
|
|
@ -17,7 +17,7 @@ binaries: binaries-download
|
||||||
|
|
||||||
binaries-download:
|
binaries-download:
|
||||||
mkdir -p binaries
|
mkdir -p binaries
|
||||||
wget -qO- https://download.sonatype.com/nexus/3/nexus-3.84.0-03-unix.tar.gz \
|
wget -qO- https://download.sonatype.com/nexus/3/nexus-3.84.1-01-unix.tar.gz \
|
||||||
| tar xzf - --strip-components 1 -C binaries
|
| tar xzf - --strip-components 1 -C binaries
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,7 @@
|
||||||
<version>1.0-SNAPSHOT</version>
|
<version>1.0-SNAPSHOT</version>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<nx-version>3.84.0-03</nx-version>
|
<nx-version>3.84.1-01</nx-version>
|
||||||
</properties>
|
</properties>
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<dependency>
|
<dependency>
|
||||||
|
|
|
||||||
|
|
@ -36,12 +36,7 @@ gpg --dearmor -o "$nexus_apt_hosted_keyring_path" </vagrant/shared/apt-hosted-pu
|
||||||
|
|
||||||
# configure the apt-hosted repository.
|
# configure the apt-hosted repository.
|
||||||
echo "deb [arch=amd64 signed-by=$nexus_apt_hosted_keyring_path] https://$nexus_domain/repository/apt-hosted jammy main" >"/etc/apt/sources.list.d/$nexus_domain-apt-hosted.list"
|
echo "deb [arch=amd64 signed-by=$nexus_apt_hosted_keyring_path] https://$nexus_domain/repository/apt-hosted jammy main" >"/etc/apt/sources.list.d/$nexus_domain-apt-hosted.list"
|
||||||
# NB for some odd reason, nexus 3.84.0-03, does not immediately sign the
|
apt-get update
|
||||||
# repository metadata after a package is uploaded, so to prevent the
|
|
||||||
# following error, we loop until apt-get update succeeds.
|
|
||||||
# E: The repository 'https://nexus.example.com/repository/apt-hosted jammy Release' is not signed.
|
|
||||||
# see https://github.com/sonatype/nexus-public/issues/725
|
|
||||||
while ! apt-get update; do sleep 5; done
|
|
||||||
|
|
||||||
# install the hello-world package.
|
# install the hello-world package.
|
||||||
apt-get install -y hello-world
|
apt-get install -y hello-world
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue