Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
iml-backup
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
IML Open Source
iml-backup
Merge requests
!30
Update docs
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Update docs
eliminate-scheduler
into
master
Overview
0
Commits
2
Pipelines
0
Changes
7
Merged
Hahn Axel (hahn)
requested to merge
eliminate-scheduler
into
master
3 years ago
Overview
0
Commits
2
Pipelines
0
Changes
7
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
ab8f04f8
2 commits,
3 years ago
7 files
+
347
−
47
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
7
docs/30_Configuration/10_Database.md deleted
100644 → 0
+
0
−
46
View file @ 78779ad0
# Basic settings #
There are 2 defaults:
```
dir-localdumps = /var/iml-backup
keep-days = 7
```
## dir-localdumps ##
{string}
The target directory for local dumps. It is used by
*
the database dump scripts
*
the transfer script to store the client backups
*
the restore script
Below that one a directory for the service will be generated; inside that one the database dumbs with scheme name and timestamp, i.e.
/var/iml-backup/mysql/mydatabase__20190827-2300.sql.gz
## keep-days ##
{integer}
The number of days how long to keep dumps locally.
Remark:
To make a database restore its dump must be located at this directory.
To restore an older database you need to restore the dump from the filke backup first.
If you have local Mysql daemon or Pgsql you can test it by starting
```
# dump all databases
sudo ./localdump.sh
```
```
# show written files
find /var/iml-backup
```
Loading