centos7.4下载、安装与使用nexus3
下载
链接地址:https://help.sonatype.com/repomanager3/download/download-archives—repository-manager-3
百度盘地址(3.18.1):
链接:https://pan.baidu.com/s/1-2Xr7MLQ2ifW7LJYZY0ZDA
提取码:g1gk
安装
新建目录/usr/local/nexus
在nexus目录下解压 tar -zxvf nexus-3.18.1-01-unix.tar.gz
解压后,会有两个文件夹nexus-3.18.1-01和sonatype-work
- nexus开头的文件夹,主要是包含功能实现,配置和相关命令
- sonatype-work文件主要是nexus运行中的一些数据存储和日志信息等
配置
修改/usr/local/nexus/nexus3/bin目录下的nexus文件 vim bin/nexus
找到run_as_root=true => run_as_root=false
nexus启动相关配置信息在/usr/local/nexus/nexus3/etc文件下的nexus-default.properties文件中
application-port=8081 application-host=0.0.0.0 nexus-args=${jetty.etc}/jetty.xml,${jetty.etc}/jetty-http.xml,${jetty.etc}/jetty-requestlog.xml nexus-context-path=/ 可以修改默认的启动端口
配置防火墙端口
1.firewall-cmd --permanent --zone=public --add-port=8081/tcp --permanent 2.firewall-cmd --reload
nexus常用命令
/usr/local/nexus/nexus3/bin/nexus {start|stop|run|run-redirect|status|restart|force-reload} 如: //启动 nexus start //停止 nexus stop //重启 nexus restart //查看状态 nexus status
自定义配置
如果Linux硬件配置比较低的话,建议修改为合适的大小,否则会出现运行崩溃的现象 # vi /usr/local/nexus/nexus3/bin/nexus.vmoptions //虚拟机选项配置文件,可以修改数据、日志存储位置,默认是2G
启动
-
进入解压后的文件nexus中,输入命令:./bin/nexus start
-
可在/usr/local/nexus/sonatype-work/nexus3/log/nexus.log 查看日志
-
浏览器访问http://ip:8081/
-
首次登录,获取admin密码
cat /usr/local/nexus/sonatype-work/nexus3/admin.password