Looping Sign-in Screen

Hi. My first time installing NextCloud. I used NC 21. After running occ I tried to sign in but the sign in page keeps redirecting me to the signin page. Forgive me, it’s long. I want to be detailed.

Platform: Raspberry pi 4 8GB
micro SD card 32GB

Here’s what I did step by step:

  1. Download and burn Ubuntu 20.04.02 arm64 image to the micro SD card.

  2. Let it run on the Pi, SSH in, and then ran sudo apt update && sudo apt upgrade -y.

  3. Install Apache2, MariaDB, PHP and PHP modules (ctype, curl, dom, gd, iconv, json, libxml2, mbstring, openssl, posix, SimpleXML, XMLReader, XMLWriter, zip, unzip, session, zlib, pdo_mysql, fileinfo, bz2, intl, ldap, smb/cifs smbclient, ftp, imap, bcmath, gmp, exif, redis, imagick, ffmpeg, pcntl, phar)

  4. mysql_secure_installation and cleared all the tables, etc.

  5. setup /etc/mysql/mariadb.cnf

    [server]
    skip_name_resolve = 1
    innodb_buffer_pool_size = 128M
    innodb_buffer_pool_instances = 1
    innodb_flush_log_at_trx_commit = 2
    innodb_log_buffer_size = 32M
    innodb_max_dirty_pages_pct = 90
    query_cache_type = 1
    query_cache_limit = 2M
    query_cache_min_res_unit = 2k
    query_cache_size = 64M
    tmp_table_size= 64M
    max_heap_table_size= 64M
    slow_query_log = 1
    slow_query_log_file = /var/log/mysql/slow.log
    long_query_time = 1

    [client]
    default-character-set = utf8mb4

    [mysqld]
    character_set_server = utf8mb4
    collation_server = utf8mb4_general_ci
    transaction_isolation = READ-COMMITTED
    log-bin=mysqld-bin
    max_binlog_size = 268435456
    binlog_format = ROW
    innodb_large_prefix=on
    innodb_file_format=barracuda
    innodb_file_per_table=1

  6. Setup /etc/php/7.4/conf.d/mysql.ini

    [mysql]
    mysql.allow_local_infile=On
    mysql.allow_persistent=On
    mysql.cache_size=2000
    mysql.max_persistent=-1
    mysql.max_links=-1
    mysql.default_port=3306
    mysql.default_socket=/run/mysqld/mysqld.sock
    mysql.default_host=
    mysql.default_user=
    mysql.default_password=
    mysql.connect_timeout=60
    mysql.trace_mode=Off

  7. Create user and database

    CREATE USER ‘user’@‘localhost’ IDENTIFIED BY ‘password’;
    CREATE DATABASE IF NOT EXISTS nextcloud CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci;
    GRANT ALL PRIVILEGES ON nextcloud.* TO ‘user’@‘localhost’;
    FLUSH PRIVILEGES;
    quit;

  8. Restart Mysql/Mariadb
    sudo systemctl restart mysql

  9. Download & unzip nextcloud 21.0.0.zip to /var/www/

  10. chown -R www-data:www-data /var/www/nextcloud/

  11. Setup /etc/apache2/sites-available/nextcloud.conf

    Alias /nextcloud “/var/www/nextcloud/”
    <Directory /var/www/nextcloud/>
    Require all granted
    AllowOverride All
    Options FollowSymLinks MultiViews

    <IfModule mod_dav.c>
        Dav off
    </IfModule>
    
  12. Enable apache site and mods
    cd /etc/apache2/sites-available/
    sudo a2ensite nextcloud.conf
    sudo a2enmod rewrite
    sudo a2enmod headers

  13. restart apache2
    sudo systemctl restart apache2

  14. Run occ

    cd /var/www/nextcloud
    sudo -u www-data php occ maintenance:install --database “mysql” --database-name “nextcloud” --database-user “user” --database-pass “password” --admin-user “admin” --admin-pass “password”

  15. Went to http://XXX.XXX.XXX.XXX/nextcloud/index.php to try signing in using “admin” and “password” and got redirected to …

http://XXX.XXX.XXX.XXX/nextcloud/index.php/login?redirect_url=/nextcloud/index.php/apps/dashboard/

Which looks just like the login screen (asking for username and password)

I checked nextcloud.log in /var/www/nextcloud/data and here’s what it contains

{"reqId":"7HsCnEi1ux1P3q23uJPu","level":3,"time":"2021-03-19T06:35:43+00:00","remoteAddr":"","user":"admin","app":"no app in context","method":"","url":"--","message":{"Exception":"OCP\\AppFramework\\QueryException","Message":"Could not resolve trashManager! Class trashManager does not exist","Code":0,"Trace":[{"file":"/var/www/nextcloud/lib/private/AppFramework/Utility/SimpleContainer.php","line":126,"function":"resolve","class":"OC\\AppFramework\\Utility\\SimpleContainer","type":"->"},{"file":"/var/www/nextcloud/lib/private/ServerContainer.php","line":162,"function":"query","class":"OC\\AppFramework\\Utility\\SimpleContainer","type":"->"},{"file":"/var/www/nextcloud/lib/private/AppFramework/DependencyInjection/DIContainer.php","line":434,"function":"query","class":"OC\\ServerContainer","type":"->"},{"file":"/var/www/nextcloud/lib/private/AppFramework/Utility/SimpleContainer.php","line":56,"function":"query","class":"OC\\AppFramework\\DependencyInjection\\DIContainer","type":"->"},{"file":"/var/www/nextcloud/lib/private/AppFramework/Bootstrap/FunctionInjector.php","line":58,"function":"get","class":"OC\\AppFramework\\Utility\\SimpleContainer","type":"->"},{"function":"OC\\AppFramework\\Bootstrap\\{closure}","class":"OC\\AppFramework\\Bootstrap\\FunctionInjector","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/var/www/nextcloud/lib/private/AppFramework/Bootstrap/FunctionInjector.php","line":68,"function":"array_map"},{"file":"/var/www/nextcloud/lib/private/AppFramework/Bootstrap/BootContext.php","line":52,"function":"injectFn","class":"OC\\AppFramework\\Bootstrap\\FunctionInjector","type":"->"},{"file":"/var/www/nextcloud/apps/files_trashbin/lib/AppInfo/Application.php","line":57,"function":"injectFn","class":"OC\\AppFramework\\Bootstrap\\BootContext","type":"->"},{"file":"/var/www/nextcloud/lib/private/AppFramework/Bootstrap/Coordinator.php","line":176,"function":"boot","class":"OCA\\Files_Trashbin\\AppInfo\\Application","type":"->"},{"file":"/var/www/nextcloud/lib/private/legacy/OC_App.php","line":197,"function":"bootApp","class":"OC\\AppFramework\\Bootstrap\\Coordinator","type":"->"},{"file":"/var/www/nextcloud/lib/private/legacy/OC_App.php","line":137,"function":"loadApp","class":"OC_App","type":"::"},{"file":"/var/www/nextcloud/apps/dav/lib/AppInfo/Application.php","line":124,"function":"loadApps","class":"OC_App","type":"::"},{"file":"/var/www/nextcloud/lib/private/AppFramework/Bootstrap/Coordinator.php","line":176,"function":"boot","class":"OCA\\DAV\\AppInfo\\Application","type":"->"},{"file":"/var/www/nextcloud/lib/private/legacy/OC_App.php","line":197,"function":"bootApp","class":"OC\\AppFramework\\Bootstrap\\Coordinator","type":"->"},{"file":"/var/www/nextcloud/lib/private/legacy/OC_App.php","line":137,"function":"loadApp","class":"OC_App","type":"::"},{"file":"/var/www/nextcloud/lib/private/legacy/OC_Util.php","line":203,"function":"loadApps","class":"OC_App","type":"::"},{"file":"/var/www/nextcloud/lib/private/User/Session.php","line":554,"function":"setupFS","class":"OC_Util","type":"::"},{"file":"/var/www/nextcloud/lib/private/User/Session.php","line":415,"function":"prepareUserLogin","class":"OC\\User\\Session","type":"->"},{"file":"/var/www/nextcloud/lib/private/User/Session.php","line":624,"function":"completeLogin","class":"OC\\User\\Session","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/var/www/nextcloud/lib/private/User/Session.php","line":367,"function":"loginWithPassword","class":"OC\\User\\Session","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/var/www/nextcloud/lib/private/Setup.php","line":440,"function":"login","class":"OC\\User\\Session","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/var/www/nextcloud/core/Command/Maintenance/Install.php","line":108,"function":"install","class":"OC\\Setup","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/var/www/nextcloud/3rdparty/symfony/console/Command/Command.php","line":255,"function":"execute","class":"OC\\Core\\Command\\Maintenance\\Install","type":"->"},{"file":"/var/www/nextcloud/3rdparty/symfony/console/Application.php","line":1009,"function":"run","class":"Symfony\\Component\\Console\\Command\\Command","type":"->"},{"file":"/var/www/nextcloud/3rdparty/symfony/console/Application.php","line":273,"function":"doRunCommand","class":"Symfony\\Component\\Console\\Application","type":"->"},{"file":"/var/www/nextcloud/3rdparty/symfony/console/Application.php","line":149,"function":"doRun","class":"Symfony\\Component\\Console\\Application","type":"->"},{"file":"/var/www/nextcloud/lib/private/Console/Application.php","line":215,"function":"run","class":"Symfony\\Component\\Console\\Application","type":"->"},{"file":"/var/www/nextcloud/console.php","line":100,"function":"run","class":"OC\\Console\\Application","type":"->"},{"file":"/var/www/nextcloud/occ","line":11,"args":["/var/www/nextcloud/console.php"],"function":"require_once"}],"File":"/var/www/nextcloud/lib/private/AppFramework/Utility/SimpleContainer.php","Line":115,"CustomMessage":"Could not boot files_trashbinCould not resolve trashManager! Class trashManager does not exist"},"userAgent":"--","version":"21.0.0.18"}
{"reqId":"7HsCnEi1ux1P3q23uJPu","level":3,"time":"2021-03-19T06:35:43+00:00","remoteAddr":"","user":"admin","app":"no app in context","method":"","url":"--","message":{"Exception":"OCP\\AppFramework\\QueryException","Message":"Could not resolve OCA\\Files_Versions\\Versions\\IVersionManager! Class can not be instantiated","Code":0,"Trace":[{"file":"/var/www/nextcloud/lib/private/AppFramework/Utility/SimpleContainer.php","line":126,"function":"resolve","class":"OC\\AppFramework\\Utility\\SimpleContainer","type":"->"},{"file":"/var/www/nextcloud/lib/private/AppFramework/DependencyInjection/DIContainer.php","line":459,"function":"query","class":"OC\\AppFramework\\Utility\\SimpleContainer","type":"->"},{"file":"/var/www/nextcloud/lib/private/AppFramework/DependencyInjection/DIContainer.php","line":431,"function":"queryNoFallback","class":"OC\\AppFramework\\DependencyInjection\\DIContainer","type":"->"},{"file":"/var/www/nextcloud/lib/private/AppFramework/Utility/SimpleContainer.php","line":56,"function":"query","class":"OC\\AppFramework\\DependencyInjection\\DIContainer","type":"->"},{"file":"/var/www/nextcloud/apps/files_versions/lib/AppInfo/Application.php","line":119,"function":"get","class":"OC\\AppFramework\\Utility\\SimpleContainer","type":"->"},{"file":"/var/www/nextcloud/apps/files_versions/lib/AppInfo/Application.php","line":106,"function":"loadBackend","class":"OCA\\Files_Versions\\AppInfo\\Application","type":"->"},{"file":"/var/www/nextcloud/lib/private/AppFramework/Bootstrap/FunctionInjector.php","line":68,"function":"registerVersionBackends","class":"OCA\\Files_Versions\\AppInfo\\Application","type":"->"},{"file":"/var/www/nextcloud/lib/private/AppFramework/Bootstrap/BootContext.php","line":52,"function":"injectFn","class":"OC\\AppFramework\\Bootstrap\\FunctionInjector","type":"->"},{"file":"/var/www/nextcloud/apps/files_versions/lib/AppInfo/Application.php","line":91,"function":"injectFn","class":"OC\\AppFramework\\Bootstrap\\BootContext","type":"->"},{"file":"/var/www/nextcloud/lib/private/AppFramework/Bootstrap/Coordinator.php","line":176,"function":"boot","class":"OCA\\Files_Versions\\AppInfo\\Application","type":"->"},{"file":"/var/www/nextcloud/lib/private/legacy/OC_App.php","line":197,"function":"bootApp","class":"OC\\AppFramework\\Bootstrap\\Coordinator","type":"->"},{"file":"/var/www/nextcloud/lib/private/legacy/OC_App.php","line":137,"function":"loadApp","class":"OC_App","type":"::"},{"file":"/var/www/nextcloud/apps/dav/lib/AppInfo/Application.php","line":124,"function":"loadApps","class":"OC_App","type":"::"},{"file":"/var/www/nextcloud/lib/private/AppFramework/Bootstrap/Coordinator.php","line":176,"function":"boot","class":"OCA\\DAV\\AppInfo\\Application","type":"->"},{"file":"/var/www/nextcloud/lib/private/legacy/OC_App.php","line":197,"function":"bootApp","class":"OC\\AppFramework\\Bootstrap\\Coordinator","type":"->"},{"file":"/var/www/nextcloud/lib/private/legacy/OC_App.php","line":137,"function":"loadApp","class":"OC_App","type":"::"},{"file":"/var/www/nextcloud/lib/private/legacy/OC_Util.php","line":203,"function":"loadApps","class":"OC_App","type":"::"},{"file":"/var/www/nextcloud/lib/private/User/Session.php","line":554,"function":"setupFS","class":"OC_Util","type":"::"},{"file":"/var/www/nextcloud/lib/private/User/Session.php","line":415,"function":"prepareUserLogin","class":"OC\\User\\Session","type":"->"},{"file":"/var/www/nextcloud/lib/private/User/Session.php","line":624,"function":"completeLogin","class":"OC\\User\\Session","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/var/www/nextcloud/lib/private/User/Session.php","line":367,"function":"loginWithPassword","class":"OC\\User\\Session","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/var/www/nextcloud/lib/private/Setup.php","line":440,"function":"login","class":"OC\\User\\Session","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/var/www/nextcloud/core/Command/Maintenance/Install.php","line":108,"function":"install","class":"OC\\Setup","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/var/www/nextcloud/3rdparty/symfony/console/Command/Command.php","line":255,"function":"execute","class":"OC\\Core\\Command\\Maintenance\\Install","type":"->"},{"file":"/var/www/nextcloud/3rdparty/symfony/console/Application.php","line":1009,"function":"run","class":"Symfony\\Component\\Console\\Command\\Command","type":"->"},{"file":"/var/www/nextcloud/3rdparty/symfony/console/Application.php","line":273,"function":"doRunCommand","class":"Symfony\\Component\\Console\\Application","type":"->"},{"file":"/var/www/nextcloud/3rdparty/symfony/console/Application.php","line":149,"function":"doRun","class":"Symfony\\Component\\Console\\Application","type":"->"},{"file":"/var/www/nextcloud/lib/private/Console/Application.php","line":215,"function":"run","class":"Symfony\\Component\\Console\\Application","type":"->"},{"file":"/var/www/nextcloud/console.php","line":100,"function":"run","class":"OC\\Console\\Application","type":"->"},{"file":"/var/www/nextcloud/occ","line":11,"args":["/var/www/nextcloud/console.php"],"function":"require_once"}],"File":"/var/www/nextcloud/lib/private/AppFramework/Utility/SimpleContainer.php","Line":111,"CustomMessage":"Could not boot files_versionsCould not resolve OCA\\Files_Versions\\Versions\\IVersionManager! Class can not be instantiated"},"userAgent":"--","version":"21.0.0.18"}

Apache2’s access.log

XXX.XXX.XXX.YYY - - [19/Mar/2021:06:37:45 +0000] "GET /nextcloud/ HTTP/1.1" 302 1335 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.82 Safari/537.36"
XXX.XXX.XXX.YYY - - [19/Mar/2021:06:37:46 +0000] "GET /nextcloud/ HTTP/1.1" 302 1245 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.82 Safari/537.36"
XXX.XXX.XXX.YYY - - [19/Mar/2021:06:37:46 +0000] "GET /nextcloud/index.php/login HTTP/1.1" 200 6262 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.82 Safari/537.36"
XXX.XXX.XXX.YYY - - [19/Mar/2021:06:37:47 +0000] "GET /nextcloud/index.php/login HTTP/1.1" 200 6263 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.82 Safari/537.36"
XXX.XXX.XXX.YYY - - [19/Mar/2021:06:37:47 +0000] "GET /nextcloud/cron.php HTTP/1.1" 200 1211 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.82 Safari/537.36"
XXX.XXX.XXX.YYY - - [19/Mar/2021:06:37:52 +0000] "POST /nextcloud/index.php/login HTTP/1.1" 303 1130 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.82 Safari/537.36"
XXX.XXX.XXX.YYY - - [19/Mar/2021:06:37:52 +0000] "GET /nextcloud/index.php/apps/dashboard/ HTTP/1.1" 303 1142 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.82 Safari/537.36"
XXX.XXX.XXX.YYY - - [19/Mar/2021:06:37:52 +0000] "GET /nextcloud/index.php/login?redirect_url=/nextcloud/index.php/apps/dashboard/ HTTP/1.1" 200 6292 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.82 Safari/537.36"
XXX.XXX.XXX.YYY - - [19/Mar/2021:06:37:52 +0000] "GET /nextcloud/cron.php HTTP/1.1" 200 1217 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.82 Safari/537.36"
XXX.XXX.XXX.YYY - - [19/Mar/2021:06:37:56 +0000] "GET /nextcloud/index.php/login?redirect_url=/nextcloud/index.php/apps/dashboard/ HTTP/1.1" 200 6297 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.82 Safari/537.36"
XXX.XXX.XXX.YYY - - [19/Mar/2021:06:37:56 +0000] "GET /nextcloud/core/img/favicon.ico HTTP/1.1" 200 3777 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.82 Safari/537.36"
XXX.XXX.XXX.YYY - - [19/Mar/2021:06:37:56 +0000] "GET /nextcloud/cron.php HTTP/1.1" 200 1209 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.82 Safari/537.36"
XXX.XXX.XXX.YYY - - [19/Mar/2021:06:38:09 +0000] "GET /nextcloud/index.php/apps/dashboard/ HTTP/1.1" 303 1155 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.82 Safari/537.36"
XXX.XXX.XXX.YYY - - [19/Mar/2021:06:38:09 +0000] "GET /nextcloud/index.php/login?redirect_url=/nextcloud/index.php/apps/dashboard/ HTTP/1.1" 200 6298 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.82 Safari/537.36"
XXX.XXX.XXX.YYY - - [19/Mar/2021:06:38:09 +0000] "GET /nextcloud/cron.php HTTP/1.1" 200 1207 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.82 Safari/537.36"
XXX.XXX.XXX.YYY - - [19/Mar/2021:06:38:21 +0000] "GET /nextcloud/index.php/login?redirect_url=/nextcloud/index.php/apps/dashboard/ HTTP/1.1" 200 6293 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.82 Safari/537.36"
XXX.XXX.XXX.YYY - - [19/Mar/2021:06:38:21 +0000] "GET /nextcloud/core/img/favicon.ico HTTP/1.1" 200 3777 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.82 Safari/537.36"
XXX.XXX.XXX.YYY - - [19/Mar/2021:06:38:21 +0000] "GET /nextcloud/cron.php HTTP/1.1" 200 1205 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.82 Safari/537.36"
XXX.XXX.XXX.YYY - - [19/Mar/2021:06:38:23 +0000] "GET /nextcloud/index.php/login?redirect_url=/nextcloud/index.php/apps/dashboard/ HTTP/1.1" 200 6291 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.82 Safari/537.36"
XXX.XXX.XXX.YYY - - [19/Mar/2021:06:38:23 +0000] "GET /nextcloud/core/img/favicon.ico HTTP/1.1" 200 3776 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.82 Safari/537.36"
XXX.XXX.XXX.YYY - - [19/Mar/2021:06:38:23 +0000] "GET /nextcloud/cron.php HTTP/1.1" 200 1211 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.82 Safari/537.36"
XXX.XXX.XXX.YYY - - [19/Mar/2021:06:50:24 +0000] "GET /nextcloud/index.php/csrftoken HTTP/1.1" 200 1216 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.82 Safari/537.36"
XXX.XXX.XXX.YYY - - [19/Mar/2021:07:02:24 +0000] "GET /nextcloud/index.php/csrftoken HTTP/1.1" 200 1219 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.82 Safari/537.36"
XXX.XXX.XXX.YYY - - [19/Mar/2021:07:07:16 +0000] "GET /nextcloud/ HTTP/1.1" 302 1247 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.82 Safari/537.36"
XXX.XXX.XXX.YYY - - [19/Mar/2021:07:07:17 +0000] "GET /nextcloud/index.php/login HTTP/1.1" 200 6261 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.82 Safari/537.36"
XXX.XXX.XXX.YYY - - [19/Mar/2021:07:07:21 +0000] "GET /nextcloud/admin HTTP/1.1" 404 11226 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.82 Safari/537.36"
XXX.XXX.XXX.YYY - - [19/Mar/2021:07:07:21 +0000] "GET /favicon.ico HTTP/1.1" 404 491 "http://XXX.XXX.XXX.XXX/nextcloud/admin" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.82 Safari/537.36"
XXX.XXX.XXX.YYY - - [19/Mar/2021:07:08:08 +0000] "-" 408 0 "-" "-"

Apache2’s error.log

[Fri Mar 19 06:33:34.125260 2021] [mpm_prefork:notice] [pid 70130] AH00163: Apache/2.4.41 (Ubuntu) configured -- resuming normal operations
[Fri Mar 19 06:33:34.125591 2021] [core:notice] [pid 70130] AH00094: Command line: '/usr/sbin/apache2'
[Fri Mar 19 06:34:59.549512 2021] [mpm_prefork:notice] [pid 70130] AH00169: caught SIGTERM, shutting down
[Fri Mar 19 06:34:59.840111 2021] [mpm_prefork:notice] [pid 72638] AH00163: Apache/2.4.41 (Ubuntu) configured -- resuming normal operations
[Fri Mar 19 06:34:59.840330 2021] [core:notice] [pid 72638] AH00094: Command line: '/usr/sbin/apache2'

continued …

MySQL’s error.log

2021-03-19  6:33:07 0 [Note] InnoDB: Using Linux native AIO
2021-03-19  6:33:07 0 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
2021-03-19  6:33:07 0 [Note] InnoDB: Uses event mutexes
2021-03-19  6:33:07 0 [Note] InnoDB: Compressed tables use zlib 1.2.11
2021-03-19  6:33:07 0 [Note] InnoDB: Number of pools: 1
2021-03-19  6:33:07 0 [Note] InnoDB: Using generic crc32 instructions
2021-03-19  6:33:07 0 [Note] InnoDB: Initializing buffer pool, total size = 128M, instances = 1, chunk size = 128M
2021-03-19  6:33:07 0 [Note] InnoDB: Completed initialization of buffer pool
2021-03-19  6:33:07 0 [Note] InnoDB: If the mysqld execution user is authorized, page cleaner thread priority can be changed. See the man page of setpriority().
2021-03-19  6:33:07 0 [Note] InnoDB: 128 out of 128 rollback segments are active.
2021-03-19  6:33:07 0 [Note] InnoDB: Creating shared tablespace for temporary tables
2021-03-19  6:33:07 0 [Note] InnoDB: Setting file './ibtmp1' size to 12 MB. Physically writing the file full; Please wait ...
2021-03-19  6:33:07 0 [Note] InnoDB: File './ibtmp1' size is now 12 MB.
2021-03-19  6:33:07 0 [Note] InnoDB: 10.3.25 started; log sequence number 1625443; transaction id 21
2021-03-19  6:33:07 0 [Note] InnoDB: Loading buffer pool(s) from /var/lib/mysql/ib_buffer_pool
2021-03-19  6:33:07 0 [Note] Plugin 'FEEDBACK' is disabled.
2021-03-19  6:33:07 0 [Note] InnoDB: Buffer pool(s) load completed at 210319  6:33:07
2021-03-19  6:33:07 0 [Note] Server socket created on IP: '127.0.0.1'.
2021-03-19  6:33:07 0 [Note] Reading of all Master_info entries succeeded
2021-03-19  6:33:07 0 [Note] Added new Master_info '' to hash table
2021-03-19  6:33:07 0 [Note] /usr/sbin/mysqld: ready for connections.
Version: '10.3.25-MariaDB-0ubuntu0.20.04.1'  socket: '/run/mysqld/mysqld.sock'  port: 3306  Ubuntu 20.04
2021-03-19  6:33:54 0 [Note] /usr/sbin/mysqld (initiated by: unknown): Normal shutdown
2021-03-19  6:33:54 0 [Note] Event Scheduler: Purging the queue. 0 events
2021-03-19  6:33:54 0 [Note] InnoDB: FTS optimize thread exiting.
2021-03-19  6:33:54 0 [Note] InnoDB: Starting shutdown...
2021-03-19  6:33:54 0 [Note] InnoDB: Dumping buffer pool(s) to /var/lib/mysql/ib_buffer_pool
2021-03-19  6:33:54 0 [Note] InnoDB: Buffer pool(s) dump completed at 210319  6:33:54
2021-03-19  6:33:56 0 [Note] InnoDB: Shutdown completed; log sequence number 1625452; transaction id 26
2021-03-19  6:33:56 0 [Note] InnoDB: Removed temporary tablespace data file: "ibtmp1"
2021-03-19  6:33:56 0 [Note] /usr/sbin/mysqld: Shutdown complete

2021-03-19  6:33:56 0 [Note] InnoDB: Using Linux native AIO
2021-03-19  6:33:56 0 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
2021-03-19  6:33:56 0 [Note] InnoDB: Uses event mutexes
2021-03-19  6:33:56 0 [Note] InnoDB: Compressed tables use zlib 1.2.11
2021-03-19  6:33:56 0 [Note] InnoDB: Number of pools: 1
2021-03-19  6:33:56 0 [Note] InnoDB: Using generic crc32 instructions
2021-03-19  6:33:57 0 [Note] InnoDB: Initializing buffer pool, total size = 128M, instances = 1, chunk size = 128M
2021-03-19  6:33:57 0 [Note] InnoDB: Completed initialization of buffer pool
2021-03-19  6:33:57 0 [Note] InnoDB: If the mysqld execution user is authorized, page cleaner thread priority can be changed. See the man page of setpriority().
2021-03-19  6:33:57 0 [Note] InnoDB: 128 out of 128 rollback segments are active.
2021-03-19  6:33:57 0 [Note] InnoDB: Creating shared tablespace for temporary tables
2021-03-19  6:33:57 0 [Note] InnoDB: Setting file './ibtmp1' size to 12 MB. Physically writing the file full; Please wait ...
2021-03-19  6:33:57 0 [Note] InnoDB: File './ibtmp1' size is now 12 MB.
2021-03-19  6:33:57 0 [Note] InnoDB: Waiting for purge to start
2021-03-19  6:33:57 0 [Note] InnoDB: 10.3.25 started; log sequence number 1625452; transaction id 21
2021-03-19  6:33:57 0 [Note] InnoDB: Loading buffer pool(s) from /var/lib/mysql/ib_buffer_pool
2021-03-19  6:33:57 0 [Note] Plugin 'FEEDBACK' is disabled.
2021-03-19  6:33:57 0 [Note] InnoDB: Buffer pool(s) load completed at 210319  6:33:57
2021-03-19  6:33:57 0 [Note] Server socket created on IP: '127.0.0.1'.
2021-03-19  6:33:57 0 [Note] Reading of all Master_info entries succeeded
2021-03-19  6:33:57 0 [Note] Added new Master_info '' to hash table
2021-03-19  6:33:57 0 [Note] /usr/sbin/mysqld: ready for connections.
Version: '10.3.25-MariaDB-0ubuntu0.20.04.1-log'  socket: '/run/mysqld/mysqld.sock'  port: 3306  Ubuntu 20.04
2021-03-19  6:33:57 0 [Note] /usr/sbin/mysqld (initiated by: unknown): Normal shutdown
2021-03-19  6:33:57 0 [Note] Event Scheduler: Purging the queue. 0 events
2021-03-19  6:33:57 0 [Note] InnoDB: FTS optimize thread exiting.
2021-03-19  6:33:57 0 [Note] InnoDB: Starting shutdown...
2021-03-19  6:33:57 0 [Note] InnoDB: Dumping buffer pool(s) to /var/lib/mysql/ib_buffer_pool
2021-03-19  6:33:57 0 [Note] InnoDB: Buffer pool(s) dump completed at 210319  6:33:57
2021-03-19  6:33:59 0 [Note] InnoDB: Shutdown completed; log sequence number 1625461; transaction id 22
2021-03-19  6:33:59 0 [Note] InnoDB: Removed temporary tablespace data file: "ibtmp1"
2021-03-19  6:33:59 0 [Note] /usr/sbin/mysqld: Shutdown complete

2021-03-19  6:33:59 0 [Note] InnoDB: Using Linux native AIO
2021-03-19  6:33:59 0 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
2021-03-19  6:33:59 0 [Note] InnoDB: Uses event mutexes
2021-03-19  6:33:59 0 [Note] InnoDB: Compressed tables use zlib 1.2.11
2021-03-19  6:33:59 0 [Note] InnoDB: Number of pools: 1
2021-03-19  6:33:59 0 [Note] InnoDB: Using generic crc32 instructions
2021-03-19  6:33:59 0 [Note] InnoDB: Initializing buffer pool, total size = 128M, instances = 1, chunk size = 128M
2021-03-19  6:33:59 0 [Note] InnoDB: Completed initialization of buffer pool
2021-03-19  6:33:59 0 [Note] InnoDB: If the mysqld execution user is authorized, page cleaner thread priority can be changed. See the man page of setpriority().
2021-03-19  6:33:59 0 [Note] InnoDB: 128 out of 128 rollback segments are active.
2021-03-19  6:33:59 0 [Note] InnoDB: Creating shared tablespace for temporary tables
2021-03-19  6:33:59 0 [Note] InnoDB: Setting file './ibtmp1' size to 12 MB. Physically writing the file full; Please wait ...
2021-03-19  6:33:59 0 [Note] InnoDB: File './ibtmp1' size is now 12 MB.
2021-03-19  6:33:59 0 [Note] InnoDB: 10.3.25 started; log sequence number 1625461; transaction id 21
2021-03-19  6:33:59 0 [Note] InnoDB: Loading buffer pool(s) from /var/lib/mysql/ib_buffer_pool
2021-03-19  6:33:59 0 [Note] Plugin 'FEEDBACK' is disabled.
2021-03-19  6:33:59 0 [Note] InnoDB: Buffer pool(s) load completed at 210319  6:33:59
2021-03-19  6:33:59 0 [Note] Server socket created on IP: '127.0.0.1'.
2021-03-19  6:33:59 0 [Note] Reading of all Master_info entries succeeded
2021-03-19  6:33:59 0 [Note] Added new Master_info '' to hash table
2021-03-19  6:33:59 0 [Note] /usr/sbin/mysqld: ready for connections.
Version: '10.3.25-MariaDB-0ubuntu0.20.04.1-log'  socket: '/run/mysqld/mysqld.sock'  port: 3306  Ubuntu 20.04
2021-03-19  6:33:59 0 [Note] /usr/sbin/mysqld (initiated by: unknown): Normal shutdown
2021-03-19  6:33:59 0 [Note] Event Scheduler: Purging the queue. 0 events
2021-03-19  6:33:59 0 [Note] InnoDB: FTS optimize thread exiting.
2021-03-19  6:34:00 0 [Note] InnoDB: Starting shutdown...
2021-03-19  6:34:00 0 [Note] InnoDB: Dumping buffer pool(s) to /var/lib/mysql/ib_buffer_pool
2021-03-19  6:34:00 0 [Note] InnoDB: Buffer pool(s) dump completed at 210319  6:34:00
2021-03-19  6:34:01 0 [Note] InnoDB: Shutdown completed; log sequence number 1625470; transaction id 22
2021-03-19  6:34:01 0 [Note] InnoDB: Removed temporary tablespace data file: "ibtmp1"
2021-03-19  6:34:02 0 [Note] /usr/sbin/mysqld: Shutdown complete

2021-03-19  6:34:02 0 [Note] InnoDB: Using Linux native AIO
2021-03-19  6:34:02 0 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
2021-03-19  6:34:02 0 [Note] InnoDB: Uses event mutexes
2021-03-19  6:34:02 0 [Note] InnoDB: Compressed tables use zlib 1.2.11
2021-03-19  6:34:02 0 [Note] InnoDB: Number of pools: 1
2021-03-19  6:34:02 0 [Note] InnoDB: Using generic crc32 instructions
2021-03-19  6:34:02 0 [Note] InnoDB: Initializing buffer pool, total size = 128M, instances = 1, chunk size = 128M
2021-03-19  6:34:02 0 [Note] InnoDB: Completed initialization of buffer pool
2021-03-19  6:34:02 0 [Note] InnoDB: If the mysqld execution user is authorized, page cleaner thread priority can be changed. See the man page of setpriority().
2021-03-19  6:34:02 0 [Note] InnoDB: 128 out of 128 rollback segments are active.
2021-03-19  6:34:02 0 [Note] InnoDB: Creating shared tablespace for temporary tables
2021-03-19  6:34:02 0 [Note] InnoDB: Setting file './ibtmp1' size to 12 MB. Physically writing the file full; Please wait ...
2021-03-19  6:34:02 0 [Note] InnoDB: File './ibtmp1' size is now 12 MB.
2021-03-19  6:34:02 0 [Note] InnoDB: Waiting for purge to start
2021-03-19  6:34:02 0 [Note] InnoDB: 10.3.25 started; log sequence number 1625470; transaction id 21
2021-03-19  6:34:02 0 [Note] InnoDB: Loading buffer pool(s) from /var/lib/mysql/ib_buffer_pool
2021-03-19  6:34:02 0 [Note] Plugin 'FEEDBACK' is disabled.
2021-03-19  6:34:02 0 [Note] InnoDB: Buffer pool(s) load completed at 210319  6:34:02
2021-03-19  6:34:02 0 [Note] Server socket created on IP: '127.0.0.1'.
2021-03-19  6:34:02 0 [Note] Reading of all Master_info entries succeeded
2021-03-19  6:34:02 0 [Note] Added new Master_info '' to hash table
2021-03-19  6:34:02 0 [Note] /usr/sbin/mysqld: ready for connections.
Version: '10.3.25-MariaDB-0ubuntu0.20.04.1-log'  socket: '/run/mysqld/mysqld.sock'  port: 3306  Ubuntu 20.04
2021-03-19  6:34:02 0 [Note] /usr/sbin/mysqld (initiated by: unknown): Normal shutdown
2021-03-19  6:34:02 0 [Note] InnoDB: FTS optimize thread exiting.
2021-03-19  6:34:02 0 [Note] Event Scheduler: Purging the queue. 0 events
2021-03-19  6:34:02 0 [Note] InnoDB: Starting shutdown...
2021-03-19  6:34:02 0 [Note] InnoDB: Dumping buffer pool(s) to /var/lib/mysql/ib_buffer_pool
2021-03-19  6:34:02 0 [Note] InnoDB: Buffer pool(s) dump completed at 210319  6:34:02
2021-03-19  6:34:04 0 [Note] InnoDB: Shutdown completed; log sequence number 1625479; transaction id 22
2021-03-19  6:34:04 0 [Note] InnoDB: Removed temporary tablespace data file: "ibtmp1"
2021-03-19  6:34:04 0 [Note] /usr/sbin/mysqld: Shutdown complete

2021-03-19  6:34:05 0 [Note] InnoDB: Using Linux native AIO
2021-03-19  6:34:05 0 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
2021-03-19  6:34:05 0 [Note] InnoDB: Uses event mutexes
2021-03-19  6:34:05 0 [Note] InnoDB: Compressed tables use zlib 1.2.11
2021-03-19  6:34:05 0 [Note] InnoDB: Number of pools: 1
2021-03-19  6:34:05 0 [Note] InnoDB: Using generic crc32 instructions
2021-03-19  6:34:05 0 [Note] InnoDB: Initializing buffer pool, total size = 128M, instances = 1, chunk size = 128M
2021-03-19  6:34:05 0 [Note] InnoDB: Completed initialization of buffer pool
2021-03-19  6:34:05 0 [Note] InnoDB: If the mysqld execution user is authorized, page cleaner thread priority can be changed. See the man page of setpriority().
2021-03-19  6:34:05 0 [Note] InnoDB: 128 out of 128 rollback segments are active.
2021-03-19  6:34:05 0 [Note] InnoDB: Creating shared tablespace for temporary tables
2021-03-19  6:34:05 0 [Note] InnoDB: Setting file './ibtmp1' size to 12 MB. Physically writing the file full; Please wait ...
2021-03-19  6:34:05 0 [Note] InnoDB: File './ibtmp1' size is now 12 MB.
2021-03-19  6:34:05 0 [Note] InnoDB: 10.3.25 started; log sequence number 1625479; transaction id 21
2021-03-19  6:34:05 0 [Note] InnoDB: Loading buffer pool(s) from /var/lib/mysql/ib_buffer_pool
2021-03-19  6:34:05 0 [Note] Plugin 'FEEDBACK' is disabled.
2021-03-19  6:34:05 0 [Note] InnoDB: Buffer pool(s) load completed at 210319  6:34:05
2021-03-19  6:34:05 0 [Note] Server socket created on IP: '127.0.0.1'.
2021-03-19  6:34:05 0 [Note] Reading of all Master_info entries succeeded
2021-03-19  6:34:05 0 [Note] Added new Master_info '' to hash table
2021-03-19  6:34:05 0 [Note] /usr/sbin/mysqld: ready for connections.
Version: '10.3.25-MariaDB-0ubuntu0.20.04.1-log'  socket: '/run/mysqld/mysqld.sock'  port: 3306  Ubuntu 20.04
2021-03-19  6:34:05 0 [Note] /usr/sbin/mysqld (initiated by: unknown): Normal shutdown
2021-03-19  6:34:05 0 [Note] InnoDB: FTS optimize thread exiting.
2021-03-19  6:34:05 0 [Note] Event Scheduler: Purging the queue. 0 events
2021-03-19  6:34:05 0 [Note] InnoDB: Starting shutdown...
2021-03-19  6:34:05 0 [Note] InnoDB: Dumping buffer pool(s) to /var/lib/mysql/ib_buffer_pool
2021-03-19  6:34:05 0 [Note] InnoDB: Buffer pool(s) dump completed at 210319  6:34:05
2021-03-19  6:34:07 0 [Note] InnoDB: Shutdown completed; log sequence number 1625488; transaction id 22
2021-03-19  6:34:07 0 [Note] InnoDB: Removed temporary tablespace data file: "ibtmp1"
2021-03-19  6:34:07 0 [Note] /usr/sbin/mysqld: Shutdown complete

2021-03-19  6:34:07 0 [Note] InnoDB: Using Linux native AIO
2021-03-19  6:34:07 0 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
2021-03-19  6:34:07 0 [Note] InnoDB: Uses event mutexes
2021-03-19  6:34:07 0 [Note] InnoDB: Compressed tables use zlib 1.2.11
2021-03-19  6:34:07 0 [Note] InnoDB: Number of pools: 1
2021-03-19  6:34:07 0 [Note] InnoDB: Using generic crc32 instructions
2021-03-19  6:34:07 0 [Note] InnoDB: Initializing buffer pool, total size = 128M, instances = 1, chunk size = 128M
2021-03-19  6:34:07 0 [Note] InnoDB: Completed initialization of buffer pool
2021-03-19  6:34:07 0 [Note] InnoDB: If the mysqld execution user is authorized, page cleaner thread priority can be changed. See the man page of setpriority().
2021-03-19  6:34:08 0 [Note] InnoDB: 128 out of 128 rollback segments are active.
2021-03-19  6:34:08 0 [Note] InnoDB: Creating shared tablespace for temporary tables
2021-03-19  6:34:08 0 [Note] InnoDB: Setting file './ibtmp1' size to 12 MB. Physically writing the file full; Please wait ...
2021-03-19  6:34:08 0 [Note] InnoDB: File './ibtmp1' size is now 12 MB.
2021-03-19  6:34:08 0 [Note] InnoDB: 10.3.25 started; log sequence number 1625488; transaction id 21
2021-03-19  6:34:08 0 [Note] InnoDB: Loading buffer pool(s) from /var/lib/mysql/ib_buffer_pool
2021-03-19  6:34:08 0 [Note] Plugin 'FEEDBACK' is disabled.
2021-03-19  6:34:08 0 [Note] InnoDB: Buffer pool(s) load completed at 210319  6:34:08
2021-03-19  6:34:08 0 [Note] Server socket created on IP: '127.0.0.1'.
2021-03-19  6:34:08 0 [Note] Reading of all Master_info entries succeeded
2021-03-19  6:34:08 0 [Note] Added new Master_info '' to hash table
2021-03-19  6:34:08 0 [Note] /usr/sbin/mysqld: ready for connections.
Version: '10.3.25-MariaDB-0ubuntu0.20.04.1-log'  socket: '/run/mysqld/mysqld.sock'  port: 3306  Ubuntu 20.04
2021-03-19  6:34:08 0 [Note] /usr/sbin/mysqld (initiated by: unknown): Normal shutdown
2021-03-19  6:34:08 0 [Note] Event Scheduler: Purging the queue. 0 events
2021-03-19  6:34:08 0 [Note] InnoDB: FTS optimize thread exiting.
2021-03-19  6:34:08 0 [Note] InnoDB: Starting shutdown...
2021-03-19  6:34:08 0 [Note] InnoDB: Dumping buffer pool(s) to /var/lib/mysql/ib_buffer_pool
2021-03-19  6:34:08 0 [Note] InnoDB: Buffer pool(s) dump completed at 210319  6:34:08
2021-03-19  6:34:10 0 [Note] InnoDB: Shutdown completed; log sequence number 1625497; transaction id 22
2021-03-19  6:34:10 0 [Note] InnoDB: Removed temporary tablespace data file: "ibtmp1"
2021-03-19  6:34:10 0 [Note] /usr/sbin/mysqld: Shutdown complete

2021-03-19  6:34:10 0 [Note] InnoDB: Using Linux native AIO
2021-03-19  6:34:10 0 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
2021-03-19  6:34:10 0 [Note] InnoDB: Uses event mutexes
2021-03-19  6:34:10 0 [Note] InnoDB: Compressed tables use zlib 1.2.11
2021-03-19  6:34:10 0 [Note] InnoDB: Number of pools: 1
2021-03-19  6:34:10 0 [Note] InnoDB: Using generic crc32 instructions
2021-03-19  6:34:10 0 [Note] InnoDB: Initializing buffer pool, total size = 128M, instances = 1, chunk size = 128M
2021-03-19  6:34:10 0 [Note] InnoDB: Completed initialization of buffer pool
2021-03-19  6:34:10 0 [Note] InnoDB: If the mysqld execution user is authorized, page cleaner thread priority can be changed. See the man page of setpriority().
2021-03-19  6:34:10 0 [Note] InnoDB: 128 out of 128 rollback segments are active.
2021-03-19  6:34:10 0 [Note] InnoDB: Creating shared tablespace for temporary tables
2021-03-19  6:34:10 0 [Note] InnoDB: Setting file './ibtmp1' size to 12 MB. Physically writing the file full; Please wait ...
2021-03-19  6:34:10 0 [Note] InnoDB: File './ibtmp1' size is now 12 MB.
2021-03-19  6:34:10 0 [Note] InnoDB: Waiting for purge to start
2021-03-19  6:34:10 0 [Note] InnoDB: 10.3.25 started; log sequence number 1625497; transaction id 21
2021-03-19  6:34:10 0 [Note] InnoDB: Loading buffer pool(s) from /var/lib/mysql/ib_buffer_pool
2021-03-19  6:34:10 0 [Note] Plugin 'FEEDBACK' is disabled.
2021-03-19  6:34:10 0 [Note] InnoDB: Buffer pool(s) load completed at 210319  6:34:10
2021-03-19  6:34:10 0 [Note] Server socket created on IP: '127.0.0.1'.
2021-03-19  6:34:10 0 [Note] Reading of all Master_info entries succeeded
2021-03-19  6:34:10 0 [Note] Added new Master_info '' to hash table
2021-03-19  6:34:10 0 [Note] /usr/sbin/mysqld: ready for connections.
Version: '10.3.25-MariaDB-0ubuntu0.20.04.1-log'  socket: '/run/mysqld/mysqld.sock'  port: 3306  Ubuntu 20.04

Help please. I can’t figure out why it won’t log in. :sweat_smile: Thank you!