首页 > 系统相关 >linux-nexus

linux-nexus

时间:2023-04-18 22:59:25浏览次数:49  
标签:INFO nexus maven linux jenkins root hello

nexus

一、概述

背景:

  • maven编译的时候,npm/cnpm编译,需要下载大量的依赖包。
  • 这些依赖包在每一次构建的时候都需要使用。
  • 每次都从公网(maven 阿里云) npm(国内)。

可以搭建内部软件仓库:存放着依赖包

这个软件依赖仓库可以通过nexus实现。

二、极速部署指南

https://www.sonatype.com/download-oss-sonatype

[root@nexus ~]# ll
total 234836
-rw-------. 1 root root      1340 Jan  9 09:09 anaconda-ks.cfg
-rw-r--r--  1 root root 117557932 Feb 21 20:59 jdk-8u351-linux-x64.rpm
-rw-r--r--  1 root root 122904706 Mar 29 08:24 nexus-3.13.0-01-unix.tar.gz
[root@nexus ~]# rpm -ivh jdk-8u351-linux-x64.rpm 
[root@nexus ~]# mkdir -p /app/tools/
[root@nexus ~]# tar xf nexus-3.13.0-01-unix.tar.gz -C /app/tools/
[root@nexus ~]# ln -s /app/tools/nexus-3.13.0-01/ /app/tools/nexus
[root@nexus ~]# ln -s /app/tools/nexus/bin/nexus /bin/
[root@nexus ~]# nexus --version
WARNING: ************************************************************
WARNING: Detected execution as "root" user.  This is NOT recommended!
WARNING: ************************************************************
Usage: /usr/bin/nexus {start|stop|run|run-redirect|status|restart|force-reload}

[root@nexus ~]# nexus start
WARNING: ************************************************************
WARNING: Detected execution as "root" user.  This is NOT recommended!
WARNING: ************************************************************
Starting nexus

启动的警告: 不推荐使用root运行。

登录后屏幕提示:

System Requirement: max file descriptors [4096] likely too low, increase to at least [65536].

翻译nexus要求: 文件描述符过低,请增加到65536(每个进程可以打开的文件数量)

[root@nexus ~]#  ulimit -n 65536    #临时修改
[root@nexus ~]# tail -2 /etc/security/limits.conf
* soft nofile 65536
* hard nofile 65536

三、登录配置

http://nexus.cn:8081/

用户名: admin 密码:admin123

image-20230330214714295

1.配置连接阿里云maven源

image-20230330214750457

image-20230330214810311

http://maven.aliyun.com/nexus/content/groups/public/

2.连接使用nexus

连接nexus方式 说明 方法
全局 所有java项目都连接nexus仓库 maven conf/settings.xml
某个项目 某个项目连接nexus仓库 java项目下面 pom.xml
#配置maven,直接改用户名和密码还有域名就行
[root@jenkins ~]# cat /app/tools/maven/conf/settings.xml
<?xml version="1.0" encoding="UTF-8"?>
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
          xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
  <pluginGroups>

  </pluginGroups>

  <proxies>
  </proxies>

  <servers>
     <server>   
       <id>my-nexus-releases</id>   
       <username>admin</username>   
       <password>admin123</password>   
       </server>   
     <server>   
       <id>my-nexus-snapshot</id>   
       <username>admin</username>   
       <password>admin123</password>   
     </server>
  </servers>

  <mirrors>
    <mirror>
      <id>nexus</id>
      <mirrorOf>*</mirrorOf>
      <url>http://nexus.cn:8081/repository/maven-public/</url>
    </mirror>
  </mirrors>

  
  <profiles>
    <profile>
      <id>nexus</id>
      <repositories>
        <repository>
          <id>central</id>
          <url>http://nexus.cn:8081/repository/maven-public/</url>
          <releases><enabled>true</enabled></releases>
          <snapshots><enabled>true</enabled></snapshots>
        </repository>
      </repositories>
     <pluginRepositories>
        <pluginRepository>
          <id>central</id>
          <url>http://nexus.cn:8081/repository/maven-public/</url>
          <releases><enabled>true</enabled></releases>
          <snapshots><enabled>true</enabled></snapshots>
        </pluginRepository>
      </pluginRepositories>
    </profile>
  </profiles>
<activeProfiles>
<activeProfile>nexus</activeProfile>
</activeProfiles>
</settings>
[root@jenkins ~]# cd /var/lib/jenkins/workspace/hello_word_maven_job
[root@jenkins /var/lib/jenkins/workspace/hello_word_maven_job]# ll
total 8
drwxr-xr-x 2 root root  29 Mar 28 21:01 dist
-rw-r--r-- 1 root root 930 Mar 28 21:02 pom.xml
-rw-r--r-- 1 root root 213 Mar 28 21:01 README.md
drwxr-xr-x 3 root root  18 Mar 28 21:01 src
drwxr-xr-x 5 root root 103 Mar 29 20:58 target
[root@jenkins /var/lib/jenkins/workspace/hello_word_maven_job]# cat /etc/hosts
172.16.1.74 nexus.cn
[root@jenkins /var/lib/jenkins/workspace/hello_word_maven_job]# mvn clean package
[INFO] Packaging webapp
[INFO] Assembling webapp [hello-world-war] in [/var/lib/jenkins/workspace/hello_word_maven_job/target/hello-world-war-1.0.0]
[INFO] Processing war project
[INFO] Copying webapp resources [/var/lib/jenkins/workspace/hello_word_maven_job/src/main/webapp]
[INFO] Webapp assembled in [72 msecs]
[INFO] Building war: /var/lib/jenkins/workspace/hello_word_maven_job/target/hello-world-war-1.0.0.war
[INFO] WEB-INF/web.xml already added, skipping
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time:  01:00 min
[INFO] Finished at: 2023-03-30T21:55:58+08:00
[INFO] ------------------------------------------------------------------------

image-20230330215638983

标签:INFO,nexus,maven,linux,jenkins,root,hello
From: https://www.cnblogs.com/world-of-yuan/p/17331532.html

相关文章

  • linux-LVS
    LVS一、概述1.常见负载均衡常见负载均衡对比优势缺点硬件:F5性能好技术支持价格昂贵购买2台1对.lvs工作四层效率极其高对数据做的转发负载均衡部署维护(运维成本较高)nginx/tengine/openresty(lua)使用简单支持4层(1.9版本后支持)和7层反向代理......
  • linux-Jumpserver
    Jumpserver一、跳板机概述日常普通运维:运维管理与维护环境,一般通过远程连接工具,进行去维护与管理,好处方便.缺点不方便进行行为审计(什么时间什么地点,做了什么),批量管理较难自动化运维与管理:推荐通过跳板机连接用户管理服务器,进行批量管理可以利用自动化工具(......
  • Windows 上的 Bash 正在成为微软的 Linux
    微软对WindowsSubsystemfor Linux(WSL)的一系列大量更新被列入WindowsInsiderbuild15002,该版本已于1月10日开始推送给Windows10用户。微软的WSL计划仍然是具有较强的暂时性和实验性的,但该公司正在不断往上添加功能,以飞快的步伐改进和扩展WSL。这在一定程度上......
  • Windows 上的 Bash 正在成为微软的 Linux
    微软对WindowsSubsystemfor Linux(WSL)的一系列大量更新被列入WindowsInsiderbuild15002,该版本已于1月10日开始推送给Windows10用户。微软的WSL计划仍然是具有较强的暂时性和实验性的,但该公司正在不断往上添加功能,以飞快的步伐改进和扩展WSL。这在一定程度上......
  • Windows 上的 Bash 正在成为微软的 Linux
    微软对WindowsSubsystemfor Linux(WSL)的一系列大量更新被列入WindowsInsiderbuild15002,该版本已于1月10日开始推送给Windows10用户。微软的WSL计划仍然是具有较强的暂时性和实验性的,但该公司正在不断往上添加功能,以飞快的步伐改进和扩展WSL。这在一定程度上......
  • Linux的操作系统网络模块
    Linux操作系统的网络模块是负责网络通信的核心部分。它通过实现各种协议和算法,使得计算机能够在网络中进行数据交换和通信。网络模块主要包括以下几个方面的功能:(1)IP协议栈:负责处理网络层的数据包,实现IP地址的分配、路由选择等功能。IP协议栈是网络模块中最基本的部分,它负责处理......
  • Linux 系统在线扩容磁盘空间
    @目录一、概述二、开始实战操作演示第一步:添加一块10G的硬盘第二步:查看添加的硬盘第三步:对磁盘进行分区第四步:扩充根分区:将新分区扩展根:/一、概述在Linux系统中,目录的大小是动态的,随着其中的文件和子目录的添加、删除和修改而变化。当目录中的文件和子目录越来越多时,可能需要对......
  • Linux基础命令
    目录一、关机或重启命令二、显示当前所在路径,显示当前路径下的所有内容三、基础命令touch、cat、echo四、基础命令cp、mv、rm五、切换目录六、创建目录结构七、编辑相关命令八、如何建立软连接?一、关机或重启命令'''参数介绍-h(hour小时的意思后面跟具体时间12:30常用-h0......
  • Linux下Mysql数据库的基础操作
    (Linux下Mysql数据库的基础操作)一、Mysql数据介绍Mysql数据库是一种关系型数据库管理系统,具有的优点有体积小、速度快、总体成本低,开源,可移植性(跨平台,在不同系统中使用),可以和开发语结合,属于轻量级数据库。二、数据库相关术语介绍1.数据库相关名词数据库:database表:table......
  • Redis 一、(简介,redis-linux下载,启动方式,常用配置,应用场景,数据结构和内部编码,字符类型)
    目录Redis一、Redis1、简介2、RedisLinux下载安装3、redis启动方式3、1.简单启动3、2.动态参数启动3、3.配置文件启动5、常用配置6、redis应用场景7、redis通用命令8、数据结构和内部编码9、redis字符串类型Redis一、Redis1、简介#Redis特性1)速度快10wops(每秒10万......