How to install JFrog Artifactory on Ubuntu 20.04
The
You can download this article in PDF format to support us through the following link.
Download the guide in PDF format
turn off
The
The
The
JFrog Artifactory is one of the most advanced repository management applications that can be seamlessly integrated with continuous integration and delivery tools. It can help you provide a single source of truth for all packaging, container images and Helm charts. This guide will guide you through the installation of JFrog Artifactory on Ubuntu 20.04.
With JFrog Artifactory, you can use your favorite orchestration tools to manage application deployment using different configuration packages and application artifacts (such as Docker and Helm) managed in Artifactory. It provides various storage solutions that allow your repository to expand as your business grows.
Install JFrog Artifactory on Ubuntu 20.04
We will install JFrog’s Artifactory open source version, which aims to use the binary repository to speed up the development cycle. You can choose to install JFrog Artifactory on Ubuntu 20.04 from the Debian package or using Docker container images.
Our installation method comes from the debian package provided in the APT repository. Add the repository to your Ubuntu system by running the following command.
Step 1: Import the repository GPG key
First import the GPG key used to sign the debian package.
sudo apt update
wget -qO - https://api.bintray.com/orgs/jfrog/keys/gpg/public.key | sudo apt-key add -
Step 2: Add JFrog Artifactory to Ubuntu 20.04
After confirming the import of the GPG key, you can now add JFrog Artifactory to Ubuntu 20.04.
echo "deb https://jfrog.bintray.com/artifactory-debs bionic main" | sudo tee /etc/apt/sources.list.d/jfrog.list
Update the APT index:
sudo apt update
Step 3: Install JFrog Artifactory on Ubuntu 20.04
Use apt package manager to install JFrog Artifactory on Ubuntu 20.04:
sudo apt update
sudo apt install jfrog-artifactory-oss
The installation will begin immediately.
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)
....
Start and enable the service:
sudo systemctl start artifactory.service
sudo systemctl enable artifactory.service
Confirm the service status:
$ systemctl status artifactory.service
● artifactory.service - Artifactory service
Loaded: loaded (/lib/systemd/system/artifactory.service; enabled; vendor preset: enabled)
Active: active (running) since Thu 2020-05-28 01:24:19 CEST; 1min 0s ago
Main PID: 8385 (java)
Tasks: 0 (limit: 4567)
Memory: 1.6M
CGroup: /system.slice/artifactory.service
‣ 8385 /opt/jfrog/artifactory/app/third-party/java/bin/java -Djava.util.logging.config.file=/opt/jfrog/artifactory/app/artifactory/tomcat/>
May 28 01:24:18 ubuntu su[8692]: pam_unix(su:session): session opened for user artifactory by (uid=0)
May 28 01:24:19 ubuntu su[8692]: pam_unix(su:session): session closed for user artifactory
May 28 01:24:19 ubuntu su[8814]: (to artifactory) root on none
May 28 01:24:19 ubuntu su[8814]: pam_unix(su:session): session opened for user artifactory by (uid=0)
May 28 01:24:19 ubuntu su[8814]: pam_unix(su:session): session closed for user artifactory
May 28 01:24:19 ubuntu su[8951]: (to artifactory) root on none
May 28 01:24:19 ubuntu su[8951]: pam_unix(su:session): session opened for user artifactory by (uid=0)
May 28 01:24:19 ubuntu su[8951]: pam_unix(su:session): session closed for user artifactory
May 28 01:24:19 ubuntu systemd[1]: Started Artifactory service.
...
Step 4: Access the Artifactory web interface
Artifactory can be accessed using the following URL:
http://SERVERIP_OR_DOMAIN:8081/artifactory
You should see the Artifactory welcome page.
The default login name is:
Username: admin Password: password
Click “start using“Button.
Reset the administrator password by setting a new password.
Provide the base URL of your JFrog.
Select the repository to be created during installation.
Now, you have installed JFrog Artifactory on Ubuntu 20.04 Linux computer.
reference:
Valid books:
Liquid software: How to get reliable continuous updates in the DevOps world
$19.95 $12.99
In stock
New 1 New
From $12.99 from $12.99
Buy now
Amazon.com
At the end of June 2, 2020, at 9:03 am
Continuous delivery of Java applications: gradually build CD pipelines using Kubernetes, Docker, Vagrant, Jenkins, Spring, Maven, and Artifactory
$ 9.90
In stock
New 1 New
From $ 9.90 from $ 9.90
Buy now
Amazon.com
At the end of June 2, 2020, at 9:03 am
A
A
You can download this article in PDF format to support us through the following link.
Download the guide in PDF format
turn off
The
The
The