美文网首页
Centos 7 开发环境搭建之Maven私服nexus

Centos 7 开发环境搭建之Maven私服nexus

作者: iwuyou | 来源:发表于2017-04-01 15:47 被阅读161次

    下载Nexus

    下载地址:https://www.sonatype.com/download-oss-sonatype
    默认管理员用户名密码:admin/admin123
    文档下载地址:http://books.sonatype.com/nexus-book/pdf/nxbook-pdf.pdf

    安装Nexus

    新建目录:mkdir /home/nexus
    解压安装包:tar -zxvf /home/ckl/upload/nexus-2.14.3-02-bundle.tar.gz -C /home/nexus
    建立软链接:ln -s nexus-2.14.3-02 nexus
    设置环境变量:vim /etc/profile
    添加:export NEXUS_HOME=/home/nexus/nexus-2.14.3-02
    使用root运行:export RUN_AS_USER=root
    刷新环境变量:source /etc/profile
    启动服务:service nexus start
    访问服务器:http://ipaddress:8081/nexus

    相关文章

      网友评论

          本文标题:Centos 7 开发环境搭建之Maven私服nexus

          本文链接:https://www.haomeiwen.com/subject/rfpiottx.html