Welcome! This guide will help you upload AI models and files to the Haiven server using the web-based FileBrowser interface.
Note: You must be on the correct network to access this service. Contact your administrator if you cannot reach the login page.
Once logged in, you'll see the FileBrowser interface:
Files must be uploaded to the correct location based on their type:
| Model Type | Upload Directory Path |
|---|---|
| GGUF LLM models | /uploads/models/gguf/ |
| Stable Diffusion Checkpoints | /uploads/models/image/checkpoints/ |
| LoRA models | /uploads/models/image/loras/ |
| VAE models | /uploads/models/image/vae/ |
| ControlNet models | /uploads/models/image/controlnet/ |
| Embeddings | /uploads/models/image/embeddings/ |
| Text Encoders | /uploads/models/image/text_encoders/ |
| Temporary/test files | /uploads/temp/ |
For files under 10GB:
Tips:
- Your browser must stay open until the upload completes
- You can upload multiple files at once
- Upload will resume from the beginning if interrupted
Recommended for files larger than 10GB
If you're comfortable with the command line, rsync provides more reliable uploads for large files:
rsync -avP --progress -e 'ssh -p 25636' \
/path/to/your/local/model.gguf \
username@haiven:/mnt/storage/uploads/models/gguf/
Replace:
- /path/to/your/local/model.gguf - Path to your file
- username - Your username
- Adjust the destination path for different model types
Benefits of rsync:
- Resumes interrupted transfers
- Shows detailed progress
- More reliable for very large files
- Works even if your connection drops temporarily
Note: You'll need SSH access (port 25636) and your administrator must provide SSH credentials.
The FileBrowser also provides read-only access to view existing models and generated content:
/models/ - All production AI models currently in use/models/gguf/ - LLM models/models/image/ - Image generation models/storage/ - Generated outputs and user dataImportant: You can only view and download from these directories. To upload new models, always use the /uploads/ directory.
/uploads/ or any subfolderUse this to organize your uploads (e.g., create a folder with your name or project)
/uploads/Note: You can only delete files in the /uploads/ directory. Files in /models/ and /storage/ are read-only.
Your upload process follows these steps:
/uploads/ staging area/mnt/models/gguf//mnt/models/image/Important: Files don't automatically become available after upload. An administrator must approve and configure them first.
mixtral-8x7b-instruct-q4_k_m.gguf instead of model.gguf/uploads/temp/ for testingAfter uploading, verify the file was transferred correctly:
/uploads/temp/ after testing| Problem | Possible Solution |
|---|---|
| Upload stuck at 0% | Check your network connection; try a smaller test file first |
| Upload fails near completion | Use rsync method for files over 5GB |
| Progress bar disappears | Browser may have crashed; check if file appeared in the directory |
| Upload is very slow | Large file uploads can take hours; be patient or use rsync |
| "Forbidden" or "Permission denied" | You're trying to upload to a read-only directory; use /uploads/ instead |
| Problem | Possible Solution |
|---|---|
| Can't create folder | Make sure you're in /uploads/ or a subdirectory |
| Can't delete file | File is in /models/ or /storage/ (read-only); only /uploads/ allows deletion |
| File disappeared after upload | Check if you're in the correct directory; use Search function |
| Directory tree won't expand | Refresh the page; may be a temporary UI issue |
| Problem | Possible Solution |
|---|---|
| Login page won't load | Verify you're on the correct network; check URL spelling |
| Invalid credentials | Contact administrator for correct username/password |
| Certificate warning keeps appearing | Install the certificate or continue accepting the risk each time |
| Logged out unexpectedly | Session may have expired; log in again |
FileBrowser works best with modern browsers:
- Chrome/Chromium (recommended)
- Firefox
- Safari
- Edge
If you experience issues, try:
1. Clearing browser cache
2. Using an incognito/private window
3. Trying a different browser
4. Disabling browser extensions
| File Size | Recommended Upload Method |
|---|---|
| < 1GB | Web interface (drag-and-drop or upload button) |
| 1-10GB | Web interface (keep browser open, stable connection) |
| 10-50GB | rsync via SSH (command line) |
| 50GB+ | rsync via SSH with screen/tmux session |
/uploads/temp/LLM Models: /uploads/models/gguf/
SD Checkpoints: /uploads/models/image/checkpoints/
LoRA Models: /uploads/models/image/loras/
Test Files: /uploads/temp/
/uploads/ only/models/ and /storage/ are read-onlyNeed More Information?
README.md in the same directoryHappy uploading!