#2.解壓
tar -zxvf nexus-3.15.2-01-unix.tar.gz -c /usr/local/
#3.預設埠8081(不進行修改),若需要修改預設使用埠
vim /usr/local/nexus-3.15.2-01/etc/nexus-default.properties
#4.開放8081埠
firewall-cmd --permanent --add-port=8081/tcp
#5.啟動nexus
/usr/local/nexus-3.15.2-01/bin/nexus start &
此時會出現,警告: detected execution as "root" user. this is not recommended!
因此我們需要建立新使用者去啟動
#6.新增使用者
useradd nexus
#7.為新使用者修改密碼
passwd nexus
#8.修改從壓縮包解壓出來的兩個資料夾的所屬使用者和使用者組
chown -r nexus:nexus /usr/local/nexus-3.15.2-01/
chown -r nexus:nexus /usr/local/sonatype-work/
#9.重新嘗試啟動,需要等待一段時間
/usr/local/nexus-3.15.2-01/bin/nexus start &
#10.訪問並登入
預設賬號:admin 密碼:admin123
#11.首頁上可能會出現警告:system requirement: max file descriptors [4096] likely too low, increase to at least [65536]
解決:vim /etc/security/limits.conf
新增內容: * soft nofile 65536
* hard nofile 65536
#12.將nexus可執行程式新增進環境變數
vim /etc/profile
新增內容:
nexus_home=/usr/local/nexus-3.15.2-01/bin
export nexus_home
path=$path:$nexus_home
export path
#13.生效:source /etc/profile
#14.設定nexus開機自啟動
vim /etc/rc.d/rc.local
新增內容
su - nexus -c 'nexus start &'
#15.給rc.local檔案新增可執行許可權
chmod +x /etc/rc.d/rc.local
#16.重啟
reboot
#17.檢視是否已經自啟動
centos7環境下安裝MySQL
安裝mysql官方的yum repository wget i cyum y install mysql57 community release el7 10.noarch.rpm安裝mysql服務 yum y install mysql community server啟動mysql服務 syst...
Centos7環境下安裝gitlab
1.安裝依賴 yum install curl openssh server openssh clients postfix cronie y 2.開啟postfix systemctl start postfix 3.設定postfix開機自啟動 systemctl enable postfix....
Centos7環境下安裝curl
curl是利用url語法在命令列方式下工作的開源檔案傳輸工具。它被廣泛應用在unix 多種linux發行版中,並且有dos和win32 win64下的移植版本。官網文件 wget2.解壓到當前目錄 tar zxf curl 7.54.0.tar.gz3.進入解壓後的目錄內 cd curl 7.54....