Skip to content

Manage

Managing Services

Operation Command
Check Status docker-compose ps
View All Containers docker ps
View Portal Logs tail -f logs/iq-portal/app.log
View Agent Logs tail -f logs/iq-agent/app.log
Restart All docker-compose restart
Restart Specific docker-compose restart <service-name>
Stop Services docker-compose down

Logs Directory Structure:

Text Only
1
2
3
4
trust3-iq/
├── logs/
   ├── iq-agent/   # IQ Agent service logs
   └── iq-portal/  # Web portal logs

Troubleshooting Tips:

  • Verify API keys in .env file
  • Check network connectivity to AI provider APIs
  • Review firewall settings for remote access

Uninstallation

  1. Stop and remove containers:

    Bash
    docker-compose down        # Keep data
    docker-compose down -v     # Remove data (⚠️ permanent)
    

  2. Remove Docker images:

    Bash
    docker-compose down --rmi all
    

  3. Clean up files:

    Bash
    rm -rf data/ logs/
    

  4. Verify cleanup:

    Bash
    docker ps -a | grep -E "iq-portal|iq-agent|metad|storaged|graphd|console|weaviate"
    
    Should return no results if all containers are removed.

  5. Logout (optional):

    Bash
    docker logout hub2.privacera.com
    

Data Loss Warning

Using -v flag permanently deletes all data including databases, configurations, and logs.

Next Steps