EACCES Permission Denied Error on LibreChat Startup on Debian 12 What happened? #2141
Unanswered
miztizm
asked this question in
Troubleshooting
Replies: 2 comments 3 replies
-
try manually creating the required directories and give them the necessary permissions: # Create necessary directories
mkdir -p /app/uploads/temp
mkdir -p /app/client/public/images/temp
mkdir -p /app/api/logs/
mkdir -p /app/data
# Give write permission to the directory
chmod -R 777 /app/uploads/temp
chmod -R 777 /app/client/public/images
chmod -R 777 /app/api/logs/
chmod -R 777 /app/data |
Beta Was this translation helpful? Give feedback.
0 replies
-
Same problem here! |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
What happened?
When attempting to start the LibreChat application on Debian 12, the process exits with code 1 after throwing an EACCES (permission denied) error while trying to open a log file (/app/api/logs/error-2024-03-19.log). Additionally, a message indicating that Redis has not been initialized is logged, noting that Redis support is experimental. This issue prevents the LibreChat application from starting successfully.
Steps to Reproduce
What browsers are you seeing the problem on?
No response
Relevant log output
Screenshots
No response
Code of Conduct
Beta Was this translation helpful? Give feedback.
All reactions