I installed ownCloud Infiniate Scale in version 8.0.0 on my Raspberry Pi with Trixie as OS.
My systemd Script looks like this:
[Install]
WantedBy=multi-user.target
[Service]
Environment=IDM_ADMIN_PASSWORD=admin
Environment=OCIS_ADD_RUN_SERVICES=auth-app
Environment=OCIS_INSECURE=false
Environment=OCIS_LOG_LEVEL=warn
Environment=OCIS_URL=https://foobar.de
Environment=PROXY_ENABLE_APP_AUTH=true
Environment=PROXY_HTTP_ADDR=127.0.0.1:4000
Environment=PROXY_TLS=false
ExecStart=/opt/ocis/ocis server
Group=ocis
Restart=always
Type=simple
User=ocis
[Unit]
After=network.target
Description=ownCloud Infinite Scale
Documentation=https://owncloud.dev/ocis/
In the logs I’m seeing warnings like these:
{“level”:“warn”,“service”:“storage-system”,“pkg”:“rhttp”,“time”:“2026-03-01T14:37:45+01:00”,“message”:“missing or incomplet
e nats configuration. Events will not be published.”}{“level”:“warn”,“service”:“ocm”,“pkg”:“rhttp”,“traceid”:“ad69034cbdd7461515515a951c0354c4”,“host”:“127.0.0.1”,“method”:“GET”,“uri”:“/”,“url”:“/”,“proto”:“HTTP/1.1”,“status”:404,“size”:19,“start”:“01/Mar/2026:14:37:45 +0100”,“end”:“01/Mar/2026:14:37:45 +0100”,“time_ns”:255481,“time”:“2026-03-01T14:37:45+01:00”,“message”:“http”}
{“level”:“warn”,“service”:“idp”,“kid”:“private-key”,“path”:“/data/cloud/.ocis/idp/private-key.pem”,“time”:“2026-03-01T14:37:45+01:00”,“message”:“skipped as signer with same kid already loaded”}
{“level”:“warn”,“service”:“frontend”,“pkg”:“rhttp”,“traceid”:“13a666ed52f19d47d7d54d4b6bf2ea93”,“time”:“2026-03-01T14:37:47+01:00”,“message”:“core access token not set for URL /”}
{“level”:“warn”,“service”:“frontend”,“pkg”:“rhttp”,“traceid”:“13a666ed52f19d47d7d54d4b6bf2ea93”,“host”:“127.0.0.1”,“method”:“GET”,“uri”:“/”,“url”:“/”,“proto”:“HTTP/1.1”,“status”:401,“size”:0,“start”:“01/Mar/2026:14:37:47 +0100”,“end”:“01/Mar/2026:14:37:47 +0100”,“time_ns”:117555,“time”:“2026-03-01T14:37:47+01:00”,“message”:“http”}
Is there anything I can do, to get rid of these messages? They appear right after the start of OCIS.