This website collects cookies to deliver better user experience
ssh root@<ipv4_address>
apt update
cd /opt
wget https://download.sonatype.com/nexus/3/latest-unix.tar.gz
tar -zxvf latest-unix.tar.gz
adduser nexus
chown -R nexus:nexus nexus-3.28.1-01 chown -R nexus:nexus sonatype-work
vim nexus-3.28.1-01/bin/nexus.rc
su - nexus (or whatever you named the new user)
/opt/nexus-3.28.1-01/bin/nexus start
<ipv4_address>:<port>
docker pull sonatype/nexus3
docker volume create --name nexus-data
docker run -d -p 8081:8081 --name nexus-data -v nexus-data:/nexus-data sonatype/nexus3
23
0