Troubleshooting
Common Issues
AWS CLI Access Denied
Symptom: AccessDenied error when running AWS CLI commands
Solution:
- Verify your AWS credentials are correctly configured:
aws configure list --profile manifest - Ensure the
AWS_PROFILEenvironment variable is set:export AWS_PROFILE=manifest - Verify your credentials have not expired by contacting Manifest Cyber
Docker Permission Denied
Symptom: permission denied error when running Docker commands
Solution: Add your user to the docker group:
sudo usermod -aG docker $USERLog out and log back in for the changes to take effect.
SSH Connection Failures
Symptom: Unable to SSH to the target server from the installation client
Solution:
- Verify network connectivity:
ping <target-server-ip> - Verify SSH port is open:
nc -zv <target-server-ip> 22 - Verify SSH key permissions:
chmod 600 ~/.ssh/id_rsa - Ensure the target server's firewall allows SSH connections from the client
Installation Wizard Failures
Symptom: Wizard fails during installation
Solution:
- Check the wizard logs for specific error messages
- Verify all prerequisites are met on both client and server (see Requirements)
- Ensure sufficient disk space is available on the target server
Support
For additional assistance, contact Manifest Cyber support:
- Email: [email protected]
Related Documentation
- Requirements - Server and client requirements
- Installation - Installation process
- Configuration Reference - Configuration options
Updated 5 days ago