Solutions for common CloudMapper issues and problems
For all technical support, troubleshooting, and questions, please use our GitHub repository where the community and maintainers can help you.
CloudFormation deployment issues, AMI not found, instance fails to start.
Get Installation HelpCannot access web interface, login failures, SSL certificate errors.
Get Access HelpScan failures, missing resources, slow performance, permissions issues.
Get Scanning Help# Service status
sudo systemctl status cloudmapper
sudo systemctl status nginx
# Resource usage
free -h
df -h
# AWS credentials
aws sts get-caller-identity
# Test permissions
aws ec2 describe-regions
Get help from the CloudMapper community:
Report bugs and technical issues:
# Stop services
sudo systemctl stop cloudmapper nginx
# Clear cache and temp files
sudo rm -rf /opt/cloudmapper/cache/*
sudo rm -rf /tmp/cloudmapper-*
# Restart services
sudo systemctl start nginx cloudmapper
sudo systemctl status cloudmapper
# Create EBS snapshot
aws ec2 create-snapshot \
--volume-id vol-1234567890abcdef0 \
--description "CloudMapper backup"
# Manual data backup
sudo tar -czf /tmp/cloudmapper-backup.tar.gz \
/opt/cloudmapper/config \
/opt/cloudmapper/data