一、准备
Nexus版本:nexus-2.10.0-02-bundle.zip,请自行到官网http://www.sonatype.org/nexus/go下载
Maven安装:请参考<<Windows下Maven安装以及配置>>文章安装Maven
Windows8操作系统
二、安装步骤
♦下载nexus-2.10.0-02-bundle.zip,并解压文件,如图:
♦配置环境变量
我的电脑->右键->属性->高级系统设置->环境变量,将E:\nexus-2.10.0-02-bundle\nexus-2.10.0-02\bin添加到环境变量
♦进入控制台(cmd),注意要以管理员的身份运行;使用nexus intsall将nexus安装到windows服务中
♦安装成功后,去windows控制台检查一下,是否存在了nexus的服务
♦启动nexus服务,可以在控制台(cmd)使用nexus start命令也可以直接在控制面板那里启动
如图:启动成功。
♦nexus默认服务的端口号是8081,使用http://localhost:8081/nexus直接访问,默认用户名/密码:admin/admin123
三、总结
在安装启动的过程中可能会遇到如下错误:
♦解压nexus压缩包,配置好path环境变量后,在控制台(cmd)下执行nexus install命令安装nexus服务的时候报错: wrapper | OpenSCManager failed – 拒绝访问。 (0x5)
那么你很可能是以普通用户去运行的,权限不够,要以管理员的身份去运行。
♦在控制台(cmd)下执行nexus start命令的时候报错:
C:\Users\system32>nexus start
wrapper | Starting the nexus service ...
wrapper | The nexus service was launched, but failed to start
这时候,您要去nexus的解压目录 E:\nexus-2.10.0-02-bundle\nexus-2.10.0-02\bin\jsw\conf下,找到wrapper.conf文件,修改以下地方:
# Set the JVM executable
# (modify this to absolute path if you need a Java that is not on the OS path)
wrapper.java.command=C:\Java\jdk1.7.0_79\bin\java
C:\Java\jdk1.7.0_79\bin\java为您安装Java的目录
至此,Windows下Maven私服的安装步骤结束。
博客地址:http://www.marsitman.com/maven/window_install_primaven.html
版权声明:本文为博主原创文章,允许转载,但转载必须标明出处。