1. PostgreSQL Backup

ARTIFACTORY: How to Backup and Recover Artifactory Database

AuthorFullName__c
Jagan Sekaran
articleNumber
000006053
ft:sourceType
Salesforce
FirstPublishedDate
2024-03-14T06:33:47Z
lastModifiedDate
2024-03-14
VersionNumber
2

Since this document describes using PostgreSQL as your Artifactory database, the first step is to execute the following command to create a backup:

pg_dump -U artifactory-username artifactory-password > art-dump.sql

This command exports the database to a SQL file, serving as your backup. Ensure that you replace `artifactory-username` and `artifactory-password` with your actual database credentials.