Help & Fixes
This page provides resources for getting help with Kamiwaza and solutions to common issues you might encounter.
Getting Help
If you have questions or run into issues, we're here to help:
- Join our Discord community
- Visit our website
- Visit our repo
- Try our client SDK
- Contact our support team
We're committed to making your experience with Kamiwaza as smooth as possible.
Reporting Issues
When reporting issues to our support team or community, please include:
- Environment Details: OS version, Docker version, hardware specs (
bash startup/kamiwazad.sh doctor
orkamiwaza doctor
for .deb installs is helpful) - Error Messages: Complete error text and stack traces
- Steps to Reproduce: Detailed steps that led to the issue
- Logs: Relevant log files and container output
- Configuration: Any custom configuration or settings
This information helps us provide faster and more accurate solutions to your problems.
Common Issues and Fixes
Installation Issues
Docker GPU Error: Could Not Select Device Driver
Problem: NVIDIA Container Runtime not found or misconfigured.
Solution:
- Ensure NVIDIA drivers are properly installed
- Install NVIDIA Container Toolkit
- Verify Docker can access GPU devices
Port Already in Use
Problem: Kamiwaza fails to start because required ports are occupied.
Solution:
- Check what's running on ports 3000, 8000, 5432, 19530, 9090
- Stop conflicting services or change Kamiwaza's port configuration
- Use
lsof -i :PORT_NUMBER
to identify processes using specific ports
Insufficient System Resources
Problem: Installation fails due to low disk space, RAM, or CPU cores.
Solution:
- Ensure at least 16GB RAM available
- Verify CPU supports required virtualization features
Model Deployment Issues
Model Deployment Failures
Problem: Models fail to deploy or become unavailable.
Solutions:
- Model not found: Ensure the model exists in your catalog or use Novice Mode
- Checkpoint too large for VRAM: Choose a smaller/quantized variant (AWQ, MLX, GGUF) or reduce batch size
- Service unavailable/port errors: Stop/Remove and redeploy the model
- Outdated catalog: Refresh the Models page or restart the server
Performance Problems
Problem: Slow responses or high resource usage.
Solutions:
- Slow responses: Use faster models or quantized variants; reduce max tokens and context length
- High memory/OOM: Lower batch size, context length, and KV cache; use lower-VRAM variants
- Cold starts: First request may be slower; send a short warm-up prompt after deploy
SDK and API Issues
Module Import Error
Problem: ModuleNotFoundError: No module named 'kamiwaza_client'
when using notebooks and Kamiwaza SDK.
Solution:
!pip uninstall -y kamiwaza
!pip install kamiwaza
General Troubleshooting Steps
When encountering issues, follow these diagnostic steps:
- Check Service Status: Verify all Kamiwaza services are running
- Review Logs: Check container logs for specific error messages
- Verify Resources: Ensure sufficient CPU, RAM, and disk space
- Test Connectivity: Verify network connectivity between components
- Restart Services: Try stopping and restarting affected services
- Check Configuration: Verify configuration files and environment variables