生活随笔
收集整理的這篇文章主要介紹了
CentOS 安装 Nexus 3
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
官方鏈接:
download-archives—repository-manager-3
SystemRequirements-Linux目錄:/home/jdk1.8.0_271
/home/nexus-3.30.0-01
/home/sonatype-work
配置文件:cat /home/nexus-3.30.0-01/etc/nexus-default.properties
## DO NOT EDIT - CUSTOMIZATIONS BELONG IN $data-dir/etc/nexus.properties
##
# Jetty section
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=/# Nexus section
nexus-edition=nexus-pro-edition
nexus-features=\nexus-pro-featurenexus.hazelcast.discovery.isEnabled=true
開放端口:firewall-cmd --zone=public --add-port=8081/tcp --permanent
firewall-cmd --reload
firewall-cmd --list-all
添加用戶:adduser nexus
passwd nexus
將Nexus目錄授權給 nexus 用戶chown -R nexus /home/jdk1.8.0_271
chown -R nexus /home/nexus-3.30.0-01
chown -R nexus /home/sonatype-work
編寫啟動腳本:vi /usr/lib/systemd/system/nexus.service
[Unit]
Description=nexus
After=network.target[Service]
Type=forking
ExecStart=/home/nexus-3.30.0-01/bin/nexus start
ExecStop=/home/nexus-3.30.0-01/bin/nexus stop
User=nexus
Restart=on-abort[Install]
WantedBy=multi-user.target
設置nexus的JAVA_HOME:vi /home/nexus-3.30.0-01/bin/nexus
INSTALL4J_JAVA_HOME="/home/jdk1.8.0_271"
啟動:systemctl start nexus
默認密碼:
cat /home/sonatype-work/nexus3/admin.password
狀態systemctl status nexus
停止:systemctl stop nexus
重啟:systemctl restart nexus
開啟開機啟動:systemctl enable nexus
查看開機啟動:systemctl list-unit-files | grep nexus
關閉開機啟動:systemctl disable nexus
總結
以上是生活随笔為你收集整理的CentOS 安装 Nexus 3的全部內容,希望文章能夠幫你解決所遇到的問題。
如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。