Stdio Integration
Overview
The Stdio integration enables seamless backup and restoration of stdio streams to and from a Kloset repository.
This integration is designed to protect the data on your local hard drives, mounted NAS volumes, and SANs.
Configuration
The Stdio integration does not require any special configuration.
Example Usage
To back up, you can use the following commands which will copy the content of the stdio stream to a file named passwd
within the snapshot:
1$ cat /etc/passwd | plakar at /var/backups backup stdin:passwd
Restore can be done to a file:
1$ plakar at /var/backups restore fc1b1e94:passwd
or can also use an stdout stream:
1$ plakar at /var/backups restore -to stdout:- fc1b1e94:passwd
See the QuickStart guide for more examples.
Questions, Feedback, and Support
Found a bug? Open an issue on GitHub
Join our Discord community for real-time help and discussions.
Q&A
Can you ingest command outputs ?
Yes, the Stdio integration was designed to ingest data from pg_dump
, mysql_dump
and similar commands.