insights
2021.10
false
- Notes de publication
- Démarrage
- Installation et mise à niveau
- Accès et autorisations
- Interaction avec Insights
- Résolution des problèmes
Sauvegarde et restauration
Important :
Veuillez noter que ce contenu a été localisé en partie à l’aide de la traduction automatique.
La localisation du contenu nouvellement publié peut prendre 1 à 2 semaines avant d’être disponible.
Non pris en charge par l'assistance
Insights
Dernière mise à jour 11 nov. 2024
Sauvegarde et restauration
Utilisez cette procédure pour créer une sauvegarde et restaurer vos tableaux de bord.
- Ouvrez PowerShell en tant qu'administrateur.
powershell
powershell - Créez une sauvegarde.
$image=$(docker container inspect looker-container -f '{{ .Image }}') $backupPath="$HOME\)\)insights\)\)backup" New-Item $backupPath -ItemType Directory -ErrorAction SilentlyContinue docker run -u root --rm --platform linux --volumes-from looker-container -v ${backupPath}:/backup ${image} bash -c "tar cvf /backup/looker_backup.tar --absolute-names /app/workdir/.db /mnt/lookerfiles"
$image=$(docker container inspect looker-container -f '{{ .Image }}') $backupPath="$HOME\)\)insights\)\)backup" New-Item $backupPath -ItemType Directory -ErrorAction SilentlyContinue docker run -u root --rm --platform linux --volumes-from looker-container -v ${backupPath}:/backup ${image} bash -c "tar cvf /backup/looker_backup.tar --absolute-names /app/workdir/.db /mnt/lookerfiles"Remarque : vous pouvez trouver le fichier de sauvegarde dans le dossier_insights
deC:\Users\<your-user-name>
. - Quittez PowerShell.
exit
exit
- Ouvrez PowerShell en tant qu'administrateur.
powershell
powershell - Restaurez les fichiers à l'aide de la sauvegarde.
$image=$(docker container inspect looker-container -f '{{ .Image }}') $backupPath="$HOME/insights/backup" docker run -u root --rm --platform linux --volumes-from looker-container -v ${backupPath}:/backup ${image} bash -c "tar xvf /backup/looker_backup.tar -C /"
$image=$(docker container inspect looker-container -f '{{ .Image }}') $backupPath="$HOME/insights/backup" docker run -u root --rm --platform linux --volumes-from looker-container -v ${backupPath}:/backup ${image} bash -c "tar xvf /backup/looker_backup.tar -C /" - (Facultatif) Si le nom d'hôte a changé, modifiez les fichiers.
Ouvrez le fichier de sauvegarde et recherchez
host_url
pour trouver la chaîne commençant parhttps://
.
Copiez la chaîne qui commence par
$2a$12$
et écrasez toutes les occurrences dans le fichier de sauvegarde.
Remarque : Désactivez regex dans l'éditeur si vous ne trouvez pas ces lignes.