https://www.sonatype.com/download-oss-sonatype
tar -zxvf nexus-3.14.0-04-unix.tar.gz -C /usr/local/
useradd admin admingroup
并将指定其所需要的目录所有权
chown -R 用户:用户组 /usr/
vim /usr/local/nexus-3.14.0-04/etc/nexus-default.properties
修改对应的端口
修改防火墙
vim /etc/sysconfig/iptables
-A INPUT -m state --state NEW -m tcp -p tcp --dport 端口 -j ACCEPT
重启防火墙service iptables start
启动nexus:./nexus start
http://192.168.56.102:端口/
账号admin
密码 admin123
System Requirement: max file descriptors [4096] likely too low, increase to at least [65536].
vim /etc/security/limits.conf
新增
* soft nofile 65535
* hard nofile 65535
su - 用户 -c ‘/usr/local/nexus-3.14.0-04/bin/nexus start‘
注意在CentOS 7 系统中,修改防火墙和开启启动有所差异。
原文地址:http://blog.51cto.com/3265857/2347237
时间: 2024-10-09 23:43:05