Replies: 6 comments 5 replies
-
|
It seems that instead of rebooting the system, running |
Beta Was this translation helpful? Give feedback.
-
|
hi, i have the same problem, despite the solution, it s always down can you help me my log 2023-02-27T04:10:48.420832553Z Waiting for Nextcloud to start... im french boy, sorry for my bad english |
Beta Was this translation helpful? Give feedback.
-
|
thanks for your help, now, after reboot, aio master conteners only restarting with "you should be able to fix this by adding the '--dns="ip.adress.of.the.dns.server" option to the docker run command but aio apache is healthy now |
Beta Was this translation helpful? Give feedback.
-
|
Hello regarding `the Apache container does not run in privileged mode, there is no way that Nextcloud AIO or Caddy can enable this for you' |
Beta Was this translation helpful? Give feedback.
-
This is not working on WSL2 on my machine. I have followed exactly, but keep getting the error for resizing the buffer. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
If you see a warning like this, you have to increase the
maximum buffer sizeon your host machine (outside docker).Solution
echo "net.core.rmem_max = 7500000" | sudo tee /etc/sysctl.d/nextcloud-aio-buffer-increase.confshould be set, to increase buffer size on reboot, change will apply after reboot or see the line below how to activate it temporary without rebootsysctl "net.core.rmem_max=7500000"enables buffer size increase on-the-fly temporary, then restart Nextcloud AIO from the AIO Interfaceecho "net.core.wmem_max = 7500000" | sudo tee /etc/sysctl.d/nextcloud-aio-buffer-increase.confshould be set, to increase buffer size on reboot, change will apply after reboot or see the line below how to activate it temporary without rebootsysctl "net.core.wmem_max=7500000"enables buffer size increase on-the-fly temporary, then restart Nextcloud AIO from the AIO InterfaceNote for Docker Desktop instances: See https://stackoverflow.com/a/69294687 for how to apply sysctl config values.
Background
Due to the fact that (for good reasons) the Apache container does not run in privileged mode, there is no way that Nextcloud AIO or Caddy can enable this for you, i.e.,
/procis read-only for containers.See quic documentation.
Beta Was this translation helpful? Give feedback.
All reactions