Linux系统下快速搭建Nexus仓库
linux 搭建 nexus

首页 2024-12-04 14:02:42



Linux环境下搭建Nexus私服指南 在软件开发和构建过程中,Maven作为一种流行的构建自动化工具,被广泛用于Java项目中

    Maven私服(Repository Manager)则用于管理项目依赖、加速构建过程以及提供私有服务

    Nexus是Sonatype公司提供的Maven私服解决方案,其功能强大且灵活,是众多企业的首选

    本文将详细介绍如何在Linux环境下搭建Nexus私服

     一、准备环境 在开始搭建Nexus之前,我们需要准备相应的系统环境和所需软件包

     1.系统环境: - 本指南使用Red Hat Enterprise Linux release 8.7作为搭建环境

     - 准备好JDK和Maven的安装包,以及Nexus的安装包

    例如:jdk-8u251-linux-x64.tar.gz、apache-maven-3.6.2-bin.tar.gz、nexus-3.31.1-01-unix.tar.gz

     2.上传压缩包: - 将上述压缩包一并上传至`/usr/local/src`文件夹下

     3.初始化脚本: - 创建一个初始化脚本`init.sh`,内容如下: !/bin/bash if 【 -z $1】; then echo $1 is not exists or is empty exit fi echo 【BaseOS】 name=BaseOS baseurl=https://mirrors.aliyun.com/rockylinux/8/BaseOS/$basearch/os/ gpgcheck=0 enabled=1 gpgkey=https://mirrors.aliyun.com/rockylinux/RPM-GPG-KEY-ANOLIS 【AppStream】 name=AppStream baseurl=https://mirrors.aliyun.com/rockylinux/8/AppStream/$basearch/os/ gpgcheck=0 enabled=1 gpgkey=https://mirrors.aliyun.com/rockylinux/RPM-GPG-KEY-ANOLIS 【PowerTools】 name=PowerTools baseurl=https://mirrors.aliyun.com/rockylinux/8/PowerTools/$basearch/os/ gpgcheck=0 enabled=1 gpgkey=https://mirrors.aliyun.com/rockylinux/RPM-GPG-KEY-ANOLIS 【Extras】 name=Extras baseurl=https://mirrors.aliyun.com/rockylinux/8/extras/$basearch/os/ gpgcheck=0 enabled=1 gpgkey=https://mirrors.aliyun.com/rockylinux/RPM-GPG-KEY-ANOLIS > /etc/yum.repos.d/online.repo echo vers:$1