Troubleshooting¶
Common issues and solutions for atlcli.
Authentication Errors¶
401 Unauthorized¶
Causes: - Invalid or expired API token - Wrong email address - Incorrect instance URL
Solutions: 1. Regenerate API token at Atlassian Account 2. Verify email matches your Atlassian account 3. Check URL includes https://
403 Forbidden¶
Causes: - Account lacks required permissions - Project/space access restricted
Solutions: 1. Verify account has access to the project/space 2. Contact your Atlassian admin for permissions
Connection Errors¶
Network Timeout¶
Solutions: 1. Check internet connection 2. Verify Atlassian status at status.atlassian.com 3. Try again with --verbose for details
SSL Certificate Error¶
Solutions: 1. Update system certificates 2. Check for corporate proxy/firewall
Confluence Issues¶
Sync Conflicts¶
Solutions: 1. Pull latest changes: atlcli wiki docs pull 2. Merge manually 3. Force push: atlcli wiki docs push --force
Page Not Found¶
Causes: - Page was deleted on Confluence - Page ID changed
Solutions: 1. Re-pull directory: atlcli wiki docs pull 2. Remove stale local file
Jira Issues¶
Invalid JQL¶
Solutions: 1. Check JQL syntax 2. Verify field names exist 3. Quote values with spaces
# Correct
atlcli jira search --jql "status = 'In Progress'"
# Wrong
atlcli jira search --jql "status = In Progress"
Issue Type Not Found¶
Solutions: 1. List available types: atlcli jira field list --type issuetype 2. Use correct type name for your project
Field Not Editable¶
Solutions: - Use transitions for status changes - Some fields are read-only
Performance¶
Slow Commands¶
Solutions: 1. Use --limit to reduce results 2. Use more specific JQL 3. Check network latency
High Memory Usage¶
Solutions: 1. Process results in batches 2. Use --json and pipe to jq for large datasets
Debug Mode¶
Enable verbose output:
Getting Help¶
- Check this documentation
- Search GitHub Issues
- Open a new issue with:
- atlcli version
- Command that failed
- Full error message
- Steps to reproduce