-
Notifications
You must be signed in to change notification settings - Fork 30
Description
Thanks for this project -- I'm hoping it'll make setting up and maintaining a local indico instance more streamlined.
I'm on the current HEAD at 14ee107 on a fresh install of alma 9, using a standard docker install. When I follow the instructions in the README and get to the docker compose up, it successfully installs everything but it seems when it tries to start the services, runs into some permissions errors. e.g.
indico-celery-1 | Traceback (most recent call last):
indico-celery-1 | File "/usr/local/lib/python3.12/logging/config.py", line 608, in configure
indico-celery-1 | handler = self.configure_handler(handlers[name])
indico-celery-1 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
indico-celery-1 | File "/usr/local/lib/python3.12/logging/config.py", line 876, in configure_handler
indico-celery-1 | result = factory(**kwargs)
indico-celery-1 | ^^^^^^^^^^^^^^^^^
indico-celery-1 | File "/usr/local/lib/python3.12/logging/__init__.py", line 1231, in __init__
indico-celery-1 | StreamHandler.__init__(self, self._open())
indico-celery-1 | ^^^^^^^^^^^^
indico-celery-1 | File "/usr/local/lib/python3.12/logging/__init__.py", line 1263, in _open
indico-celery-1 | return open_func(self.baseFilename, self.mode,
indico-celery-1 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
indico-celery-1 | PermissionError: [Errno 13] Permission denied: '/opt/indico/log/celery.log'
with similar errors from indico-celery-beat-1 and indico-web-1. indico-celery-beat-1 and indico-celery-1 then both exit. Digging around, it looks like /opt/indico/log/ in these containers is owned by root, so it's not surprising the user indico can't write to it. How can I deal with this, and why does this seem to work for others if these are permissions within the containers?
The full log is here:
output.log
Thanks!
-Larry