ssh_db_dump
Dump databases (MySQL, PostgreSQL, MongoDB) to files on remote servers via SSH. Specify server, database type, credentials, and output path for automated backups.
Instructions
Dump database to file (MySQL, PostgreSQL, MongoDB)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| server | Yes | Server name | |
| type | Yes | Database type | |
| database | Yes | Database name | |
| outputFile | Yes | Output file path (will be created on remote server) | |
| dbUser | No | Database user | |
| dbPassword | No | Database password | |
| dbHost | No | Database host (default: localhost) | |
| dbPort | No | Database port | |
| compress | No | Compress output with gzip (default: true) | |
| tables | No | Specific tables to dump (MySQL/PostgreSQL only) |