If you have artifactory 4.6 or higher, you can create the $ARTIFACTORY_HOME//binarystore.xml configuration file. e.g. /var/opt/jfrog/artifactory/etc/binarystore.xml
The following configuration places artifacts in the /data directory
<config version="v1"> <chain template="file-system"> </chain> <provider id="file-system" type="file-system"> <fileStoreDir>/data/binaries</fileStoreDir> </provider> </config>
source share