Nexus 搭建

1 解压

tar -zxvf nexus-3.19.1-01-unix.tar.gz

2 启动

cd /usr/local/nexus-3.19.1-01/bin
./nexus  start

在这里插入图片描述

3 删除刚才的进程

Nexus 搭建_第1张图片

4 新建账户

useradd  nexus
chown -R nexus:nexus  /usr/local/nexus-3.19.1-01/

5 切换用户

su nexus
cd /usr/local/nexus-3.19.1-01/bin
#启动
./nexus start
#查看是否启动
ps aux | grep nexus

Nexus 搭建_第2张图片

6 查看日志

#命令
./nexus run

Nexus 搭建_第3张图片

7 授权启动

#切换root
su root
#root用户
chown -R nexus:nexus /usr/local/sonatype-work/
#切换
su nexus
#启动
cd /usr/local/nexus-3.19.1-01/bin
#启动
nohup ./nexus run >nexus.log 2>&1   &

8 访问

http://192.168.38.45:8081/

Nexus 搭建_第4张图片

9 设置密码

#查看默认密码,用默认密码登录会提示设置新的密码,我设置123456
cd /usr/local/sonatype-work/nexus3

在这里插入图片描述

10 登录成功

Nexus 搭建_第5张图片

11 修改limit

#root 用户 
su root
#新增
vim /etc/security/limits.conf
* hard nofile 65536
* soft nofile 65536

12 重启

#nexus 用户
su nexus
#启动
cd /usr/local/nexus-3.19.1-01/bin
nohup ./nexus restart >nexus.log 2>&1   &

Nexus 搭建_第6张图片

你可能感兴趣的:(DevOps,nexus,maven私服)