欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

CentOS Nexus 安装 博客分类: Linux nexus 

程序员文章站 2024-02-09 22:05:28
...
Nexu下载地址 http://www.sonatype.org/nexus/archived/
CentOS Nexus 安装
            
    
    博客分类: Linux nexus 

/usr/lcoal/nexus/init.sh

#!/bin/bash

if [ `grep -c nexus /etc/passwd` -eq 0 ];then
 useradd nexus;
 passwd nexus;
 echo "nexus create successfully!";
fi

chown -R nexus:nexus ../nexus;

rm -rf /etc/init.d/nexus;
cp -a nexus-2.12.0-01/bin/nexus /etc/init.d/;
chmod 755 /etc/init.d/nexus;

if [ `chkconfig --list nexus|wc -l` -eq 0 ];then
  cd /etc/init.d;
  chkconfig --add nexus;
  chkconfig --level 345 nexus on;
fi


service nexus start|stop

/sbin/iptables -I INPUT -p tcp --dport 8081 -j ACCEPT
/etc/rc.d/init.d/iptables save

/etc/rc.d/init.d/iptables restart|status\stop

http://192.168.x.x:8081/nexu/
admin  admin123
登录就可以
  • CentOS Nexus 安装
            
    
    博客分类: Linux nexus 
  • 大小: 121.2 KB
相关标签: nexus