码迷,mamicode.com
首页 > 系统相关 > 详细

Linux nexus 私服搭建

时间:2019-01-28 17:40:56      阅读:284      评论:0      收藏:0      [点我收藏+]

标签:ike   https   des   useradd   state   ice   inpu   火墙   启动   

  • 下载nexus
    https://www.sonatype.com/download-oss-sonatype
  • 上传到服务器/opt/
  • 解压
    tar -zxvf nexus-3.14.0-04-unix.tar.gz -C /usr/local/
  • 因为nexus启动不建议使用root账户,且root账户权限过于太大,所以,创建用户
    useradd admin admingroup
    并将指定其所需要的目录所有权
    chown -R 用户:用户组 /usr/
  • 修改配置文件
    vim /usr/local/nexus-3.14.0-04/etc/nexus-default.properties
    修改对应的端口
    修改防火墙
    vim /etc/sysconfig/iptables
    -A INPUT -m state --state NEW -m tcp -p tcp --dport 端口 -j ACCEPT
    重启防火墙service iptables start
  • 浏览器打开并登陆
    启动nexus:./nexus start
    http://192.168.56.102:端口/
    账号admin
    密码 admin123
    System Requirement: max file descriptors [4096] likely too low, increase to at least [65536].
  • 修改ulimit
    vim /etc/security/limits.conf
    新增
    * soft nofile 65535
    * hard nofile 65535
  • 配置开机自启动 vi /etc/rc.d/rc.local
    su - 用户 -c ‘/usr/local/nexus-3.14.0-04/bin/nexus start‘
  • 注意在CentOS 7 系统中,修改防火墙和开启启动有所差异。

    Linux nexus 私服搭建

    标签:ike   https   des   useradd   state   ice   inpu   火墙   启动   

    原文地址:http://blog.51cto.com/3265857/2347237

    (0)
    (0)
       
    举报
    评论 一句话评论(0
    登录后才能评论!
    © 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
    迷上了代码!