安装Nexus
的前提是已经安装JDK,JDK的安装这里就不再赘述,安装JDK-1.7
版本,JDK版本过低在启动Nexus的时候会报错.
下载与启动
下载链接为http://www.sonatype.org/nexus/go/ 最新版本为 nexus-2.11.4-01
,我们下载NEXUS OSS(TGZ)
. 得到nexus-2.11.4-01-bundle.tar.gz
- 将
nexus-2.11.4-01-bundle.tar.gz
复制到/usr/local
目录下
sudo cp nexus-2.11.4-01-bundle.tar.gz /usr/local
cd /usr/local
- 解压
nexus-2.11.4-01-bundle.tar.gz
,得到nexus-2.11.4-01
和sonatype-work
两个文件夹,为了以后操作方便,我们将创建软链接nexus
指向nexus-2.11.4-01
sudo tar -zxvf nexus-2.11.4-01-bundle.tar.gz
sudo ln -s nexus-2.11.4-01 nexus
- 启动
Nexus
cd nexus
sudo bin/nexus
输出:
Usage: bin/nexus { console | start | stop | restart | status | dump }
根据英文即可知道每个命令的意思,现在启动Nexus
sudo bin/nexus start
结果输出:
****************************************
WARNING - NOT RECOMMENDED TO RUN AS ROOT
****************************************
If you insist running as root, then set the environment variable
RUN_AS_USER=root before running this script.
此时修改bin/nexus
文件设置RUN_AS_USER
sudo vim bin/nexus
将 #RUN_AS_USER=
改成 RUN_AS_USER=root
重新启动Nexus
sudo bin/nexus start
输出:
****************************************
WARNING - NOT RECOMMENDED TO RUN AS ROOT
****************************************
Starting Nexus OSS...
Started Nexus OSS.
打开localhost:8081/nexus
进行查看,启动成功.如果打不开怎么办? 查看日志
vim logs/wrapper.log
根据错误提示来修改配置文件.
- 修改
nexus
的端口
sudo vim conf/nexus.properties
将application-port=8081 改成你想设置的端口,例如9000.
nexus.properties
文件中的nexus-work
:指定构件库的存储位置
将Nexus设置为系统自启动服务
- 复制
/usr/local/nexus/bin/nexus
文件到/etc/init.d/
sudo cp /usr/local/nexus/bin/nexus /etc/init.d/
- 修改
/etc/init.d/nexus
sudo vim /etc/init.d/nexus
添加修改以下变量:
NEXUS_HOME="/usr/local/nexus"
RUN_AS_USER=root
PIDDIR="/var/run"
- 启动
nexus
服务
sudo service nexus start #启动
sudo service nexus stop #停止服务
sudo service nexus status #查看服务状态
启动之后,跟之前所述一样,打开http://localhost:8081/nexus
即可.
提示
默认登录用户名为admin,密码admin123
使用nginx
nginx是一个非常轻量级的HTTP服务器,nginx,它的发音为“engine X”, 是一个高性能的HTTP和反向代理服务器,同时也是一个IMAP/POP3/SMTP 代理服务器。
-
nginx
安装
sudo apt-get install nginx
默认nginx
安装,所有的配置文件都在/etc/nginx
下,并且每个虚拟主机已经安排在了/etc/nginx/sites-available
下, 启动程序文件在/usr/sbin/nginx
,日志放在了/var/log/nginx
中,分别是access.log
和error.log
,并已经在/etc/init.d/
下创建了启动脚本nginx
,默认的虚拟主机的目录设置在了/usr/share/nginx/www
安装过之后,默认已经启动.查看是否启动:
sudo service nginx status #查看状态
sudo service nginx stop #停止服务
sudo service nginx start #启动服务
启动之后,打开http://localhost/
即可.如果不能访问,先不要继续,看看是什么原因,解决之后再继续。
- 配置
nginx
cd /etc/nginx/conf.d
sudo vim nexus.conf
将下列内容复制进去
#
# The default server
#
server {
listen 80 ;
server_name 127.0.0.1;
#charset koi8-r;
#access_log logs/host.access.log main;
# Load configuration files for the default server block.
location /nexus {
proxy_set_header Via "nginx";
proxy_read_timeout 120;
proxy_send_timeout 120;
proxy_connect_timeout 120;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_redirect off;
proxy_pass http://127.0.0.1:8081/nexus;
}
location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
error_page 404 /404.html;
location = /404.html {
root /usr/share/nginx/html;
}
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}
重启nginx
sudo service restart nginx
如果你的机器同时安装了Apache
,此时nginx
都可能启动不了,这是因为它们都是用了80
这个端口。两种方法:停止apache
或者将nginx的端口修改为8080
,将nexus.conf
配置文件中的 listen 80
改为listen 8080
启动成功之后,访问http://127.0.0.1/nexus
即可.
配置nexus
- 配置
nexus
开启远程索引 新搭建的neuxs
环境只是一个空的仓库,需要手动和远程中心库进行同步,nexus
默认是关闭远程索引下载,最重要的一件事情就是开启远程索引下载。登陆nexus
系统,默认用户名密码为admin/admin123
。
点击左侧的Views/Repositories
,下拉菜单中有Repositories
选项,点击Repositories
,找到右边仓库列表中的三个仓库Apache Snapshots
,Codehaus Snapshots
和Central
,然后在这三个仓库的configuration
下把Download Remote Indexes
修改为true
。然后在这三个仓库上分别右键,选择Repair Index
,这样nexus
就会去下载远程的索引文件。
-
建立内部仓库 新建公司的内部仓库,步骤为页面上部的
Add –> Hosted Repository
,在页面的下半部分输入框中填入Repository ID
和Repository Name
即可,比如分别填入myrepo
和my repository
,另外把Deployment Policy
设置为Allow Redeploy
,点击save
就创建完成了. -
修改
neuxs
仓库组nexus
中仓库组的概念是Maven
没有的,在Maven
看来,不管你是hosted
也好,proxy
也好,或者group
也好,对我都是一样的,我只管根据groupId
,artifactId
,version
等信息向你要构件。为了方便Maven
的配置,nexus
能够将多个仓库,hosted
或者proxy
合并成一个group
,这样,Maven
只需要依赖于一个group
,便能使用所有该group
包含的仓库的内容。
neuxs
中默认自带了一个名为Public Repositories
组,点击该组可以对他保护的仓库进行调整。同时创建一个Group ID
为public-snapshots
、Group Name
为Public Snapshots Repositories
的组,把Apache Snapshots
、Codehaus Snapshots
和Snapshots
加入其中。
到这里neuxs
的安装配置就完成了.
二、
1
2
3
|
[root@MiWiFi-R1CM-srv src] # wget
[root@MiWiFi-R1CM-srv src] # tar -zxf nexus-2.9.0-bundle.tar.gz -C /usr/local/
[root@MiWiFi-R1CM-srv src] # mv /usr/local/nexus-2.9.0-bundle /usr/local/nexus
|
1
|
sed -i 's/application-port=8081/application-port=8088/g' nexus /conf/nexus .properties
|
1
2
3
4
|
[root@MiWiFi-R1CM-srv ~] # echo -e '#!/bin/bash\nexport NEXUS_HOME=/usr/local/nexus\nexport PATH=$PATH:$NEXUS_HOME/bin\nexport RUN_AS_USER=root' >/etc/profile.d/nexus.sh
[root@MiWiFi-R1CM-srv ~] # source /etc/profile.d/nexus.sh
[root@MiWiFi-R1CM-srv local ] # /usr/local/nexus/bin/nexus start
[root@MiWiFi-R1CM-srv local ] # netstat -tlunp |grep 8088
|
1
2
|
[root@MiWiFi-R1CM-srv local ] # cd /usr/local/nexus/
[root@MiWiFi-R1CM-srv nexus] # cp bin/jsw/linux-x86-64/nexus /etc/init.d/
|
1
|
[root@MiWiFi-R1CM-srv nexus] # vim /etc/init.d/nexus
|
1
2
3
4
5
6
|
# chkconfig: 2345 66 39 # description: running&stop nexus service. RUN_AS_USER=root NEXUS_HOME= /opt/pht/nexus-2 .5.1-01
PLATFORM=linux-x86-64 PLATFORM_DIR= "${NEXUS_HOME}/bin/jsw/${PLATFORM}"
|
1
2
3
|
WRAPPER_CMD= "${PLATFORM_DIR}/wrapper"
WRAPPER_CONF= "${PLATFORM_DIR}/../conf/wrapper.conf"
PIDDIR= "${NEXUS_HOME}"
|
1
|
[root@MiWiFi-R1CM-srv nexus] # vim /usr/local/nexus/bin/jsw/linux-x86-64/../conf/wrapper.conf
|
1
|
wrapper.java. command =java
|
1
|
wrapper.java. command = /usr/jdk1 .7.0_67 /bin/java
|
1
|
[root@MiWiFi-R1CM-srv nexus] # chmod +x /etc/init.d/nexus
|
1
|
[root@MiWiFi-R1CM-srv nexus] # chkconfig --add nexus
|
1
|
[root@MiWiFi-R1CM-srv nexus] # service nexus start
|
1
2
|
[root@MiWiFi-R1CM-srv nexus] # ps -ef |grep nexus
root 12762 34939 0 10:08 pts /2 00:00:00 grep nexus
|
1
2
|
[root@MiWiFi-R1CM-srv nexus] # netstat -tlun |grep 7777
[root@MiWiFi-R1CM-srv nexus] #
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
wrapper | --> Wrapper Started as Daemon wrapper | Launching a JVM... wrapper | Unable to start JVM: No such file or directory (2)
wrapper | JVM exited while loading the application.
wrapper | Reloading Wrapper configuration... wrapper | Launching a JVM... wrapper | Unable to start JVM: No such file or directory (2)
wrapper | JVM exited while loading the application.
jvm 2 | wrapper | Unable to start JVM: No such file or directory (2)
wrapper | Reloading Wrapper configuration... wrapper | Launching a JVM... wrapper | Unable to start JVM: No such file or directory (2)
wrapper | JVM exited while loading the application.
jvm 3 | wrapper | Unable to start JVM: No such file or directory (2)
wrapper | Reloading Wrapper configuration... wrapper | Launching a JVM... wrapper | Unable to start JVM: No such file or directory (2)
wrapper | JVM exited while loading the application.
jvm 4 | wrapper | Unable to start JVM: No such file or directory (2)
wrapper | Reloading Wrapper configuration... wrapper | Launching a JVM... wrapper | Unable to start JVM: No such file or directory (2)
wrapper | JVM exited while loading the application.
jvm 5 | wrapper | Unable to start JVM: No such file or directory (2)
wrapper | There were 5 failed launches in a row, each lasting less than 300 seconds. Giving up.
wrapper | There may be a configuration problem: please check the logs. wrapper | <-- Wrapper Stopped |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
wrapper | --> Wrapper Started as Daemon wrapper | Launching a JVM... wrapper | Unable to start JVM: Permission denied (13) wrapper | JVM exited while loading the application.
wrapper | Reloading Wrapper configuration... wrapper | Launching a JVM... wrapper | Unable to start JVM: Permission denied (13) wrapper | JVM exited while loading the application.
jvm 2 | wrapper | Unable to start JVM: Permission denied (13) wrapper | Reloading Wrapper configuration... wrapper | Launching a JVM... wrapper | Unable to start JVM: Permission denied (13) wrapper | JVM exited while loading the application.
jvm 3 | wrapper | Unable to start JVM: Permission denied (13) wrapper | Reloading Wrapper configuration... wrapper | Launching a JVM... wrapper | Unable to start JVM: Permission denied (13) wrapper | JVM exited while loading the application.
jvm 4 | wrapper | Unable to start JVM: Permission denied (13) wrapper | Reloading Wrapper configuration... wrapper | Launching a JVM... wrapper | Unable to start JVM: Permission denied (13) wrapper | JVM exited while loading the application.
jvm 5 | wrapper | Unable to start JVM: Permission denied (13) wrapper | There were 5 failed launches in a row, each lasting less than 300 seconds. Giving up.
wrapper | There may be a configuration problem: please check the logs. wrapper | <-- Wrapper Stopped |
相关推荐
### Windows 下 Nexus 搭建 Maven 私服详解 #### 一、为什么使用 Nexus 在软件开发过程中,尤其是采用 Maven 构建管理的项目中,依赖管理是非常关键的一环。通常,开发人员需要从 Maven 中央仓库下载各种依赖库到...
Nexus 搭建 Maven 私服 + Maven 安装步骤 Nexus 是一个功能强大且灵活的仓库管理工具,能够帮助开发团队更好地管理项目依赖项和构件。通过搭建 Nexus 私服,可以实现项目依赖项的集中管理、加速项目构建和部署、...
使用Nexus搭建Maven私服 标题:使用Nexus搭建Maven私服 描述:关于使用Nexus搭建Maven私服的开发文档。 标签:Nexus 搭建Maven 在实际的企业开发中经常会遇到的问题:在进行Maven项目开发时,所需要的构件都是...
在本文中,我们将详细介绍如何在CentOS7操作系统上使用Nexus3搭建Maven私有仓库。首先,确保系统已经安装了Java Development Kit (JDK) 8和Maven3。安装这两个组件的具体步骤可以通过搜索引擎获取。 一、所需环境 ...
【Linux下利用nexus搭建maven私服】 在Linux环境下,Nexus是一款强大的仓库管理器,可以用来搭建Maven私有仓库。Nexus不仅可以作为一个中央仓库的代理,还支持创建自己的存储库,方便组织内部共享依赖,提高开发...
提供了基于Nexus搭建Maven私服所需要的一切资源和个人经验,搭建后可maven deploy 上传自己的jar包。别人如何在自己的maven项目中引用我将单独再上传一份。
接下来,我们开始搭建Maven私服。首先确保你的系统中已经安装了Java环境,因为Maven和Nexus都需要Java支持。然后,下载Nexus的zip文件,可以从Sonatype官方网站获取对应版本。解压下载的文件,将其放置在服务器的...
Linux 下搭建内网 Maven 私服 Maven 私服是 Maven 仓库的私有化版本,允许开发者在企业内部搭建私有的 Maven 仓库,用于存储和管理项目依赖项。在 Linux 环境下搭建内网 Maven 私服,可以提高项目的构建和部署效率...
"手动搭建maven私服-安装配置nexus 3.4教程" 手动搭建maven私服是指使用nexus 3.4安装配置一个maven私服,实现公司或个人项目的构件管理。下面将详细介绍手动搭建maven私服的过程。 一、安装nexus 3.4 首先下载...
接下来,我们来详细讲解如何搭建Maven私服并配置Nexus环境。 1. **安装Nexus** 下载Nexus的最新版本,如压缩包文件中的`nexus-latest-bundle.zip`。解压后,找到`bin`目录下的`nexus.exe`(Windows)或`nexus`...
### Nexus搭建Maven私服指导手册 #### 一、Nexus使用背景 在现代软件开发过程中,Maven作为构建工具在Java项目中占据了重要的地位。Maven通过定义项目的对象模型(POM),仅需一个简单的命令就能实现构建和依赖...
本教程将指导您在Linux环境下,利用Nexus 3.14和Maven 3.6.3快速搭建Maven私服。 首先,我们来看看所需的主要组件: 1. **Nexus 3.14**:这是Sonatype公司提供的开源仓库管理工具,它可以作为Maven私服,支持多种...
使用nexus 可以搭建maven私服,如何使用nexus搭建maven 本地服务器呢?
搭建 Maven 私服是软件开发过程中非常重要的一步,它能够帮助团队高效地管理和分发内部依赖,减少对外部中央仓库的依赖。Nexus 是 Sonatype 公司提供的一款开源工具,用于构建私有的 Maven 仓库。以下是使用 Nexus ...
本篇文章将详细介绍如何使用Nexus 3搭建Maven私服资源。 首先,我们来了解Nexus 3的核心功能。Nexus 3提供了以下关键特性: 1. **仓库管理**:支持Maven、npm、Gradle等多种格式的仓库,方便不同类型的项目管理。 ...
Maven Nexus 私服搭建 从零开始,资源下载、安装指导、开发配置说明