本文介绍在Ubuntu 20.04服务器上安装JFrog Artifactory的方法,包括基本的配置。我们将安装JFrog的Artifactory开放源代码版本,该版本旨在利用二进制存储库加快开发周期,可以选择从Debian软件包或使用Docker容器映像在Ubuntu 20.04上安装JFrog Artifactory。我们的安装方法来自APT存储库中提供的debian软件包,请运行相关命令将存储库添加到您的Ubuntu 20.04系统上。
步骤1:导入存储库GPG密钥 首先导入用于签名debian软件包的GPG密钥: sudo apt update wget -qO - https://api.bintray.com/orgs/jfrog/keys/gpg/public.key | sudo apt-key add -
步骤2:将JFrog Artifactory添加到Ubuntu 20.04 确认GPG密钥的导入后,您现在可以将JFrog Artifactory添加到Ubuntu 20.04系统中了: echo "deb https://jfrog.bintray.com/artifactory-debs bionic main" | sudo tee /etc/apt/sources.list.d/jfrog.list 参考:echo命令_Linux echo命令使用详解:输出指定的字符串或者变量。 更新APT索引: sudo apt update
步骤3:在Ubuntu 20.04上安装JFrog Artifactory 使用apt软件包管理器在Ubuntu 20.04上安装JFrog Artifactory: sudo apt update sudo apt install jfrog-artifactory-oss 安装将立即开始,如下返回信息: Reading package lists... Done Building dependency tree Reading state information... Done The following NEW packages will be installed: jfrog-artifactory-oss 0 upgraded, 1 newly installed, 0 to remove and 36 not upgraded. Need to get 422 MB of archives. After this operation, 767 MB of additional disk space will be used. Get:1 https://jfrog.bintray.com/artifactory-debs bionic/main amd64 jfrog-artifactory-oss amd64 7.4.3 [422 MB] Fetched 422 MB in 6s (74.2 MB/s) .... 启动并启用服务: sudo systemctl start artifactory.service sudo systemctl enable artifactory.service 确认服务状态: $ systemctl status artifactory.service 会返回Active: active (running)的信息,表明服务正在运行中。
步骤4:配置访问Artifactory Web界面 可以使用以下URL访问Artifactory: http://SERVERIP_OR_DOMAIN:8081/artifactory 注:请自行添加自身对应的数值,如服务器IP等。 应该可以看到Artifactory的欢迎页面,需要输入用户名和密码:
默认登录名是: Username: admin Password: password 点击“Get Started”按钮:
通过设置新密码来重置管理员密码:
提供您的JFrog的基本URL:
选择要在安装过程中创建的存储库。
现在,您已经在Ubuntu 20.04 Linux服务器上安装并配置了JFrog Artifactory:
至此,安装和配置JFrog Artifactory的过程全部结束。
相关主题 |