IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> Java知识库 -> nexus 的安装使用以及包的上传下载 -> 正文阅读

[Java知识库]nexus 的安装使用以及包的上传下载

CentOS7 下安装 nexus

java环境

检查java环境

java -version

查看java环境

注意: java的版本必须为1.8
java环境错误提示

查看yum源中是否有相关套件

yum -y list java*

安装java8

yum -y install java-1.8.0-openjdk-devel.x86_64

安装nexus

下载地址

https://help.sonatype.com/repomanager3/product-information/download

下载unix.tar.gz后缀的文件
下载地方
创建存放目录

mkdir /usr/local/nexux

解压

tar -xzvf nexus-3.38.0-01-unix.tar.gz -C /usr/local/nexux

按需修改端口,默认为8081

vim /usr/local/nexux/nexus-3.38.0-01/etc/nexus-default.properties

修改jdk安装目录

 vim /usr/local/nexux/nexus-3.38.0-01/bin/nexus

打开第14行注释并修改

INSTALL4J_JAVA_HOME_OVERRIDE= /usr/bin/java

修改运行用户为root

vim /usr/local/nexux/nexus-3.38.0-01/bin/nexus.rc

打开注释并修改

run_as_user=“root”

设置开机自启动

 ln -s /usr/local/nexux/nexus-3.38.0-01/bin/nexus /etc/init.d/nexus3
 chkconfig --add nexus3
 chkconfig nexus3 on

关闭防火墙

systemctl start firewalld
firewall-cmd --zone=public --add-port=8081/tcp --permanent
systemctl reload firewalld
firewall-cmd --query-port=8081/tcp 

后台启动

/usr/local/nexux/nexus-3.38.0-01/bin/nexus  run &

成功启动
默认账号:admin
默认密码

cat /usr/local/nexux/sonatype-work/nexus3/admin.password

nexus 使用

查看java包
在这里插入图片描述

删除Java包,:8081/#browse/browse:maven-snapshots:com
在这里插入图片描述

Maven 配置

上传到nexus

添置maven pom配置

<distributionManagement>
	<repository>
		<id>Nexus</id>
		<name>Releases</name>
		<url>http://ip:8081/repository/maven-releases</url>
	</repository>
	<snapshotRepository>
		<id>Nexus</id>
		<name>Snapshot</name>
		<url>http://ip:8081/repository/maven-snapshots</url>
	</snapshotRepository>
</distributionManagement>

修改Maven settings配置
注意:id一定要对上

<servers>
    <server>
    <id>Nexus</id>
      <username>admin</username>
      <password>xxx</password>
    </server>
</servers>

推送到远程仓库

mvn clean deploy

从nexus下载

配置镜像源
注意:mirror、profile、activeProfile的标识必须一致

     <mirror>
        <id>nexus</id>
        <mirrorOf>*</mirrorOf>
        <url>http://ip:8081/nexus/content/groups/public</url>
      </mirror>

添加仓库配置

   <profile>
       <id>nexus</id>
        <repositories>
          <repository>
            <id>central</id> 
            <url>https://repo1.maven.org/maven2/</url>
            <releases><enabled>true</enabled></releases> 
            <snapshots><enabled>true</enabled></snapshots>
          </repository>
        </repositories>
 
       <pluginRepositories>
          <pluginRepository>
            <id>central</id>
            <url>https://repo1.maven.org/maven2/</url>
            <releases><enabled>true</enabled></releases>
            <snapshots><enabled>true</enabled></snapshots>
          </pluginRepository>
        </pluginRepositories>
      </profile>

生效配置

   <activeProfiles>
     <activeProfile>nexus</activeProfile>
   </activeProfiles>
  Java知识库 最新文章
计算距离春节还有多长时间
系统开发系列 之WebService(spring框架+ma
springBoot+Cache(自定义有效时间配置)
SpringBoot整合mybatis实现增删改查、分页查
spring教程
SpringBoot+Vue实现美食交流网站的设计与实
虚拟机内存结构以及虚拟机中销毁和新建对象
SpringMVC---原理
小李同学: Java如何按多个字段分组
打印票据--java
上一篇文章      下一篇文章      查看所有文章
加:2022-03-15 22:18:55  更:2022-03-15 22:21:32 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 9:58:58-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码