Nexus 安装(Linux 环境)

一、环境准备


安装 JDK 1.7



二、下载 Nexus 压缩文件


下载地址:http://www.sonatype.org/nexus/archived/


Nexus 安装(Linux 环境)_第1张图片





三、上传压缩文件


Nexus 安装(Linux 环境)_第2张图片



四、解压缩文件


Nexus 安装(Linux 环境)_第3张图片



五、配置环境变量


1、临时配置


命令:export RUN_AS_USER=root



2、永久配置


命令:vi /etc/profile  


export RUN_AS_USER=root





六、配置文件生效


命令:source /etc/profile





七、启动 Nexus 服务


命令:cd /usr/local/nexus-2.5.1-01/bin


命令:./nexus start


Nexus 安装(Linux 环境)_第4张图片



八、修改 Nexus 配置


命令:cd /usr/local/nexus-2.5.1-01/conf/

命令:vim nexus.properties




#UI 访问端口号
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



九、监控 Nexus 日志


命令:cd /usr/local/nexus-2.5.1-01/logs/

命令:tail -f wrapper.log





十、开启端口(配置文件: application-port)


命令:firewall-cmd --zone=public --add-port=8081/tcp --permanent



十一、重启端口


命令:firewall-cmd --reload



十二、测试


访问地址:http://192.168.206.153:8081/nexus


Nexus 安装(Linux 环境)_第5张图片




你可能感兴趣的:(Maven)