当前位置:   article > 正文

Nexus安装和使用_nexussetup

nexussetup

1、前言

最近项目需要搭建maven私服,方便管理后期团队成员使用上传自己的包,因此决定使用nexus来搭建私服,搭建好的nexus地址

2、准备工作

阿里云服务器ECS一台 1核CPU 2G内存(注意:最低为2G,否则运行报错)

clipboard.png

3、开始安装

3.1 安装java

java的安装网上的文章好多,不过我是自己写的shell文件安装的,如下:

  1. #!/bin/bash
  2. # jdk install
  3. # 请将下载的jdk-xxx-linux-xxx.tar.gz包与此脚本放置到同一目录
  4. # 授予此脚本可执行权限(chmod +x install_jdk.sh)
  5. # 在终端执行此脚本开始安装(./文件名)
  6. # 注意:不可有多个版本的jdk包!
  7. # 为了使配置的环境变量生效,安装完成后你应该重新登陆。
  8. jvmpath=/usr/local/java
  9. # 不存在
  10. if [ ! -d "$jvmpath" ]; then
  11. echo "正在创建$jvmpath目录"
  12. sudo mkdir $jvmpath
  13. echo "目录$jvmpath创建成功"
  14. fi
  15. jdkfile=$(ls | grep jdk-*-linux-*.gz)
  16. jdkdirname="jdk1.8.0_201"
  17. if [ ! -f "$jdkfile" ]; then
  18. echo "正在下载jdk请稍等..."
  19. wget --no-cookies --no-check-certificate --header "Cookie: oraclelicense=accept-securebackup-cookie" "https://download.oracle.com/otn-pub/java/jdk/8u201-b09/42970487e3af4f5aa5bca3f542482c60/jdk-8u201-linux-x64.tar.gz"
  20. fi
  21. jdkfile=$(ls | grep jdk-*-linux-*.gz)
  22. if [ -f "$jdkfile" ]; then
  23. sudo tar -zxvf $jdkfile -C /usr/local/java/
  24. echo "安装JDK成功"
  25. echo "配置环境变量"
  26. mv ~/.bashrc ~/.bashrc.backup.java
  27. cat ~/.bashrc.backup.java >> ~/.bashrc
  28. echo "PATH=\"$PATH:$jvmpath/$jdkdirname/bin\"" >> ~/.bashrc
  29. echo "JAVA_HOME=$jvmpath/$jdkdirname" >> ~/.bashrc
  30. echo "CLASSPATH=.:%JAVA_HOME%/lib/dt.jar:%JAVA_HOME%/lib/tools.jar" >> ~/.bashrc
  31. source ~/.bashrc
  32. echo "配置环境成功"
  33. echo "测试是否安装成功"
  34. java -version
  35. echo "安装成功"
  36. fi

执行该shell文件,如下所示:

clipboard.png

3.2 安装maven

maven安装我也是自己写的shell文件,如果你们不想用我的可以到网上找文章看看吧,下面是我的shell文件:

  1. #!/bin/bash
  2. # maven install
  3. mvnpath=/usr/local/maven
  4. # 不存在
  5. if [ ! -d "$mvnpath" ]; then
  6. echo "正在创建$mvnpath目录"
  7. sudo mkdir $mvnpath
  8. echo "目录$mvnpath创建成功"
  9. fi
  10. #apache-maven-3.6
  11. echo "正在下载maven安装包,请稍等..."
  12. wget --no-cookies --no-check-certificate --header "Cookie: oraclelicense=accept-securebackup-cookie" "http://211.162.31.136/files/71480000031E20AE/mirrors.hust.edu.cn/apache/maven/maven-3/3.6.0/binaries/apache-maven-3.6.0-bin.tar.gz"
  13. mvnfile=$(ls | grep apache*maven-*.gz)
  14. if [ -f "$mvnfile" ]; then
  15. #这个名字其实就是mvn .tar.gz解压之后的文件夹的名字
  16. mvndirname="apache-maven-3.6.0"
  17. #不能加 用'zxvf' 加了 z 就创建了包里面的apace* 文件夹,而我们只要把apace*文件夹下的文件全部解压到 mvnpath里面就好
  18. tar zxvf $mvnfile -C $mvnpath
  19. echo "安装maven成功"
  20. echo "配置环境变量"
  21. mv ~/.bashrc ~/.bashrc.backup.mvn
  22. cat ~/.bashrc.backup.mvn >> ~/.bashrc
  23. echo "PATH=\"$PATH:$mvnpath/$mvndirname/bin\"" >> ~/.bashrc
  24. echo "MAVEN_HOME=$mvnpath/$mvndirname" >> ~/.bashrc
  25. source ~/.bashrc
  26. echo "配置环境成功"
  27. echo "测试是否安装成功"
  28. mvn -v
  29. echo "安装成功"
  30. else
  31. echo "没有找到maven文件"
  32. fi

执行该shell文件,如下所示:

clipboard.png

3.3 安装nexus

nexus虽然我也是使用shell文件安装,但有些配置我们还是要手动设置,下面是安装shell文件:

  1. #!/bin/bash
  2. #判断是否是roo用户
  3. if [ $(id -u) != "0" ]; then
  4. echo "Error:You must be root to run this script"
  5. fi
  6. #每次使用只需修改自定义内容即可
  7. #自定义用户名和组
  8. Group_Name="nexus"
  9. User_Name="nexus"
  10. #自定义nginx变量
  11. Install_Path="/usr/local/nexus"
  12. Version="nexus-3.15.0-01"
  13. Package_Type=".tar.gz"
  14. Package=$Version$Package_Type
  15. #创建/usr/local/nexus目录
  16. #mkdir /usr/local/nexus
  17. if [ -e $Install_Path ]
  18. then
  19. echo " $Install_Path 目录已经存在."
  20. echo " $Install_Path Directory Already Exists."
  21. else
  22. echo " $Install_Path 目录正在创建."
  23. mkdir $Install_Path
  24. fi
  25. #下载nexus 文件
  26. Setup_path="/root/"
  27. cd $Setup_path
  28. wget https://sonatype-download.global.ssl.fastly.net/repository/repositoryManager/3/nexus-3.15.0-01-unix.tar.gz
  29. Group_User(){
  30. egrep "^$Group_Name" /etc/group >& /dev/null
  31. if [ $? -ne 0 ]
  32. then
  33. echo "nexus 用户组正在添加."
  34. groupadd $Group_Name
  35. else
  36. echo " The $Group_Name user group already exists."
  37. echo "nexus 用户组已经添加."
  38. fi
  39. #判断nexus用户是否存在
  40. egrep "^$User_Name" /etc/passwd >& /dev/null
  41. if [ $? -ne 0 ]
  42. then
  43. echo "nexus 用户正在添加."
  44. useradd -g $Group_Name $User_Name
  45. else
  46. echo "nexus 用户已经添加."
  47. echo " The $User_Name user already exists."
  48. fi
  49. }
  50. Group_User
  51. # 设置/usr/local/nexus 目录所属组和用户是nexus
  52. chown -R nexus:nexus $Install_Path
  53. #判断文件是否存在
  54. if [ -e $Setup_path$Version$Package_Type ]
  55. then
  56. echo "$Package The Package exists."
  57. else
  58. echo "$Package The package does not exist."
  59. fi
  60. cd $Setup_path
  61. #解压nexus包到/usr/local/nexus
  62. tar -zxvf $Package -C $Install_Path
  63. echo '设置环境变量'
  64. mv ~/.bashrc ~/.bashrc.backup.nexus
  65. cat ~/.bashrc.backup.nexus >> ~/.bashrc
  66. echo "NEXUS_HOME=$Install_Path/$Version" >> ~/.bashrc
  67. echo "PATH=\"$PATH:$NEXUS_HOME/bin\"" >> ~/.bashrc
  68. # 切换nexus用户
  69. su nexus
  70. echo '接下来配置:1、vim bin/nexus.rc run_as_user="nexus"'

安装完成之后,我们到/usr/local/nexus/nexus-3.15.0-01/bin目录下修改nexus文件

  1. # 设置本地jdk目录
  2. INSTALL4J_JAVA_HOME_OVERRIDE="/usr/local/java/jdk1.8.0_201"

接着,我们相同目录下nexus.rc文件,如下

  1. # 指定用户是nexus而不是root,如果是root会出现警告!
  2. run_as_user="nexus"

好了,这样就安装好了,我们访问下网站,注意默认端口是8081,账号:admin,密码:admin123

clipboard.png

3.4 免费申请阿里云SSL证书

clipboard.png

购买成功之后,配置好域名,我这里的域名是: nexus.awbeci.com,设置好之后等待审核,审核成功之后选择nginx版本并下载证书

clipboard.png

clipboard.png

下载完成之后是个.zip的压缩包,我们上传到服务器上,使用下面命令:

scp your-cert.zip root@your-server-ip:/your-server-directory

上传成功之后我们等待下一步操作。

3.5 安装nginx并代理nexus 8081端口,同时配置https访问

因为访问网站的时候端口是8081,所以想要使用80端口访问的话,我们就用nginx 80端口代理8081,同时设置https访问

安装nginx 我们还是通过shell文件来安装,如下

  1. #!/bin/bash
  2. #判断是否是roo用户
  3. if [ $(id -u) != "0" ]; then
  4. echo "Error:You must be root to run this script"
  5. fi
  6. #每次使用只需修改自定义内容即可
  7. #自定义用户名和组
  8. Group_Name="nginx"
  9. User_Name="nginx"
  10. #自定义nginx变量
  11. Install_Path="/usr/local/nginx"
  12. Package_Type=".tar.gz"
  13. Version="nginx-1.15.8"
  14. Package=$Version$Package_Type
  15. Setup_path="/root/"
  16. RPM="nginx"
  17. #创建/usr/local/nginx目录
  18. #mkdir /usr/local/nginx
  19. if [ -e $Install_Path ]
  20. then
  21. echo " $Install_Path 目录已经存在."
  22. echo " $Install_Path Directory Already Exists."
  23. else
  24. echo " $Install_Path 目录正在创建."
  25. mkdir $Install_Path
  26. fi
  27. #下载nginx 文件
  28. cd $Setup_path
  29. wget http://nginx.org/download/nginx-1.15.8.tar.gz
  30. #安装依赖关系
  31. yum group install "Development Tools" "Server Platform Deveopment"
  32. yum install -y curl openssl-devel pcre-devel
  33. Group_User(){
  34. egrep "^$Group_Name" /etc/group >& /dev/null
  35. if [ $? -ne 0 ]
  36. then
  37. echo "nginx 用户组正在添加."
  38. groupadd $Group_Name
  39. else
  40. echo " The $Group_Name user group already exists."
  41. echo "nginx 用户组已经添加."
  42. fi
  43. #判断nginx用户是否存在
  44. egrep "^$User_Name" /etc/passwd >& /dev/null
  45. if [ $? -ne 0 ]
  46. then
  47. echo "nginx 用户正在添加."
  48. useradd -g $Group_Name $User_Name
  49. else
  50. echo "nginx 用户已经添加."
  51. echo " The $User_Name user already exists."
  52. fi
  53. }
  54. Group_User
  55. #判断文件是否存在
  56. if [ -e $Setup_path$Version$Package_Type ]
  57. then
  58. echo "$Package The Package exists."
  59. else
  60. echo "$Package The package does not exist."
  61. fi
  62. #编译安装nginx
  63. cd $Setup_path
  64. #解压nginx包到/usr/local/nginx
  65. tar -zxvf $Package -C $Install_Path
  66. cd $Install_Path
  67. cd $Version
  68. configure_opts=(
  69. --prefix=$Install_Path
  70. --user=nginx
  71. --group=nginx
  72. --with-http_ssl_module
  73. --with-http_flv_module
  74. --with-http_stub_status_module
  75. --with-http_gzip_static_module
  76. )
  77. ./configure ${configure_opts[@]}
  78. if [[ $? -eq 0 ]]
  79. then
  80. make && make install
  81. else
  82. echo "编译失败,请重新编译" && exit 1
  83. fi
  84. #添加Nginx命令到环境变量
  85. cat >/etc/profile.d/nginx.sh <<EOF
  86. export PATH=/usr/local/nginx/sbin/:$PATH
  87. EOF
  88. source /etc/profile
  89. #启动服务
  90. /usr/local/nginx/sbin/nginx
  91. ss -tnlp | grep nginx

安装成功后,我们把一步上传的证书.zip复制到/root文件夹下,并解压缩,如下:

  1. # 创建ssl文件夹
  2. mkdir -p /usr/local/nginx/cert
  3. # 把上一步的.zip证书解压并复制到ssl文件夹下
  4. unzip /root/your-cert-package.zip
  5. # 解压之后应该是两个文件.pem和.key
  6. # 复制.crt和.key文件到ssl目录下
  7. cp your-cert.crt your-cert.key /usr/local/nginx/cert

设置好之后,接下来我们配置/usr/local/nginx/conf/nginx.conf文件,如下所示:

  1. #user nobody;
  2. worker_processes 1;
  3. #error_log logs/error.log;
  4. #error_log logs/error.log notice;
  5. #error_log logs/error.log info;
  6. #pid logs/nginx.pid;
  7. events {
  8. worker_connections 1024;
  9. }
  10. http {
  11. include mime.types;
  12. default_type application/octet-stream;
  13. client_max_body_size 100m;
  14. client_header_timeout 1m;
  15. client_body_timeout 1m;
  16. proxy_connect_timeout 18000; ##修改成半个小时
  17. proxy_send_timeout 18000;
  18. proxy_read_timeout 18000;
  19. #log_format main '$remote_addr - $remote_user [$time_local] "$request" '
  20. # '$status $body_bytes_sent "$http_referer" '
  21. # '"$http_user_agent" "$http_x_forwarded_for"';
  22. #access_log logs/access.log main;
  23. sendfile on;
  24. #tcp_nopush on;
  25. #keepalive_timeout 0;
  26. keepalive_timeout 65;
  27. #gzip on;
  28. server {
  29. listen 80;
  30. server_name nexus.awbeci.com;
  31. return 301 https://nexus.awbeci.com$request_uri;
  32. #charset koi8-r;
  33. #access_log logs/host.access.log main;
  34. location / {
  35. proxy_pass http://127.0.0.1:8081; #代理8081端口
  36. proxy_set_header Host $host;
  37. proxy_set_header X-Real-IP $remote_addr;
  38. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  39. proxy_set_header X-Forwarded-Proto $scheme;
  40. proxy_set_header X-Forwarded-Port $server_port;
  41. }
  42. }
  43. # HTTPS server
  44. #
  45. server {
  46. listen 443 ssl;
  47. server_name nexus.awbeci.com;
  48. ssl_certificate /usr/local/nginx/cert/nexus.awbeci.com.pem;
  49. ssl_certificate_key /usr/local/nginx/cert/nexus.awbeci.com.key;
  50. ssl_session_cache shared:SSL:1m;
  51. ssl_session_timeout 5m;
  52. ssl_ciphers HIGH:!aNULL:!MD5;
  53. ssl_prefer_server_ciphers on;
  54. location / {
  55. proxy_pass http://127.0.0.1:8081; #代理8081端口
  56. proxy_set_header Host $host;
  57. proxy_set_header X-Real-IP $remote_addr;
  58. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  59. proxy_set_header X-Forwarded-Proto $scheme;
  60. proxy_set_header X-Forwarded-Port $server_port;
  61. }
  62. }
  63. }

这样就成功的配置好了,现在我们重启下nginx,并访问nexus.awbeci.com网站看看

  1. # 重启nginx
  2. /usr/local/nginx/sbin/nginx -s reload

clipboard.png

4、开始使用Nexus

4.1 Nexus介绍

这里有一篇文章写得非常好,大家可以看看,我就不特别详细的写介绍了,主要还是告诉你们怎么结合项目使用。

4.2 创建Blob Stores

clipboard.png

4.3 创建User

clipboard.png

4.4 创建阿里云的代理仓库

clipboard.png

然后再public组里面将这个aliyun-proxy仓库加入,排在maven-central之前即可

clipboard.png

4.5 创建Host仓库 策略是release

clipboard.png

4.6 创建Host仓库 策略是snapshots

clipboard.png

创建好之后我们再来Public设置下优先顺序,把刚才加的两个仓库放到aliyun-proxy前面

clipboard.png

创建完仓库预览

clipboard.png

4.7 配置本地maven settings.xml

提示:两种配置方法,一种是直接配置maven目录下的conf下的settings.xml文件,另外一种是复制该文件到用户目录下的.m2目录,两种方法配置效果是一样的,看个人喜好了,加载顺序是.m2下的settings.xml目录接着是maven config目录下的settings.xml,配置文件如下:

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
  5. <pluginGroups>
  6. </pluginGroups>
  7. <proxies>
  8. </proxies>
  9. <servers>
  10. <!--这里配置我们刚才创建的user用户所对应的releases-->
  11. <server>
  12. <id>releases</id>
  13. <username>user</username>
  14. <password>123456</password>
  15. </server>
  16. <!--这里配置我们刚才创建的user用户所对应的Snapshots-->
  17. <server>
  18. <id>Snapshots</id>
  19. <username>user</username>
  20. <password>123456</password>
  21. </server>
  22. </servers>
  23. <mirrors>
  24. <!-- <mirror>
  25. <id>nexus-aliyun</id>
  26. <mirrorOf>*</mirrorOf>
  27. <name>Nexus aliyun</name>
  28. <url>http://maven.aliyun.com/nexus/content/groups/public</url>
  29. </mirror> -->
  30. <!--这里配置我们线上的public仓库就好-->
  31. <mirror>
  32. <id>nexus</id>
  33. <mirrorOf>*</mirrorOf>
  34. <url>https://nexus.awbeci.com/repository/maven-public/</url>
  35. </mirror>
  36. </mirrors>
  37. </settings>

4.8 配置要上传到nexus项目pom.xml文件

  1. <packaging>jar</packaging>
  2. <distributionManagement>
  3. <!--配置线上releases仓库地址,只要是正式版本都会上传到该地址(注意要和settings.xml文件里面的配置名称相同)-->
  4. <repository>
  5. <id>releases</id>
  6. <url>https://nexus.awbeci.com/repository/awbeci/</url>
  7. </repository>
  8. <!--配置线上Snapshots仓库地址,只要是快照版本都会上传到该地址(注意要和settings.xml文件里面的配置名称相同)-->
  9. <snapshotRepository>
  10. <id>Snapshots</id>
  11. <url>https://nexus.awbeci.com/repository/awbeci-snapshots/</url>
  12. </snapshotRepository>
  13. </distributionManagement>
  14. <build>
  15. <plugins>
  16. <plugin>
  17. <groupId>org.apache.maven.plugins</groupId>
  18. <artifactId>maven-compiler-plugin</artifactId>
  19. <version>3.6.1</version>
  20. <configuration>
  21. <source>1.8</source>
  22. <target>1.8</target>
  23. <encoding>UTF-8</encoding>
  24. </configuration>
  25. </plugin>
  26. <plugin>
  27. <groupId>org.apache.maven.plugins</groupId>
  28. <artifactId>maven-deploy-plugin</artifactId>
  29. <version>2.8.2</version>
  30. <executions>
  31. <execution>
  32. <id>deploy</id>
  33. <phase>deploy</phase>
  34. <goals>
  35. <goal>deploy</goal>
  36. </goals>
  37. </execution>
  38. </executions>
  39. </plugin>
  40. </plugins>
  41. </build>
  42. </project>

4.9 编辑并发布jar包

mvn clean && mvn deploy -DskipTests=true

执行完成后,我们到线上看看是否上传成功

clipboard.png

clipboard.png

可以看到不管是release版本还是snapshot版本都上传并发布成功

4.10 测试发布的包

自己新建一个maven项目,然后引入我们刚才发布的release包

  1. <dependency>
  2. <groupId>com.awbeci</groupId>
  3. <artifactId>awbeci-core</artifactId>
  4. <version>1.0.8-SNAPSHOT</version>
  5. </dependency>

clipboard.png
执行该代码,如下所示:

clipboard.png

测试成功!!!

4.10 上传第三方包

有两种方式,一种是命令

  1. mvn deploy:deploy-file \
  2. -DgroupId=<group-id> \
  3. -DartifactId=<artifact-id> \
  4. -Dversion=<version> \
  5. -Dpackaging=<type-of-packaging> \
  6. -Dfile=<path-to-file> \
  7. -DrepositoryId=<server-id-settings.xml> \
  8. -Durl=<url-of-the-repository-to-deploy>

另外一种是使用Nexus上传

clipboard.png

两种方式结果都是一样,就看你偏向哪种了。

5、总结

1)服务器内存刚开始配置是1CPU 1G 内存,nexus start运行之后报错,升级服务器为2G内存之后就没问题了

2)nexus 默认是8081端口,我们可以修改文件/usr/local/nexus/nexus-3.15.0-01/etc/nexus-default.properties

  1. ## DO NOT EDIT - CUSTOMIZATIONS BELONG IN $data-dir/etc/nexus.properties
  2. ##
  3. # Jetty section
  4. # 设置成自己想要的端口
  5. application-port=8081
  6. application-host=0.0.0.0
  7. nexus-args=${jetty.etc}/jetty.xml,${jetty.etc}/jetty-http.xml,${jetty.etc}/jetty-requestlog.xml
  8. nexus-context-path=/
  9. # Nexus section
  10. nexus-edition=nexus-pro-edition
  11. nexus-features=\
  12. nexus-pro-feature

值得注意的是不能把端口直接改成80,这样你就不能启动nexus,所以我们是通过nginx 80端口代理8081端口了。

3)nexus 配置内存是在 /usr/local/nexus/nexus-3.15.0-01/bin/nexus.vmoptions

  1. -Xms1200M
  2. -Xmx1200M
  3. -XX:MaxDirectMemorySize=2G
  4. -XX:+UnlockDiagnosticVMOptions
  5. -XX:+UnsyncloadClass
  6. -XX:+LogVMOutput
  7. -XX:LogFile=../sonatype-work/nexus3/log/jvm.log
  8. -XX:-OmitStackTraceInFastThrow
  9. -Djava.net.preferIPv4Stack=true
  10. -Dkaraf.home=.
  11. -Dkaraf.base=.
  12. -Dkaraf.etc=etc/karaf
  13. -Djava.util.logging.config.file=etc/karaf/java.util.logging.properties
  14. -Dkaraf.data=../sonatype-work/nexus3
  15. -Djava.io.tmpdir=../sonatype-work/nexus3/tmp
  16. -Dkaraf.startLocalConsole=false

4)最好自己创建nexus用户,不要使用root用户启动nexus否则会出现警告

  1. WARNING: ************************************************************
  2. WARNING: Detected execution as "root" user. This is NOT recommended!
  3. WARNING: ************************************************************
  4. Starting nexus

5)启动nexus:

/usr/local/nexus/nexus-3.15.0-01/bin/nexus {start|stop|run|run-redirect|status|restart|force-reload}

6、引用

  1. Maven私服Nexus3.x环境构建操作记录
  2. Nexus 3.x Linux环境搭建(手把手) 排坑之旅
  3. Centos7.3安装nexus-3.14.0-04
  4. 搭建nexus3版的maven私服(Centos7环境)
  5. Gitlab+Nexus Maven部署
  6. Linux 使用 Nexus3.x 搭建 Maven 私服指南
  7. maven私服nexus3.x搭建与使用
  8. centos7搭建nexus maven私服
  9. centos7搭建nexus maven私服
  10. Maven Nexus
  11. Nexus 私有仓库搭建与 Maven 集成
  12. Nexus max file descriptors
  13. maven私服nexus3.x环境配置
  14. 搭建Maven私服-Nexus

学习时的痛苦是暂时的 未学到的痛苦是终生的

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/花生_TL007/article/detail/124614
推荐阅读
  

闽ICP备14008679号