环境与工具:
虚拟机:VMware 12 Pro
操作系统:CentOS6.8
nexus版本:nexus-professional-2.12.0-01
操作Linux的工具:Xshell 5
注:Nexus服务器运行时需要JDK的支持,可参考以下链接进行配置:
Linux下配置JDK及环境变量
1.Nexus官网下载安装包(选择后缀为*.tar.gz的文件):
Nexus下载地址:https://help.sonatype.com/repomanager2/download/download-archives---repository-manager-2
2.利用工具Xshell 5连接到Linux系统,并把Nexus安装包上传到/usr/local/java/nexus目录下:
创建多级目录:mkdir -p /usr/local/java/nexus
切换到nexus目录下: cd /usr/local/java/nexus
上传Nexus安装包: rz (如没有该命令,先安装:yum install lrzsz)
3.解压Nexus安装包(解压后会有两个文件夹:nexus-professional-2.12.0-01与sonatype-work):
tar -zxvf nexus-professional-2.12.0-01-bundle.tar.gz (如没有该命令,先安装:yum -y install tar)
4.重命名为nexus-2.12.0:
mv nexus-professional-2.12.0-01 nexus-2.12.0
5.修改nexus.properties配置文件,把默认端口8081修改为8090,最后按ESC退出编辑,输入:wq保存退出:
vim nexus-2.12.0/conf/nexus.properties
6.修改nexus文件,配置用户RUN_AS_USER=root,否则启动会报错(If you insist running as root, then set the environment variable)。修改后按ESC退出编辑,输入:wq保存退出:
vim /usr/local/java/nexus/nexus-2.12.0/bin/nexus
7.修改wrapper.conf文件,配置java环境路径,否则启动报错(Unable to start JVM: No such file or directory)。修改后按ESC退出编辑,输入:wq保存退出:
vim /usr/local/java/nexus/nexus-2.12.0/bin/jsw/conf/wrapper.conf
8.关闭防火墙,否则外部windows客户端访问不了:
chkconfig iptables off
8.启动Nexus:
/usr/local/java/nexus/nexus-2.12.0/bin/nexus start
9.查看Nexus服务是否启动成功:
ps -ef|grep nexus
出现以下内容,则说明启动成功:
10.外部windows客户端浏览器访问http://xxx.xxx.xxx.xxx:8090/nexus
默认登录用户amdin,密码amdin123
至此,Nexus安装完成!
————————————————
版权声明:本文为CSDN博主「Rodge1221」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/Rodge_Rom/article/details/83721809