Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where is artifactory home directory?

Tags:

artifactory

The artifactory documentation says the ARTIFACTORY_HOME directory is

{user.home}/.artifactory

Yet if you install from .deb packages, there is no home directory for the artifactory user.

Where is $ARTIFACTORY_HOME when installed from packages?

like image 943
spuder Avatar asked Oct 03 '16 19:10

spuder


People also ask

How do I set an Artifactory house?

Install Artifactory either as a single node installation or a high availability cluster. Customize the product configuration (optional) including database, Java Opts, and filestore. Start the service using the start scripts or OS service management. Check the Artifactory Log to check the status of the service.

What is Artifactory base URL?

By default, URLs generated in Artifactory use the context URL returned by your servlet container as a base. A custom URL base is useful when Artifactory is running behind a proxy. In this case the base for URLs generated in Artifactory for links and redirect responses must be specified manually.


1 Answers

Packages

The default configs are located in: /etc/opt/jfrog/artifactory/default
Opening that file shows ARTIFACTORY_HOME is /var/opt/jfrog/artifactory

Docker

If using the official artifactory docker container:

ARTIFACTORY_HOME=/opt/jfrog/artifactory

like image 73
spuder Avatar answered Sep 28 '22 11:09

spuder