ARTIFACTORY: How to Configure Artifactory’s Filestore with NetApp’s StorageGRID Solution

AuthorFullName__c
Yonatan Brand
articleNumber
000004740
FirstPublishedDate
2019-12-03T08:20:57Z
lastModifiedDate
2025-05-14

ARTIFACTORY: How to Configure Artifactory’s Filestore with NetApp’s StorageGRID Solution

To use NetApp’s StorageGRID filestore solution with Artifactory, you’ll first need to create an S3bucket in StorageGRID and then configure Artifactory's binarystore.xml. 

For example:

<config version="2">
<chain template="s3-storage-v3"/>
<provider id="s3-storage-v3" type="s3-storage-v3">
   <endpoint>$STORAGE_GRID_S3_URL</endpoint>
   <port>$PORT</port>
   <useHttp>false</useHttp>
   <identity>$ACCESS_KEY</identity>
   <credential>$SECRET_KEY</credential>
   <bucketName>$BUCKET_NAME</bucketName>
   <enablePathStyleAccess>true</enablePathStyleAccess>
</provider>
</config>


״enablePathStyleAccess״ property needs to be set to true For non-AWS users, like NetApp’s StorageGRID.

More information on configuring your filestore and alternative binary providers is available HERE.