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
# Check if SSH is enabled
sudo systemctl status sshd
# Check SSH configuration
sudo cat /etc/ssh/sshd_config | grep -E "^(PermitRootLogin|PasswordAuthentication|PubkeyAuthentication|AllowUsers)"
SSH is disabled by default. CloudMapper uses SSM Session Manager for secure access (recommended). SSH can be optionally enabled for AWS Marketplace scanning.
CloudMapper runs in FIPS 140-2 mode. Standard SSH connections will fail with "Connection closed by remote host" during key exchange.
You MUST use FIPS-compliant algorithms when connecting via SSH.
KeyName parameter (enables SSH automatically)EnableSSH parameter needed (removed in v1.1.0)ssh -o "KexAlgorithms=ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521" \
-o "Ciphers=aes128-ctr,aes192-ctr,aes256-ctr" \
-i ~/.ssh/your-key.pem ec2-user@instance-ip
Add to ~/.ssh/config:
Host cloudmapper *.cloudmapper.*
User ec2-user
KexAlgorithms ecdh-sha2-nistp256,ecdh-sha2-nistp384
Ciphers aes128-ctr,aes256-ctr
MACs hmac-sha2-256,hmac-sha2-512
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