ubuntu安装maven仓库nexus

  简述一下在ubuntu下面安装nexus的步骤(这里默认已经安装好了JDK,JDK的安装可以参考的我另一篇文章ubuntu安装和卸载jdk):

1. 下载nexus   下载最新版nexus(到目前为止最新版为nexus-2.7.0-05,下载地址http://www.sonatype.org/nexus/go,得到nexus-latest-bundle.tar.gz

2. 下载完成后将nexus-latest-bundle.tar.gz拷贝到/usr/local/目录下,并进入/usr/local目录

sudo cp nexus-latest-bundle.tar.gz /usr/local/
cd /usr/local


3. 解压nexus-latest-bundle.tar.gz,得到nexus-2.7.0-05和sonatype-work,并做一个软链接

tar -zxvf nexus-latest-bundle.tar.gz
ln -s nexus-2.7.0-04 nexus2

4.运行nexus

使用root用户启动需要配置环境变量:export RUN_AS_USER=root

cd nexus2  
./bin/nexus start


如果运气好会运行成功,这里之所以说运气,是因为各种原因会造成运行失败,如果成功会看到如下显示信息:

  1. Starting Nexus OSS....  

  2. Started Nexus OSS  

如果失败会看到:

  1. Starting Nexus OSS...  

  2. Failed to start Nexus OSS.  

引起失败的原因可能是权限问题:nexus所在的安装目录属于私有权限,它的拥有者是root用户,这时需要将nexus所在的目录分配给当前用户(Nexus不建议用root权限启动运行nexus),这里的授权就自己去看chown命令的用法了;

如果安装成功但在浏览器中访问不了(访问默认地 址:http://localhost:8081/nexus),通过查看wrapper.log日志可能会看到“Unable to start java JVM:No such file or directory",此时需要将wrapper.conf文件里面的wapper.java.command=java修改成 wapper.java.command=%JAVA_HOME%/bin/java(就是安装jdk所在的文件路径);

此外还有各种异常出现,这里就不再罗列,大家遇到就自己上网google吧。

下面说下我在安装后启动时遇到的问题:

1. Unable to start java JVM:No such file or directory,解决方法,修改wapper.conf配置文件里面的wapper.java.command。我开始修改成 wapper.java.command={JAVA_HOME}/bin/java,但根本不起作用,看网上很我资料也说是改成那样,最后无意中看到一 篇文章(具体是哪篇忘记了)说是改wapper.java.command=%JAVA_HOME%/bin/java,要用%%而不是用{}。
2.还有一个问题就是启动时报如下异常

  1. /usr/local/nexus$ ./bin/nexus console  

  2. Running Nexus OSS...  

  3. wrapper  | --> Wrapper Started as Console  

  4. wrapper  | Launching a JVM...  

  5. jvm 1    | Wrapper (Version 3.2.3) http://wrapper.tanukisoftware.org  

  6. jvm 1    |   Copyright 1999-2006 Tanuki Software, Inc.  All Rights Reserved.  

  7. jvm 1    |   

  8. jvm 1    | 2013-12-31 20:07:56 INFO  [WrapperListener_start_runner] - org.sonatype.nexus.bootstrap.jsw.JswLauncher - Starting with arguments: [./conf/jetty.xml]  

  9. jvm 1    | 2013-12-31 20:07:56 INFO  [WrapperListener_start_runner] - org.sonatype.nexus.bootstrap.jsw.JswLauncher - JVM ID: 1, JVM PID: 2594, Wrapper PID: 2592, User: linming  

  10. jvm 1    | 2013-12-31 20:07:56 INFO  [WrapperListener_start_runner] - org.sonatype.nexus.bootstrap.jsw.JswLauncher - Current directory: /usr/local/nexus-2.7.0-05  

  11. jvm 1    | 2013-12-31 20:07:57 INFO  [WrapperListener_start_runner] - org.sonatype.nexus.bootstrap.jsw.JswLauncher - Temp directory: /usr/local/sonatype-work/nexus/tmp  

  12. jvm 1    | 2013-12-31 20:07:57 ERROR [WrapperListener_start_runner] - org.sonatype.nexus.bootstrap.jsw.JswLauncher - Failed to start  

  13. jvm 1    | java.nio.file.AccessDeniedException: /usr/local/sonatype-work/nexus/tmp  

  14. jvm 1    |  at sun.nio.fs.UnixException.translateToIOException(UnixException.java:84) ~[na:1.7.0_07]  

  15. jvm 1    |  at sun.nio.fs.UnixException.rethrowAsIOException(UnixException.java:102) ~[na:1.7.0_07]  

  16. jvm 1    |  at sun.nio.fs.UnixException.rethrowAsIOException(UnixException.java:107) ~[na:1.7.0_07]  

  17. jvm 1    |  at sun.nio.fs.UnixFileSystemProvider.createDirectory(UnixFileSystemProvider.java:382) ~[na:1.7.0_07]  

  18. jvm 1    |  at java.nio.file.Files.createDirectory(Files.java:628) ~[na:1.7.0_07]  

  19. jvm 1    |  at java.nio.file.Files.createAndCheckIsDirectory(Files.java:732) ~[na:1.7.0_07]  

  20. jvm 1    |  at java.nio.file.Files.createDirectories(Files.java:718) ~[na:1.7.0_07]  

  21. jvm 1    |  at org.sonatype.nexus.bootstrap.Launcher.ensureTmpDirSanity(Launcher.java:247) ~[nexus-bootstrap-2.7.0-05.jar:2.7.0-05]  

  22. jvm 1    |  at org.sonatype.nexus.bootstrap.Launcher.start(Launcher.java:95) ~[nexus-bootstrap-2.7.0-05.jar:2.7.0-05]  

解决方法:

sudo chmod -R 777 sonatype-work/nexus

在浏览器中访问:localhost:8081/nexus,OK,能成功访问,输入用户名与密码(默认的admin、admin123)就可以管理自己的maven本地仓库了


在nexus管理界面需要进行设置:

1.将proxy类型的仓库进行设置将downloadIndex选项设置为true。

2.将proxy类型的仓库归类到public组

3.对public组进行repaire Index。



你可能感兴趣的:(ubuntu安装maven仓库nexus)