Skip to main content
Filter by
Sorted by
Tagged with
Best practices
0 votes
0 replies
14 views

This might be a weird question but I'd like to run it by you. My current setup to store data is as follows: NAS Synology DS224+ with 2x4TB HDD (avoiding Docker containers) Daily backup on a Synology ...
Gauffke's user avatar
  • 15
0 votes
0 answers
26 views

I’m currently configuring backups for an Apache Cloudberry 2.0.0-incubating cluster using the gpbackup utility. When I run the backup locally, everything works correctly — gpbackup creates files on ...
0 votes
1 answer
44 views

Looking at the Sqlite backup options https://oldmoe.blog/2024/04/30/backup-strategies-for-sqlite-in-production/ I have a question that is orthogonal to the backup method used: suppose on Windows I ...
Anton Tropashko's user avatar
0 votes
0 answers
66 views

I've successfully traced the logs for standard Backup Jobs (Jobs -> Backup) in the Veeam database, but I'm unable to find the equivalent logs for Backup Copy Jobs (Jobs -> Backup Copy). The UI ...
Medinho's user avatar
  • 223
0 votes
0 answers
52 views

I have a large fts5 virtual table (currently about 90GB). Because the sqlite ODBC driver, which I use (version 3.43.2) as my main sqlite scripting client, doesn't support fts5, I populate and use fts5 ...
MandyShaw's user avatar
  • 1,165
1 vote
1 answer
186 views

I have an app using Firebird 2.5.9. We're going to be releasing a major new version of the app, and I want to migrate to FB 5.0. The database schema has changed dramatically between old and new app ...
Steve Sneed's user avatar
1 vote
0 answers
32 views

I'm currently automating the mongodump process for both our staging and production databases using a Python script. For this use case, I only need to export the metadata—such as collection names, ...
Nabhoneil Chattopadhyay's user avatar
1 vote
1 answer
73 views

I am using the WixToolset 6.0 with Visual Studio 2022. I am trying to create an installer that installs the following files: <ComponentGroup Id="ApplicationFiles" Directory="...
Johnny Fever's user avatar
0 votes
1 answer
61 views

My client's SQL Server database file is corrupted, and there is no backup. We only found the MDF and LDF files copied using NAT backup software. I need to use these files to rebuild the database. The ...
Phương Tăng's user avatar
1 vote
0 answers
32 views

Actually for the archive_timeout PG config option what is the alignment point. Is it counting from the last archive time (or the server start) or just something like now() % archive_timeout Thanks
404's user avatar
  • 533
1 vote
1 answer
236 views

I am creating backups of my DynamoDB tables using AWS Backup in my source account A and storing the recovery point ARNs in a vault named X in source account A . I need to copy and restore the backup ...
Shivansh Kaldaik's user avatar
0 votes
0 answers
97 views

I'm trying to backup the digikam Mariadb 11.4 database on my Windows 11 PC. I could access earlier versions of the database for digikam/MariaDB, with root user, but now receive Access denied messages. ...
Steve Franks's user avatar
0 votes
0 answers
27 views

I took a backup of my GitLab instance running on one machine. After restoring it on a different machine with the same GitLab version installed, I validated that the installation works correctly. The ...
Uğur Uğurbaş's user avatar
0 votes
0 answers
34 views

I create daily dumps in a K8s cluster using helm with neo4j/neo4j version 5.21.0 and neo4j-admin database dump command. Then I wanted to load the dumps into a local volume using neo4j-admin version 5....
sdm4n's user avatar
  • 143
1 vote
0 answers
55 views

We are developing an app for a client and the app had always set android:allowBackup="true" in the android manifest. We got the request to not allow backups, so we set allowBackup to false, ...
Ennio's user avatar
  • 40
1 vote
2 answers
88 views

I like to keep a copy of my /etc folder in a git repository. That way, if something changes and breaks but I don't notice it right away, I'm likely to have a diff that helps me recover pretty quickly. ...
Alexis Wilke's user avatar
  • 21.2k
0 votes
0 answers
47 views

Whenever I take a backup of my WordPress website and import it to another site, I get this error. Please install the VarDumper class with `composer require symfony/var-dumper`, or remove this helper.&...
Mistr Harry's user avatar
1 vote
1 answer
363 views

I'm trying to create a dedicated role/user in postgresql and I want to grant only the minium privileges for a schema inside a database, but I don't really understand how this works. Of course I know I ...
Lethargos's user avatar
  • 750
0 votes
0 answers
43 views

I am a PHP developer working with a Zkteco K40 device, and I need assistance setting up a Cron job to automate a weekly backup of attendance data. Specifically, I want to retrieve the attendance data ...
Rana Anas Aslam's user avatar
0 votes
0 answers
63 views

For business needs, we often need to restore an SQL Server database from AWS RDS. Then I need to backup this newly created RDS. I'm using this code: exec msdb.dbo.rds_backup_database @...
omar's user avatar
  • 93
1 vote
1 answer
323 views

I operate a SAAS software system in which user data is stored in Azure blob storage with a separate container for each user. The storage account currently contains just over 1000 containers. I need to ...
Simon Christiansen's user avatar
3 votes
0 answers
124 views

I am using SQL Server 2022 Express on Ubuntu Server 22.04, and PHP 8.3. I am trying to backup a database, the instruction is: BACKUP DATABASE WEBDEV TO DISK = '/temp/WEBDEV.bak', and when I execute it ...
Roberto Guerrero's user avatar
0 votes
0 answers
85 views

Can someone help me with BorgWarehouse? I don’t know how to create a remote repository on BorgWarehouse. I can do this using the CLI, but nothing appears in BorgWarehouse—the storage remains at 0.0%. ...
Ash_pathogene's user avatar
0 votes
1 answer
320 views

I am using PostgreSQL 17.2, and I would like to use the Incremental Backup feature. Here are my conf-file settings: wal_compression = on wal_log_hints = on max_wal_size = 4GB min_wal_size = 80MB ...
Database_operator's user avatar
0 votes
0 answers
44 views

I am using BackInTime for backing up my files. I am getting a bunch of errors of the following form: Error: rsync: link "previous_backup_file" => "current_backup_file" failed: ...
Rodion Zaytsev's user avatar
0 votes
0 answers
46 views

I'm syncing some files in my S3 bucket with rclone and all is ok. I need to exclude from sync all files with more than 3 characters on extensions (e.g. test.jfjaoisfn) in case of ransomware attack or ...
giuggimini's user avatar
0 votes
0 answers
101 views

I couldn't connect to (microsoft analysis service) SSAS from SSMS because it threw some errors with old databases. I followed this guide https://learn.microsoft.com/en-us/answers/questions/1159973/...
Axeltherabbit's user avatar
1 vote
1 answer
3k views

I have this Docker compose file with named volumes: version: '3' services: db: image: mysql:8.0 container_name: db volumes: - dbdata:/var/lib/mysql wordpress: image: ...
Megidd's user avatar
  • 8,223
0 votes
0 answers
278 views

I am facing an issue with PostgreSQL not starting after I restored a backup. The problem occurred after I changed the server's system time and then restored the backup. The backup was created with UTC ...
Mohammad Safyar's user avatar
0 votes
2 answers
68 views

I have a backup script which does the job but takes a long time to complete because it tars Users dir against a list of servers in DEV_Servers.txt one by one. Is there a way the tar command could run ...
Engineer83's user avatar
0 votes
2 answers
304 views

We are experiencing a swap consumption problem when backing up our database. Every evening at 01am we run the mariabackup command and during the process swap usage rises sharply until it reaches 100% ...
Kévin Pemonon's user avatar
1 vote
0 answers
14 views

I cannot configure laravel 10 spatie 9.3 to work on my local installation using anything else than the terminal (e.g. using it via controller / blade file...) iam running WAMP , PHP8.2;Mysql8.2 and ...
user2955335's user avatar
0 votes
1 answer
157 views

I want to backup mysql database in laravel 11 using a route. I tried some ways and all of them had problem: using Spatie/db-dumper: protected $signature = 'backup:database'; public function handle() {...
Morteza M's user avatar
  • 196
1 vote
0 answers
53 views

I've written a backup script in Python that uses hard links to create full backups while saving a lot of space. When a new backup is made, the most recent backup is compared to the source files. If a ...
Mark H's user avatar
  • 617
-1 votes
1 answer
128 views

I have two recovery service vaults in two different regions, south east asia and west europe. But I only get this error message when using terraform to destroy the azure fileshare that has snapshot ...
cookick's user avatar
0 votes
1 answer
109 views

I'm trying to configure 2 of my openshift hub (acm) clusters to work in active passive mode. My clusters are installed on-premis. (Servers inside my company). I started with this documentation. From ...
Liav's user avatar
  • 165
0 votes
1 answer
777 views

When I am using command "gitlab-backup create --trace" to backup my gitlab data, the errors as follows: {"level":"error","msg":"create: pipeline: 3 ...
ohara0627's user avatar
0 votes
2 answers
835 views

I'm trying to backup from one database and restore on other database both with the same version(12.9). I have one table with large objects(OID) and when I restore the backup the large objects are ...
Impact Codes's user avatar
0 votes
0 answers
50 views

I need to backup github repo and restore it to another git server (eg: gitlab/bitbucket etc, with all those issue/pull request/tag/branches restore) Assumption: The backup will not be sync to ...
eulercode's user avatar
  • 1,157
3 votes
0 answers
679 views

I have a question regarding implementing cross-region automated backups replication for RDS Aurora Postgres cluster in Terraform (ideally using 'internal' RDS service functionalities /API endpoints). ...
s3-m-bocian's user avatar
1 vote
0 answers
51 views

I’m working with IBM Notes 9.1 and need some assistance. My manager mentioned that they want to back up the existing information. One option they explored was manually downloading each incident along ...
Robinson Arpi's user avatar
0 votes
1 answer
213 views

Azure Devops Server 2022.2 I have upgraded the Test Environment with new Azure DevOps Server 2022.2, Then restore the tfs_configuration and tfs_DefaultCollection latest backup from another production ...
Herr_grun's user avatar
0 votes
1 answer
61 views

Let say I have a S3 bucket which I created it and uploaded files to it a year ago. I kept it unchanged for a year. Now I turn on backup on it using continuous backup and set the total retention period ...
Steve's user avatar
  • 233
0 votes
0 answers
119 views

I’ve been (slowly) designing a new WordPress site locally on my Windows 11 hard drive. I’ve been using Apache and MySQL via the XAMPP Control Panel. I keep running into a situation in which MySQL ...
MavWeb's user avatar
  • 21
0 votes
1 answer
207 views

Requirement: Backup and Restore steps for Apisix 3.8.0 version. its Etcd pods method or any other,
Gokul's user avatar
  • 11
1 vote
2 answers
2k views

So the problem is my Jenkins is running on a docker container and that Jenkins needs update. So that cannot happen while this Jenkins is running. If I download the latest Jenkins image , I will have ...
jaqen_hgar's user avatar
0 votes
0 answers
192 views

On local Win11 machine, I'm using rsync v3.3 through Cygwin v3.5.3 and on my remote ubuntu 22.04 machine, I'm using rsync v3.2.7. I have a source directory in my local machine whilst compare and ...
Shah-G's user avatar
  • 662
0 votes
0 answers
33 views

Issue Summary: I'm encountering a connection error between my Spring Boot application and a MongoDB database running in separate Docker containers. Error Description: I'm receiving the following error:...
Pratik Mondal's user avatar
1 vote
1 answer
289 views

I accidentally deleted firestore collection. then I interuppted that in between and it resulted in partial deletion. I want to restore my data. Point in time recovery was not enabled and I made above ...
Dilip Tarkhala's user avatar
0 votes
1 answer
119 views

Does Zscaler has exposed api endpoints to backup configuration or any python library available to backup configuration settings ? I have the documentation of common endpoints which zscaler has exposed ...
wasif hussain's user avatar

1
2 3 4 5
115