1. 程式人生 > >Linux nexus 私服搭建

Linux nexus 私服搭建

sysconf default 防火墻 pre prope .so zxvf def har

  • 下載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 私服搭建