天天看點

linux 搭建 nexus maven私服倉儲

一、下載下傳

  1.建立下載下傳軟體包目錄

   mkdir /home/install

  2.在/home/install下載下傳nexus包,或者将下載下傳好的nexus壓縮包上傳至/home/install

  wget https://sonatype-download.global.ssl.fastly.net/repository/repositoryManager/3/nexus-3.14.0-04-unix.tar.gz

  

二、解壓安裝

  1.建立安裝目錄

  mkdir /usr/local/nexus

  2.解壓至/usr/local/nexus

  tar -zxvf nexus-3.14.0-04-unix.tar.gz -C /usr/local/nexus/

三、檢視相關指令和更改所屬使用者

  1.進入bin目錄,檢視nexus指令

    cd /usr/local/nexus/nexus-3.14.0-04/bin

  ll

  ./nexus

linux 搭建 nexus maven私服倉儲

  2.更改所屬使用者

  因為nexus不建議使用所屬使用者root啟動,是以這裡添加一個nexus使用者,将權限所屬使用者改為nexus

  useradd nexus

   chown nexus:nexus -R /usr/local/nexus/nexus-3.14.0-04/

   

linux 搭建 nexus maven私服倉儲

三、啟動

  1.切換使用者

  su - nexus

  2.啟動

  /usr/local/nexus/nexus-3.14.0-04/bin/nexus start

  3.停止

  /usr/local/nexus/nexus-3.14.0-04/bin/nexus stop

  4.重新開機

  /usr/local/nexus/nexus-3.14.0-04/bin/nexus restart

  5.開機啟動

  cp nexus /etc/init.d/

   chkconfig --add nexus

   chkconfig nexus on

  6.連結位址

  http://ip:8081

linux 搭建 nexus maven私服倉儲