Bulk Agency Rollout
Deploy Saturn monitoring across dozens or hundreds of WordPress sites.
WP-CLI Deployment
```bash #!/bin/bash
deploy-saturn.sh
SITES=( "example1.com" "example2.com"
... add all sites
)
ORG_TOKEN="pg_your_token_here"
for site in "${SITES[@]}"; do echo "Deploying to $site..."
Install plugin
wp plugin install saturn-watchdog --activate --path="/var/www/$site"
Configure token
wp option update saturn_org_token "YOUR_ORG_TOKEN" --path="/var/www/$site"
Test connection
wp saturn test --path="/var/www/$site"
echo "✓ $site complete" done ```
MainWP Integration
- Install Saturn extension from MainWP marketplace
- Configure org token in Global Settings
- Bulk install to all child sites
- View aggregated health in MainWP dashboard
ManageWP Integration
- Add Saturn to ManageWP favorites
- Bulk install across sites
- Configure via ManageWP settings sync
- Monitor health from central dashboard
Next Steps
- Installation — Single site setup
- Troubleshooting — Fix common issues