1、Nexux下载地址:
https://sonatype-download.global.ssl.fastly.net/nexus/oss/nexus-latest-bundle.tar.gz(打不开链接需翻墙,推荐一个http://www.suidao.in 邀请码 zBrCP0),我这边下载的是nexus-2.11.2-06-bundle.tar.gz这个版本,已保存至百度网盘(http://pan.baidu.com/s/1i3eRUAT)
2、解压
tar -xzvf nexus-2.0.3-bundle.tar.gz , 我这边放在/opt/nexus目录下。
/opt/nexus-
|--nexus-2.11.2-06
|--sonatype-work
3、配置
/opt/nexus/nexus-2.11.2-06/conf/nexus.properties
application-port=8081
application-host=0.0.0.0
nexus-webapp=${bundleBasedir}/nexus
nexus-webapp-context-path=/nexus
# Nexus section
nexus-work=${bundleBasedir}/../sonatype-work/nexus
runtime=${bundleBasedir}/nexus/WEB-INF
4、
设置为系统服务
# uname -m --查看显示主机的硬件
# x86_64
# cd /etc/init.d
# cp /opt/nexus/nexus-2.11.2-06/bin/jsw/linux-x86-64/nexus ./nexus
# chmod 755 nexus
# chkconfig --add nexus
# chkconfig --levels 345 nexus on
5、
编辑/etc/init.d/nexus
5.1. 添加以下变量
PLATFORM="linux-x86-64"
5.2. 修改以下变量
RUN_AS_USER=root ##使用root用户启动服务
NEXUS_HOME="/opt/nexus/nexus-2.11.2-06"
WRAPPER_CMD="${NEXUS_HOME}/bin/jsw/${PLATFORM}/wrapper"
WRAPPER_CONF="${NEXUS_HOME}/bin/jsw/conf/wrapper.conf"
PIDDIR="${NEXUS_HOME}/bin"
6、启动
service nexus start