Centos7 搭建 maven 私服 nexus3
tar -xvf nexus-3.9.0-01-unix.tar.gz
移动文件夹:
mv nexus-3.9.0-01 /opt/soft/nexus-3.9
注意: 没有 soft 文件夹要创建
此步骤可执行可不执行(建议执行):\
创建软连接:
ln -s /opt/soft/nexus-3.9.0-01 /opt/shortcut/nexus
shortcut 目录要自己创建
优点:其他应用引用软连接,当软件版本更改时只需修改软连接即可
useradd -d "/home/nexus" -m -s "/sbin/nologin" nexus
chown -R nexus:nexus /opt/shortcut/nexus
chown -R nexus:nexus /opt/soft/sonatype-work
chown -R nexus:nexus /opt/soft/sonatype-work ?(nexus 的日志记录文件,不然启动不了)?
修改../etc/nexus-default.properties
配置文件:
修改nexus-default.properties
中的 port 和 host 属性,其中 hos
t 属性不能写127.0.0.1
和localhost
[这个我访问不了],最后写的是 DHCP(动态获取 ip 地址)时的 ip 地址
application-port=8081
application-host=172.17.139.88
启动和停止:
进入 bin 目录:
./nexus start //后台启动,不显示日志
./nexus run & //后台启动,显示日志
停止:
./nexus stop #或者直接杀死线程
上面在启动过程中出现告警:不推荐使用 root 用户启动。这个告警不影响 nexus 的正常访问和使用。
去掉上面 WARNING 的办法:
修改配置
?vi?/etc/profile
export RUN_AS_USER=root
使配置生效: source /etc/profile
这样就不报错了
[
启动成功
访问:
使用内置账号 admin ?admin123 登陆 ,就这么简单就可以使用了
使用 nexus3
nexus 的默认仓库:
下面介绍一下 Nexus 默认的仓库:
Central:??????? 代理中央仓库、策略为 Release、只会下载和缓存中央仓库中的发布版本构件。
Releases:??????? 策略为 Release 的宿主仓库、用来部署组织内部的发布版本内容。
Snapshots:????? 策略为 Snapshot 的宿主仓库、用来部署组织内部的快照版本内容。
创建一个阿里云的代理仓库:
阿里云仓库地址 : ?http://maven.aliyun.com/nexus/content/groups/public/
修改组信息
修改 maven-releases 仓库配置
deployment pollcy 有三个值:
?read-only: ?只读
?disable redeploy: 读和部署
?allow redeploy: 读, 部署, 删除
使用:
给大家分享一下我的配置,可能不太好但是能用:
maven ?setting.xml 配置:
<localRepository>E:\repository\本地仓库地址</localRepository>
<servers>
<server>
<id>nexus-releases</id>
<username>admin</username>
<password>admin123</password>
</server>
<server>
<id>nexus-snapshots</id>
<username>admin</username>
<password>admin123</password>
</server>
</servers>
<mirrors>
<mirror>
<id>nexus-releases</id>
<url>http://IP 地址/repository/maven-public/</url>
<mirrorOf>*</mirrorOf>
</mirror>
</mirrors>
pom.xml 配置:
评论