docker icon indicating copy to clipboard operation
docker copied to clipboard

Update Nextcloud from 21.0.3 to 21.0.7 keeps Nextcloud in maintenance mode

Open sparkitny opened this issue 2 years ago • 2 comments

Hi,

I tried to update my containers & installation to the latest version (21.0.3 --> 21.0.7) doing

docker-compose pull
docker-compose build --pull

I ran through several problems with imho are resolved. These problems where

  • Change important parts of the config -- stick mariadb to 10.5 -- remove labels section from service proxy -- reconfigure service letsencrypt-companion as it's based on a new image and thus adding a new volume acme -- downgrade docker-compose to version 2 as the option volumes_from isn't supported in version 3

Before upating the docker-compose file is only followed the usual instructions mentioned above (docker-compose pull) and thus when updating and starting mariadb 10.6 was used. I don't know whether this destroyed the database. I tried temporarily a new volume for the database, but I got no hint.

The only important warning is due to too many certificate renewals, but imho it shouldn't be a problem as the certificate is valid for three months yet in my case. Do you aggree?

letsencrypt-companion_1  | [Tue Jan  4 13:10:59 UTC 2022] Create new order error. Le_OrderFinalize not found. {
letsencrypt-companion_1  |   "type": "urn:ietf:params:acme:error:rateLimited",
letsencrypt-companion_1  |   "detail": "Error creating new order :: too many certificates (5) already issued for this exact set of domains in the last 168 hours: ****************************: see https://letsencrypt.org/docs/rate-limits/",
letsencrypt-companion_1  |   "status": 429
letsencrypt-companion_1  | }
letsencrypt-companion_1  | [Tue Jan  4 13:10:59 UTC 2022] Please check log file for more details: /dev/null
letsencrypt-companion_1  | Sleep for 3600s

Hopefully somebody can help. Here's my anonymized compose and logs

version: '2'

services:
  db:
    image: mariadb:10.5
    command: --transaction-isolation=READ-COMMITTED --binlog-format=ROW
    restart: always
    volumes:
      - db:/var/lib/mysql
      - /etc/localtime:/etc/localtime:ro
      - /etc/timezone:/etc/timezone:ro
    environment:
      - MYSQL_ROOT_PASSWORD=*******
    env_file:
      - db.env

  redis:
    image: redis:alpine
    restart: always

  app:
    image: nextcloud:apache
    restart: always
    volumes:
      - /opt/containers/nextcloud/app:/var/www/html
      - /opt/containers/nextcloud/daten:/var/www/html/data
    environment:
      - VIRTUAL_HOST=******
      - LETSENCRYPT_HOST=*********
      - LETSENCRYPT_EMAIL=*******
      - MYSQL_HOST=db
      - REDIS_HOST=redis
      - OVERWRITEPROTOCOL=https
      - SMTP_HOST=*********
      - SMTP_SECURE=tls
      - SMTP_PORT=587
      - SMTP_AUTHTYPE=LOGIN
      - SMTP_NAME=******
      - SMTP_PASSWORD=******
      - MAIL_FROM_ADDRESS=**********
    env_file:
      - db.env
    depends_on:
      - db
      - redis
    networks:
      - proxy-tier
      - default

  cron:
    image: nextcloud:apache
    restart: always
    volumes:
      - /opt/containers/nextcloud/app:/var/www/html
    entrypoint: /cron.sh
    depends_on:
      - db
      - redis

  proxy:
    build: ./proxy
    restart: always
    ports:
      - 80:80
      - 443:443
#    labels:
#      com.github.jrcs.letsencrypt_nginx_proxy_companion.nginx_proxy: "true"
    volumes:
      - certs:/etc/nginx/certs:ro
      - vhost.d:/etc/nginx/vhost.d
      - html:/usr/share/nginx/html
      - /var/run/docker.sock:/tmp/docker.sock:ro
    networks:
      - proxy-tier

  letsencrypt-companion:
    image: nginxproxy/acme-companion
    restart: always
    volumes_from:
      - proxy
    volumes:
      - certs:/etc/nginx/certs:rw
      - acme:/etc/acme.sh
#     - vhost.d:/etc/nginx/vhost.d
#      - html:/usr/share/nginx/html
      - /var/run/docker.sock:/var/run/docker.sock:ro
    networks:
      - proxy-tier
    depends_on:
      - proxy

volumes:
  db:
  # nextcloud:
  certs:
  vhost.d:
  html:
  acme:

networks:
  proxy-tier:

Now, the logs

Starting apache_redis_1                 ... done
Starting apache_proxy_1    ... done
Starting apache_db_1                    ... done
Starting apache_letsencrypt-companion_1 ... done
Starting apache_app_1                   ... done
Starting apache_cron_1                  ... done
Attaching to apache_proxy_1, apache_phpadmin_1, apache_redis_1, apache_db_1, apache_letsencrypt-companion_1, apache_cron_1, apache_app_1
app_1                    | Configuring Redis as session handler
db_1                     | 2022-01-04 14:10:55+01:00 [Note] [Entrypoint]: Entrypoint script for MariaDB Server 1:10.5.13+maria~focal started.
db_1                     | 2022-01-04 14:10:56+01:00 [Note] [Entrypoint]: Switching to dedicated user 'mysql'
db_1                     | 2022-01-04 14:10:56+01:00 [Note] [Entrypoint]: Entrypoint script for MariaDB Server 1:10.5.13+maria~focal started.
db_1                     | 2022-01-04 14:10:56 0 [Note] mysqld (mysqld 10.5.13-MariaDB-1:10.5.13+maria~focal) starting as process 1 ...
db_1                     | 2022-01-04 14:10:56 0 [Warning] You need to use --log-bin to make --binlog-format work.
db_1                     | 2022-01-04 14:10:56 0 [Note] InnoDB: Uses event mutexes
db_1                     | 2022-01-04 14:10:56 0 [Note] InnoDB: Compressed tables use zlib 1.2.11
db_1                     | 2022-01-04 14:10:56 0 [Note] InnoDB: Number of pools: 1
db_1                     | 2022-01-04 14:10:56 0 [Note] InnoDB: Using crc32 + pclmulqdq instructions
db_1                     | 2022-01-04 14:10:56 0 [Note] mysqld: O_TMPFILE is not supported on /tmp (disabling future attempts)
db_1                     | 2022-01-04 14:10:56 0 [Note] InnoDB: Using Linux native AIO
db_1                     | 2022-01-04 14:10:56 0 [Note] InnoDB: Initializing buffer pool, total size = 134217728, chunk size = 134217728
db_1                     | 2022-01-04 14:10:56 0 [Note] InnoDB: Completed initialization of buffer pool
db_1                     | 2022-01-04 14:10:56 0 [Note] InnoDB: 128 rollback segments are active.
db_1                     | 2022-01-04 14:10:56 0 [Note] InnoDB: Creating shared tablespace for temporary tables
db_1                     | 2022-01-04 14:10:56 0 [Note] InnoDB: Setting file './ibtmp1' size to 12 MB. Physically writing the file full; Please wait ...
db_1                     | 2022-01-04 14:10:56 0 [Note] InnoDB: File './ibtmp1' size is now 12 MB.
db_1                     | 2022-01-04 14:10:56 0 [Note] InnoDB: 10.5.13 started; log sequence number 86429083; transaction id 147735
db_1                     | 2022-01-04 14:10:56 0 [Note] InnoDB: Loading buffer pool(s) from /var/lib/mysql/ib_buffer_pool
db_1                     | 2022-01-04 14:10:56 0 [Note] Plugin 'FEEDBACK' is disabled.
db_1                     | 2022-01-04 14:10:56 0 [Note] InnoDB: Buffer pool(s) load completed at 220104 14:10:56
db_1                     | 2022-01-04 14:10:56 0 [Note] Server socket created on IP: '::'.
db_1                     | 2022-01-04 14:10:56 0 [Warning] 'proxies_priv' entry '@% root@65f7a09415b7' ignored in --skip-name-resolve mode.
db_1                     | 2022-01-04 14:10:56 0 [Note] Reading of all Master_info entries succeeded
db_1                     | 2022-01-04 14:10:56 0 [Note] Added new Master_info '' to hash table
db_1                     | 2022-01-04 14:10:56 0 [Note] mysqld: ready for connections.
db_1                     | Version: '10.5.13-MariaDB-1:10.5.13+maria~focal'  socket: '/run/mysqld/mysqld.sock'  port: 3306  mariadb.org binary distribution
cron_1                   | crond: crond (busybox 1.30.1) started, log level 0
cron_1                   | crond: user:www-data entry:(null)
cron_1                   | 100001000010000100001000010000100001000010000100001000010000
cron_1                   | 111111111111111111111111
cron_1                   | 11111111111111111111111111111111
cron_1                   | 111111111111
cron_1                   | 1111111
letsencrypt-companion_1  | Info: running acme-companion version v2.1.2-5-g44bd2fa
proxy_1                  | Warning: A custom dhparam.pem file was provided. Best practice is to use standardized RFC7919 DHE groups instead.
proxy_1                  | forego      | starting dockergen.1 on port 5000
proxy_1                  | forego      | starting nginx.1 on port 5100
proxy_1                  | nginx.1     | 2022/01/04 13:10:55 [notice] 18#18: using the "epoll" event method
proxy_1                  | nginx.1     | 2022/01/04 13:10:55 [notice] 18#18: nginx/1.21.5
proxy_1                  | nginx.1     | 2022/01/04 13:10:55 [notice] 18#18: built by gcc 10.3.1 20211027 (Alpine 10.3.1_git20211027)
proxy_1                  | nginx.1     | 2022/01/04 13:10:55 [notice] 18#18: OS: Linux 5.4.0-73-generic
proxy_1                  | nginx.1     | 2022/01/04 13:10:55 [notice] 18#18: getrlimit(RLIMIT_NOFILE): 1048576:1048576
proxy_1                  | nginx.1     | 2022/01/04 13:10:55 [notice] 18#18: start worker processes
proxy_1                  | nginx.1     | 2022/01/04 13:10:55 [notice] 18#18: start worker process 23
proxy_1                  | nginx.1     | 2022/01/04 13:10:55 [notice] 18#18: start worker process 24
proxy_1                  | nginx.1     | 2022/01/04 13:10:55 [notice] 18#18: start worker process 25
proxy_1                  | nginx.1     | 2022/01/04 13:10:55 [notice] 18#18: start worker process 26
redis_1                  | 1:C 04 Jan 2022 13:10:55.808 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
redis_1                  | 1:C 04 Jan 2022 13:10:55.808 # Redis version=6.2.6, bits=64, commit=00000000, modified=0, pid=1, just started
redis_1                  | 1:C 04 Jan 2022 13:10:55.808 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf
redis_1                  | 1:M 04 Jan 2022 13:10:55.808 * monotonic clock: POSIX clock_gettime
redis_1                  | 1:M 04 Jan 2022 13:10:55.810 * Running mode=standalone, port=6379.
redis_1                  | 1:M 04 Jan 2022 13:10:55.810 # Server initialized
redis_1                  | 1:M 04 Jan 2022 13:10:55.810 # WARNING overcommit_memory is set to 0! Background save may fail under low memory condition. To fix this issue add 'vm.overcommit_memory = 1' to /etc/sysctl.conf and then reboot or run the command 'sysctl vm.overcommit_memory=1' for this to take effect.
redis_1                  | 1:M 04 Jan 2022 13:10:55.810 * Loading RDB produced by version 6.2.6
redis_1                  | 1:M 04 Jan 2022 13:10:55.810 * RDB age 49 seconds
redis_1                  | 1:M 04 Jan 2022 13:10:55.810 * RDB memory usage when created 0.78 Mb
redis_1                  | 1:M 04 Jan 2022 13:10:55.810 # Done loading RDB, keys loaded: 15, keys expired: 0.
redis_1                  | 1:M 04 Jan 2022 13:10:55.810 * DB loaded from disk: 0.000 seconds
redis_1                  | 1:M 04 Jan 2022 13:10:55.810 * Ready to accept connections
proxy_1                  | dockergen.1 | 2022/01/04 13:10:56 Generated '/etc/nginx/conf.d/default.conf' from 7 containers
proxy_1                  | dockergen.1 | 2022/01/04 13:10:56 Running 'nginx -s reload'
proxy_1                  | nginx.1     | 2022/01/04 13:10:56 [notice] 18#18: signal 1 (SIGHUP) received from 27, reconfiguring
proxy_1                  | nginx.1     | 2022/01/04 13:10:56 [notice] 18#18: reconfiguring
proxy_1                  | dockergen.1 | 2022/01/04 13:10:56 Watching docker events
proxy_1                  | nginx.1     | 2022/01/04 13:10:56 [notice] 18#18: using the "epoll" event method
proxy_1                  | nginx.1     | 2022/01/04 13:10:56 [notice] 18#18: start worker processes
proxy_1                  | nginx.1     | 2022/01/04 13:10:56 [notice] 18#18: start worker process 31
proxy_1                  | nginx.1     | 2022/01/04 13:10:56 [notice] 18#18: start worker process 32
proxy_1                  | nginx.1     | 2022/01/04 13:10:56 [notice] 18#18: start worker process 33
proxy_1                  | nginx.1     | 2022/01/04 13:10:56 [notice] 18#18: start worker process 34
proxy_1                  | dockergen.1 | 2022/01/04 13:10:56 Contents of /etc/nginx/conf.d/default.conf did not change. Skipping notification 'nginx -s reload'
app_1                    | AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using replaced.my.ip.address. Set the 'ServerName' directive globally to suppress this message
app_1                    | AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using replaced.my.ip.address. Set the 'ServerName' directive globally to suppress this message
app_1                    | [Tue Jan 04 13:10:56.565116 2022] [mpm_prefork:notice] [pid 1] AH00163: Apache/2.4.51 (Debian) PHP/8.0.14 configured -- resuming normal operations
app_1                    | [Tue Jan 04 13:10:56.565224 2022] [core:notice] [pid 1] AH00094: Command line: 'apache2 -D FOREGROUND'
proxy_1                  | nginx.1     | 2022/01/04 13:10:56 [notice] 23#23: gracefully shutting down
proxy_1                  | nginx.1     | 2022/01/04 13:10:56 [notice] 25#25: gracefully shutting down
proxy_1                  | nginx.1     | 2022/01/04 13:10:56 [notice] 25#25: exiting
proxy_1                  | nginx.1     | 2022/01/04 13:10:56 [notice] 23#23: exiting
proxy_1                  | nginx.1     | 2022/01/04 13:10:56 [notice] 23#23: exit
proxy_1                  | nginx.1     | 2022/01/04 13:10:56 [notice] 25#25: exit
proxy_1                  | nginx.1     | 2022/01/04 13:10:56 [notice] 24#24: gracefully shutting down
proxy_1                  | nginx.1     | 2022/01/04 13:10:56 [notice] 26#26: gracefully shutting down
proxy_1                  | nginx.1     | 2022/01/04 13:10:56 [notice] 24#24: exiting
proxy_1                  | nginx.1     | 2022/01/04 13:10:56 [notice] 26#26: exiting
proxy_1                  | nginx.1     | 2022/01/04 13:10:56 [notice] 24#24: exit
proxy_1                  | nginx.1     | 2022/01/04 13:10:56 [notice] 26#26: exit
proxy_1                  | nginx.1     | 2022/01/04 13:10:56 [notice] 18#18: signal 17 (SIGCHLD) received from 25
proxy_1                  | nginx.1     | 2022/01/04 13:10:56 [notice] 18#18: worker process 25 exited with code 0
proxy_1                  | nginx.1     | 2022/01/04 13:10:56 [notice] 18#18: worker process 26 exited with code 0
proxy_1                  | nginx.1     | 2022/01/04 13:10:56 [notice] 18#18: signal 29 (SIGIO) received
proxy_1                  | nginx.1     | 2022/01/04 13:10:56 [notice] 18#18: signal 17 (SIGCHLD) received from 24
proxy_1                  | nginx.1     | 2022/01/04 13:10:56 [notice] 18#18: worker process 24 exited with code 0
proxy_1                  | nginx.1     | 2022/01/04 13:10:56 [notice] 18#18: signal 29 (SIGIO) received
proxy_1                  | nginx.1     | 2022/01/04 13:10:56 [notice] 18#18: signal 17 (SIGCHLD) received from 23
proxy_1                  | nginx.1     | 2022/01/04 13:10:56 [notice] 18#18: worker process 23 exited with code 0
proxy_1                  | nginx.1     | 2022/01/04 13:10:56 [notice] 18#18: signal 29 (SIGIO) received
letsencrypt-companion_1  | Info: A custom dhparam.pem file was provided. Best practice is to use standardized RFC7919 Diffie-Hellman groups instead.
letsencrypt-companion_1  | Reloading nginx proxy (ce11786967782828020489e580df48a79ca3f50407b69c69a319c32f874793b9)...
proxy_1                  | nginx.1     | 2022/01/04 13:10:56 [notice] 18#18: signal 1 (SIGHUP) received from 36, reconfiguring
proxy_1                  | nginx.1     | 2022/01/04 13:10:56 [notice] 18#18: reconfiguring
letsencrypt-companion_1  | 2022/01/04 13:10:56 Generated '/etc/nginx/conf.d/default.conf' from 7 containers
letsencrypt-companion_1  | 2022/01/04 13:10:56 [notice] 36#36: signal process started
proxy_1                  | nginx.1     | 2022/01/04 13:10:56 [notice] 18#18: using the "epoll" event method
proxy_1                  | nginx.1     | 2022/01/04 13:10:56 [notice] 18#18: start worker processes
proxy_1                  | nginx.1     | 2022/01/04 13:10:56 [notice] 18#18: start worker process 47
proxy_1                  | nginx.1     | 2022/01/04 13:10:56 [notice] 18#18: start worker process 48
proxy_1                  | nginx.1     | 2022/01/04 13:10:56 [notice] 18#18: start worker process 49
proxy_1                  | nginx.1     | 2022/01/04 13:10:56 [notice] 18#18: start worker process 50
letsencrypt-companion_1  | 2022/01/04 13:10:57 Contents of /app/letsencrypt_service_data did not change. Skipping notification '/app/signal_le_service'
letsencrypt-companion_1  | 2022/01/04 13:10:57 Watching docker events
letsencrypt-companion_1  | 2022/01/04 13:10:57 Contents of /app/letsencrypt_service_data did not change. Skipping notification '/app/signal_le_service'
proxy_1                  | nginx.1     | 2022/01/04 13:10:57 [notice] 31#31: gracefully shutting down
proxy_1                  | nginx.1     | 2022/01/04 13:10:57 [notice] 34#34: gracefully shutting down
proxy_1                  | nginx.1     | 2022/01/04 13:10:57 [notice] 31#31: exiting
proxy_1                  | nginx.1     | 2022/01/04 13:10:57 [notice] 34#34: exiting
proxy_1                  | nginx.1     | 2022/01/04 13:10:57 [notice] 34#34: exit
proxy_1                  | nginx.1     | 2022/01/04 13:10:57 [notice] 31#31: exit
proxy_1                  | nginx.1     | 2022/01/04 13:10:57 [notice] 32#32: gracefully shutting down
proxy_1                  | nginx.1     | 2022/01/04 13:10:57 [notice] 32#32: exiting
proxy_1                  | nginx.1     | 2022/01/04 13:10:57 [notice] 32#32: exit
proxy_1                  | nginx.1     | 2022/01/04 13:10:57 [notice] 33#33: gracefully shutting down
proxy_1                  | nginx.1     | 2022/01/04 13:10:57 [notice] 33#33: exiting
proxy_1                  | nginx.1     | 2022/01/04 13:10:57 [notice] 33#33: exit
proxy_1                  | nginx.1     | 2022/01/04 13:10:57 [notice] 18#18: signal 17 (SIGCHLD) received from 34
proxy_1                  | nginx.1     | 2022/01/04 13:10:57 [notice] 18#18: worker process 31 exited with code 0
proxy_1                  | nginx.1     | 2022/01/04 13:10:57 [notice] 18#18: worker process 32 exited with code 0
proxy_1                  | nginx.1     | 2022/01/04 13:10:57 [notice] 18#18: worker process 33 exited with code 0
proxy_1                  | nginx.1     | 2022/01/04 13:10:57 [notice] 18#18: worker process 34 exited with code 0
proxy_1                  | nginx.1     | 2022/01/04 13:10:57 [notice] 18#18: signal 29 (SIGIO) received
letsencrypt-companion_1  | Reloading nginx proxy (ce11786967782828020489e580df48a79ca3f50407b69c69a319c32f874793b9)...
proxy_1                  | nginx.1     | 2022/01/04 13:10:57 [notice] 18#18: signal 1 (SIGHUP) received from 51, reconfiguring
proxy_1                  | nginx.1     | 2022/01/04 13:10:57 [notice] 18#18: reconfiguring
letsencrypt-companion_1  | 2022/01/04 13:10:57 Contents of /etc/nginx/conf.d/default.conf did not change. Skipping notification ''
letsencrypt-companion_1  | 2022/01/04 13:10:57 [notice] 51#51: signal process started
letsencrypt-companion_1  | Creating/renewal v220210554790154970.megasrv.de certificates... (v220210554790154970.megasrv.de)
proxy_1                  | nginx.1     | 2022/01/04 13:10:57 [notice] 18#18: using the "epoll" event method
proxy_1                  | nginx.1     | 2022/01/04 13:10:57 [notice] 18#18: start worker processes
proxy_1                  | nginx.1     | 2022/01/04 13:10:57 [notice] 18#18: start worker process 62
proxy_1                  | nginx.1     | 2022/01/04 13:10:57 [notice] 18#18: start worker process 63
proxy_1                  | nginx.1     | 2022/01/04 13:10:57 [notice] 18#18: start worker process 64
proxy_1                  | nginx.1     | 2022/01/04 13:10:57 [notice] 18#18: start worker process 65
proxy_1                  | nginx.1     | 2022/01/04 13:10:57 [notice] 47#47: gracefully shutting down
proxy_1                  | nginx.1     | 2022/01/04 13:10:57 [notice] 48#48: gracefully shutting down
proxy_1                  | nginx.1     | 2022/01/04 13:10:57 [notice] 49#49: gracefully shutting down
proxy_1                  | nginx.1     | 2022/01/04 13:10:57 [notice] 47#47: exiting
proxy_1                  | nginx.1     | 2022/01/04 13:10:57 [notice] 48#48: exiting
proxy_1                  | nginx.1     | 2022/01/04 13:10:57 [notice] 50#50: gracefully shutting down
proxy_1                  | nginx.1     | 2022/01/04 13:10:57 [notice] 50#50: exiting
proxy_1                  | nginx.1     | 2022/01/04 13:10:57 [notice] 47#47: exit
proxy_1                  | nginx.1     | 2022/01/04 13:10:57 [notice] 48#48: exit
proxy_1                  | nginx.1     | 2022/01/04 13:10:57 [notice] 50#50: exit
proxy_1                  | nginx.1     | 2022/01/04 13:10:57 [notice] 49#49: exiting
proxy_1                  | nginx.1     | 2022/01/04 13:10:57 [notice] 49#49: exit
proxy_1                  | nginx.1     | 2022/01/04 13:10:57 [notice] 18#18: signal 17 (SIGCHLD) received from 47
proxy_1                  | nginx.1     | 2022/01/04 13:10:57 [notice] 18#18: worker process 47 exited with code 0
proxy_1                  | nginx.1     | 2022/01/04 13:10:57 [notice] 18#18: signal 29 (SIGIO) received
proxy_1                  | nginx.1     | 2022/01/04 13:10:57 [notice] 18#18: signal 17 (SIGCHLD) received from 48
proxy_1                  | nginx.1     | 2022/01/04 13:10:57 [notice] 18#18: worker process 48 exited with code 0
proxy_1                  | nginx.1     | 2022/01/04 13:10:57 [notice] 18#18: signal 29 (SIGIO) received
proxy_1                  | nginx.1     | 2022/01/04 13:10:57 [notice] 18#18: signal 17 (SIGCHLD) received from 49
proxy_1                  | nginx.1     | 2022/01/04 13:10:57 [notice] 18#18: worker process 49 exited with code 0
proxy_1                  | nginx.1     | 2022/01/04 13:10:57 [notice] 18#18: signal 29 (SIGIO) received
proxy_1                  | nginx.1     | 2022/01/04 13:10:57 [notice] 18#18: signal 17 (SIGCHLD) received from 50
proxy_1                  | nginx.1     | 2022/01/04 13:10:57 [notice] 18#18: worker process 50 exited with code 0
proxy_1                  | nginx.1     | 2022/01/04 13:10:57 [notice] 18#18: signal 29 (SIGIO) received
letsencrypt-companion_1  | [Tue Jan  4 13:10:58 UTC 2022] Using CA: https://acme-v02.api.letsencrypt.org/directory
letsencrypt-companion_1  | [Tue Jan  4 13:10:58 UTC 2022] Creating domain key
letsencrypt-companion_1  | [Tue Jan  4 13:10:58 UTC 2022] The domain key is here: /etc/acme.sh/**************/***************************/********************.key
letsencrypt-companion_1  | [Tue Jan  4 13:10:58 UTC 2022] Single domain='***************************'
letsencrypt-companion_1  | [Tue Jan  4 13:10:58 UTC 2022] Getting domain auth token for each domain
letsencrypt-companion_1  | [Tue Jan  4 13:10:59 UTC 2022] Create new order error. Le_OrderFinalize not found. {
letsencrypt-companion_1  |   "type": "urn:ietf:params:acme:error:rateLimited",
letsencrypt-companion_1  |   "detail": "Error creating new order :: too many certificates (5) already issued for this exact set of domains in the last 168 hours: ****************************: see https://letsencrypt.org/docs/rate-limits/",
letsencrypt-companion_1  |   "status": 429
letsencrypt-companion_1  | }
letsencrypt-companion_1  | [Tue Jan  4 13:10:59 UTC 2022] Please check log file for more details: /dev/null
letsencrypt-companion_1  | Sleep for 3600s
cron_1                   | crond: user:www-data entry:(null)
cron_1                   | 100001000010000100001000010000100001000010000100001000010000
cron_1                   | 111111111111111111111111
cron_1                   | 11111111111111111111111111111111
cron_1                   | 111111111111
cron_1                   | 1111111
cron_1                   | crond: wakeup dt=4
cron_1                   | crond: file www-data:
cron_1                   | crond:  line php -f /var/www/html/cron.php

sparkitny avatar Jan 04 '22 13:01 sparkitny

Forgot one thing:

With the first request to my nextcloud I get this error log

proxy_1                  | nginx.1     | 2022/01/04 13:17:17 [warn] 65#65: no resolver defined to resolve r3.o.lencr.org while requesting certificate status, responder: r3.o.lencr.org, certificate: "/etc/nginx/certs/************************.crt"

sparkitny avatar Jan 04 '22 13:01 sparkitny

Have you set NEXTCLOUD_UPDATEor run occ upgrade?

J0WI avatar Feb 02 '22 22:02 J0WI