zoukankan      html  css  js  c++  java
  • nexus私服安装

    一、搭建nexus私服。当前服务器版本是jdk1.8    。

    nexus安装包下载:http://www.sonatype.org/nexus/archived

    先是下载目前最新的版本

    Nexus 2.11.1-01 2014-12-22
     

    有提供zip和tar.gz格式,随便下哪种都可以。

    二、解压之后会有两个文件夹,nexus-2.11.1-01和sonatype-work,我们进入第一个文件夹的bin目录来启动nexus 。

    1、进入启动目录,启动

    cd /home/nexus/nexus/bin
    ./nexus start

    2、这时候提示:

    ****************************************
    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.

    大概意思就是要在环境配置export RUN_AS_USER=root,临时配置

    在命令行下输入:

    export RUN_AS_USER=root

    然后执行,就不会再提示了
    ./nexus start

    3、也可以在系统里面永久配置

    vi /etc/profile  加入export RUN_AS_USER=root

  • 相关阅读:
    3.18日
    线程的面试题
    关于instanceof测试遇到的问题
    spring
    自动登录代码
    Filter
    多态
    基于HTML,css,jQuery,JavaScript,MySQL搭建博客系统
    基于bootstrap+MySQL搭建动态网站
    基于bootstrap_网站汇总页面
  • 原文地址:https://www.cnblogs.com/chengJAVA/p/4797372.html
Copyright © 2011-2022 走看看