其他分享
首页 > 其他分享> > 单机 Nexus 部署

单机 Nexus 部署

作者:互联网

资源清单

主机 IP
nexus 10.0.0.1
软件 版本
docker 20.10.12
nexus 3.18.1

一、Docker 安装

1. 使用国内 yum

# yum install -y yum-utils device-mapper-persistent-data lvm2
# yum-config-manager --add-repo https://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo

2. 卸载旧版本的 docker

## 如果主机上已经有docker存在且不是想要安装的版本,需要先进行卸载。
# yum remove -y docker \
              docker-client \
              docker-client-latest \
              docker-common \
              docker-latest \
              docker-latest-logrotate \
              docker-logrotate \
              docker-selinux \
              docker-engine-selinux \
              docker-engine \
              container*

3. 安装 Docker20.10 版本

# yum -y install docker-ce-20.10.12-3.el7 docker-ce-cli-20.10.12-3.el7

4. 设置镜像加速

# mkdir /etc/docker
# vi /etc/docker/daemon.json

{
  "registry-mirrors": ["https://xxxxxxxxx.mirror.aliyuncs.com"]
}

5. 启动 docker

# systemctl start docker
# systemctl enable docker
# systemctl status docker

二、安装 Nexus 服务

1. 服务部署

# cat << EOF >> install.sh 
#!/bin/bash

## 新建目录
mkdir /data/nexus -pv
## 设置目录权限
chown -R 200 /data/nexus

docker run -d \
  -p 8081:8081 \
  -p 5000:5000 \
  --name nexus \
  -v /etc/localtime:/etc/localtime \
  -v /data/nexus/:/nexus-data \
  sonatype/nexus3:3.18.1
EOF

## 启动服务
# bash install.sh

2. ````web``` 访问服务

## 账号:admin
## 密码:/data/nexus/admin.password 文件中

浏览器访问 10.0.0.1:8081

标签:nexus,单机,Nexus,etc,部署,yum,docker,data,##
来源: https://www.cnblogs.com/evescn/p/16190990.html