系统环境: 全新安装的CentOS-5.5 32bit
安装软件: Nexus (Maven 仓库管理器)
1. 获得root权限
[ferrari@localhost ~]$ su -
2. 下载nexus集成版
[root@localhost ~]# cd /usr/local
[root@localhost local]# wget
3. 解压缩
[root@localhost local]# unzip nexus-oss-webapp-1.6.0-bundle.zip
[root@localhost local]# rm -rf nexus-oss-webapp-1.6.0-bundle.zip
[root@localhost local]# ln -s nexus-oss-webapp-1.6.0 nexus
4. 设置为系统服务
[root@localhost local]# cd /etc/init.d
[root@localhost init.d]# cp /usr/local/nexus/bin/jsw/linux-x86-32/nexus ./nexus
[root@localhost init.d]# chmod 755 nexus
[root@localhost init.d]# chkconfig –add nexus
[root@localhost init.d]# chkconfig –levels 345 nexus on
5. 编辑/etc/init.d/nexus的文本
5.1. 添加以下变量
NEXUS_HOME=/usr/local/nexus
PLATFORM=linux-x86-32
PLATFORM_DIR=”${NEXUS_HOME}/bin/jsw/${PLATFORM}”
5.2. 修改以下变量
WRAPPER_CMD=”${PLATFORM_DIR}/wrapper”
WRAPPER_CONF=”${PLATFORM_DIR}/../conf/wrapper.conf”
PIDDIR=”${NEXUS_HOME}”
6. 启动服务
[root@localhost init.d]# service nexus start
7. 处理SELinux警告
7.1. 启动之后,会受到一个SELinux警告:
SELinux is preventing java from loading
/usr/local/nexus-oss-webapp-1.6.0/bin/jsw/linux-x86-32/lib/libwrapper.so
which requires text relocation.
7.2. 按照其中提示运行以下命令:
[root@localhost init.d]# chcon -t textrel_shlib_t ‘/usr/local/nexus-oss-webapp-1.6.0/bin/jsw/linux-x86-32/lib/libwrapper.so’
8. 启动之后,打开以下网址可以看到Nexus网页界面。
默认管理员用户名/密码: admin/admin123
9. 在防火墙设置中添加8081端口的TCP协议,局域网内其他机器也可以访问该网页界面。