elco
elco
IImmich
Created by elco on 4/4/2025 in #help-desk-support
Smart search not working
As per the title, smart search doesnt seem to work. ive typed the word car into the bar and nothing comes up. looking at the server logs there doesnt seem to be anything related to this. ive done the search at 10:27 PM and these ar eteh logs, you can see from 12:00:29 am till 10:28:00 pm these are the only ones: I am on the latest stable release v1.131.3 all docker services are up and healthy ML is running (http://immich-machine-learning:3003) with smart search model ViT-B-32__openai . Running on debian VM using the script
[Nest] 7 - 04/04/2025, 12:00:29 AM LOG [Microservices:BackupService] Database Backup Success
[Nest] 17 - 04/04/2025, 10:27:16 PM LOG [Api:EventRepository] Websocket Connect: WeFSan_dBzaZbe5GAAAR
[Nest] 17 - 04/04/2025, 10:28:00 PM ERROR [Api:LoggingRepository~531uskz8] Unable to send file: Error
Error: ENOENT: no such file or directory, access 'upload/thumbs/7accfcfb-6a57-4d5a-9ee2-d4c1fde4bfb5/69/0a/690a6eb9-3456-4595-8ced-3b6601eb8ec1-thumbnail.webp'
at async access (node:internal/fs/promises:605:10)
at async sendFile (/usr/src/app/dist/utils/file.js:53:9)
at async AssetMediaController.viewAsset (/usr/src/app/dist/controllers/asset-media.controller.js:60:13)
[Nest] 17 - 04/04/2025, 10:28:00 PM ERROR [Api:GlobalExceptionFilter~531uskz8] Unknown error: Error: ENOENT: no such file or directory, access 'upload/thumbs/7accfcfb-6a57-4d5a-9ee2-d4c1fde4bfb5/69/0a/690a6eb9-3456-4595-8ced-3b6601eb8ec1-thumbnail.webp'
Error: ENOENT: no such file or directory, access 'upload/thumbs/7accfcfb-6a57-4d5a-9ee2-d4c1fde4bfb5/69/0a/690a6eb9-3456-4595-8ced-3b6601eb8ec1-thumbnail.webp'
at async access (node:internal/fs/promises:605:10)
at async sendFile (/usr/src/app/dist/utils/file.js:53:9)
at async AssetMediaController.viewAsset (/usr/src/app/dist/controllers/asset-media.controller.js:60:13)
[2243887.631927] clocksource: Long readout interval, skipping watchdog check: cs_nsec: 1884911776 wd_nsec: 1884911677
[Nest] 7 - 04/04/2025, 12:00:29 AM LOG [Microservices:BackupService] Database Backup Success
[Nest] 17 - 04/04/2025, 10:27:16 PM LOG [Api:EventRepository] Websocket Connect: WeFSan_dBzaZbe5GAAAR
[Nest] 17 - 04/04/2025, 10:28:00 PM ERROR [Api:LoggingRepository~531uskz8] Unable to send file: Error
Error: ENOENT: no such file or directory, access 'upload/thumbs/7accfcfb-6a57-4d5a-9ee2-d4c1fde4bfb5/69/0a/690a6eb9-3456-4595-8ced-3b6601eb8ec1-thumbnail.webp'
at async access (node:internal/fs/promises:605:10)
at async sendFile (/usr/src/app/dist/utils/file.js:53:9)
at async AssetMediaController.viewAsset (/usr/src/app/dist/controllers/asset-media.controller.js:60:13)
[Nest] 17 - 04/04/2025, 10:28:00 PM ERROR [Api:GlobalExceptionFilter~531uskz8] Unknown error: Error: ENOENT: no such file or directory, access 'upload/thumbs/7accfcfb-6a57-4d5a-9ee2-d4c1fde4bfb5/69/0a/690a6eb9-3456-4595-8ced-3b6601eb8ec1-thumbnail.webp'
Error: ENOENT: no such file or directory, access 'upload/thumbs/7accfcfb-6a57-4d5a-9ee2-d4c1fde4bfb5/69/0a/690a6eb9-3456-4595-8ced-3b6601eb8ec1-thumbnail.webp'
at async access (node:internal/fs/promises:605:10)
at async sendFile (/usr/src/app/dist/utils/file.js:53:9)
at async AssetMediaController.viewAsset (/usr/src/app/dist/controllers/asset-media.controller.js:60:13)
[2243887.631927] clocksource: Long readout interval, skipping watchdog check: cs_nsec: 1884911776 wd_nsec: 1884911677
43 replies
IImmich
Created by elco on 2/10/2025 in #help-desk-support
Help with setting up Immich on a VM within Proxmox
Hi, I originally started immich on an LXC running docker. This is not supported and i think ive understood why... too many issues! I have now decided to go the VM supported route, spun up a VM with docker. To pass my /upload location which is a dataset on my hdd array, I have mounted an NFS mount point. /mnt/immich-library. My NFS server is actually on the Proxmox PVE itself, UPDATE: I have fixed the permissions issue, I am now able to start up immich and I can sucesfully see the mount mounted onto it. However .... immich has decided to create all the files in the mount location when ive explicitly told it to use the current installed directory where it was installed in .... UPDATE 2: Ok it seems immich creates all the folders even in the upload location, but it seems to only write the encoded videos / thumbs onto the library within the docker install, is this behaviour expected, I would ONLY like the mount to have the actual RAW pictures? .env file:
# The location where your uploaded files are stored
UPLOAD_LOCATION=/mnt/immich-library
THUMB_LOCATION=./library/thumbs
ENCODED_VIDEO_LOCATION=./library/encoded-video
PROFILE_LOCATION=./library/profile
BACKUP_LOCATION=./library/backups
# The location where your uploaded files are stored
UPLOAD_LOCATION=/mnt/immich-library
THUMB_LOCATION=./library/thumbs
ENCODED_VIDEO_LOCATION=./library/encoded-video
PROFILE_LOCATION=./library/profile
BACKUP_LOCATION=./library/backups
docker-compose.yml
volumes:
# Do not edit the next line. If you want to change the media storage loca>
- ${UPLOAD_LOCATION}:/usr/src/app/upload
- ${THUMB_LOCATION}:/usr/src/app/upload/thumbs
- ${ENCODED_VIDEO_LOCATION}:/usr/src/app/upload/encoded-video
- ${PROFILE_LOCATION}:/usr/src/app/upload/profile
- ${BACKUP_LOCATION}:/usr/src/app/upload/backups
- /etc/localtime:/etc/localtime:ro
volumes:
# Do not edit the next line. If you want to change the media storage loca>
- ${UPLOAD_LOCATION}:/usr/src/app/upload
- ${THUMB_LOCATION}:/usr/src/app/upload/thumbs
- ${ENCODED_VIDEO_LOCATION}:/usr/src/app/upload/encoded-video
- ${PROFILE_LOCATION}:/usr/src/app/upload/profile
- ${BACKUP_LOCATION}:/usr/src/app/upload/backups
- /etc/localtime:/etc/localtime:ro
my mounted folder (on PVE HOST):
/tank/library# backups encoded-video library profile thumbs upload
/tank/library# backups encoded-video library profile thumbs upload
my immich-app folder (on VM):
/immich-app/library# backups encoded-video profile thumbs
/immich-app/library# backups encoded-video profile thumbs
97 replies
IImmich
Created by elco on 12/30/2024 in #help-desk-support
Struggling to find the best way to store photos for my scenario
No description
41 replies