• Info
  • Update form Open SuSE 15.3 to 15.4

A recipe to update grommunio from Open SuSE 15.3 to 15.4.

  • Connect via SSH like Putty to the grommunio server
  • For most commands you may copy and paste the command to the grommunio server
  • Please note, this upgrade interrupts your mail system

Credits: some information I found here: https://community.grommunio.com/d/548-upgrade-appliance-to-opensuse-154/35

1. Preparation for the update

* If a virtualized environment is present, take a snapshot of the system
* If the server has an uptime of more than 30 days, it is recommended to reboot the server. Check the uptime with the command uptime and if necessary reboot with init 6 .
* Stop and disable postfix
systemctl stop postfix
systemctl disable postfix

2. Create a tar backup of /etc for later comparison or restore

mkdir -p /root/WH/bck/
tar -cvzf /root/WH/bck/etc.tgz /etc

3. Backup MariaDB

mysqldump --all-databases > /root/WH/bck/dump_grommunio.sql

4. Install current updates

zypper ref
zypper up

5. Remove the php-opcache module - new grommunio versions will not work if php-opcache is installed

rpm -e php7-opcache

6. Verify the MariaDB schema

gromox-dbop -U
current schema is gx-112 (May 2023)

7. Wait about 5 minutes to allow the schema upgrade for the domain and user databases and the index is rebuild

Use top or htop to see activity on databases.
Also use journalctl -f to see activities on this system. If you see messages like:
.... dbop_sqlite: upgrading /var/lib/gromox/user/x/y/exmdb/exchange.sqlite3 to schema EV-n
wait until all databases are updated. Current schema at July 2023 is EV-11.

8. Reboot the server

init 6

9. Document the current state before the distribution update

rpm -qa | sort > /root/SLES_15.3_PHP7.txt

10. Switch all repositories including other 3. party repositories like backup software from 15.3 to 15.4

sed -i 's/15.3/15.4/g' /etc/zypp/repos.d/*.repo
zypper refresh -f

11. Update gromox only

zypper update gromox
The question from zypper should be answered as "Uninstall all PHP7 Packages"

12. Distribution update to Open SuSE 15.4

zypper dup

13. Restart MariaDB to force DB upgrade

systemctl restart mariadb

14. Enable php-fpm

cp /etc/php8/fpm/php-fpm.conf.default /etc/php8/fpm/php-fpm.conf
systemctl enable php-fpm.service
systemctl restart php-fpm.service

15. Search and install missing packages

zypper info --requires grommunio | grep "|" | grep -wv "i+"
Install all listed packages like
zypper in patterns-grommunio

16. Sometime libhogweed.so.6 is missing, install this library

zypper in libhogweed6

17. Reboot server to activate the new modules and new kernel

init 6

18. Document the update

rpm -qa | sort > /root/SLES_15.4_PHP8.txt

19. Compare old state with current state

vim -d /root/SLES_15.4_PHP8.txt /root/SLES_15.3_PHP7.txt
If you find missing packages, reinstall them like
zypper in <MISSING-PACKAGE>

20. If rsnapshot is used, adapt the configuration file: /etc/rsnapshot.conf

21. Find newer sample configuration files, these usually have the extension .rpmnew

find /' -print | egrep '*.rpmnew'
Manually migrate the changes from .rpmnew file into the original configuration file, this can be done with vim or diff. However, be careful not to overwrite or destroy the configuration of your system. Please note: we created a configuration backup in second step.
vim -d <FILE> <FILE>.rpmnew
or use diff
diff <FILE> <FILE>.rpmnew
and manually edit the configuration file to populate the changes.
After making the changes in the configuration files, delete the .rpmnew files, they are no longer needed.
Also restart the affected services or reboot the server again with init 6.

22. Find outdated configuration files and delete them, these usually have the extension .rpmsave

find /* -print | egrep '*.rpmsave'
Manually delete any outdated configuration files, they are no longer needed.

23. Just in case, restart php-fpm and nginx

systemctl restart php-fpm.service
systemctl restart nginx.service

24. If IMAP or PO3 is used, recreate the MIDB databases for all users

Current update (May 2023) changes data in MIDB databases, so recreating all MIDB databases is encouraged. Please note this a CPU intensive process and should be done at offline hours.
Use this instructions to recreate the MIDBs: https://community.grommunio.com/d/1048-midb-what-are-these-databases-for-and-how-to-regenerate-the-midb

25. Look at the logs for errors

journalctl -f and tail /var/log/grommunio/* -f

26. Test the system

Please note, postfix is still disabled, mail sending is not yet possible.
Repair all errors.

27. If everything works, enable postfix

systemctl enable postfix
systemctl restart postfix
and delete the snapshot

28. Now the system should be fully up and running again

29. Today Open SuSE 15.4 is old, you may update to Open SuSE 15.5:

https://community.grommunio.com/d/1086-update-form-open-suse-154-to-155

Enjoy grommunio

Changes:

  1. rpmnew added
  2. Snapshot and postfix added
  3. Minor changes
  4. added libhogweed6
  5. added recreate the MIDB databases
  6. added check for uptime
  7. styling changes
  8. Current schema at July 2023 is EV-11
    7 days later

    Hi WalterH,

    I don't know if you can help or somebody else.

    I want to try to upgrade to 15.4 but I do realized and I'm totaly surprised that my installation is on OpenSuse 12.3.
    I did install the vmware appliance in last october in 2022. I took that image from the official grommunio site and updated since.

    I now understand that I'm on a pretty old system. It is hard to understand the situation, the fact that it cames from the official grommunio web site.

    From your opinion, what should I do from there ? I think that WalterH's upgrade procedure will not fit my situation.

    I shouldn't be the only one that get trapped in that situation?

    Thank's all

    There are no repositories for OpenSuse 12.3. Why you believe this is a 12.3 System? Please elaborate.

    Maybe I do wrong. I did --> cat /etc/SUSE-brand

    upstream
    VERSION = 12.3
    CO-BRANDS = openSUSE SLED SLES SLE

    I did administer OES servers for years based on Suse enterprise and that was the command to validate versions and patches.

    Good thing if I'm wrong with Grommunio.. I'm learning everyday.. ...

      Please post content of: /etc/zypp/repos.d/grommunio.repo , if you have password for supported repository in this file, mask the password and username.

      bunker
      Hi Bunker,

      your server should be on 15.3.

      on one of my servers is 15.3 it looks like:
      node01:/etc # cat SUSE-brand
      upstream
      VERSION = 12.3
      CO-BRANDS = openSUSE SLED SLES SLE

      node01:/etc # cat os-release
      NAME="grommunio"
      VERSION="2022.05.2"
      ID="grommunio-lds"
      ID_LIKE="suse"
      VERSION_ID="2022.05.2"
      PRETTY_NAME="grommunio"
      ANSI_COLOR="0;36"
      HOME_URL="https://grommunio.com/"
      DOCUMENTATION_URL="https://docs.grommunio.com/"

      9 months later

      WalterH, sorry to be late. I'm now back at our internal "grommunio project"and need to solve why I cannot receive any more updates. My goal is to run on latest version.

      Here is my output of /etc/zypp/repos.d/grommunio.repo

      [grommunio]
      name=grommunio
      enabled=1
      autorefresh=1
      baseurl=https://download.grommunio.com/community/openSUSE_Leap_15.3/?ssl_verify=no
      path=/
      type=rpm-md
      keeppackages=0
      ~

      And my system ->

      cat /etc/os-release

      NAME="grommunio"
      VERSION="2022.05.2"
      ID="grommunio-lds"
      ID_LIKE="suse"
      VERSION_ID="2022.05.2"
      PRETTY_NAME="grommunio"
      ANSI_COLOR="0;36"
      HOME_URL="https://grommunio.com/"
      DOCUMENTATION_URL="https://docs.grommunio.com/"

      cat /etc/SUSE-brand

      upstream
      VERSION = 12.3
      CO-BRANDS = openSUSE SLED SLES SLE

      When I run zypper up:

      zypper up
      Loading repository data...
      Warning: Repository 'repo-backports-update' appears to be outdated. Consider using a different mirror or server.
      Warning: Repository 'update' appears to be outdated. Consider using a different mirror or server.
      Reading installed packages...

      The following item is locked and will not be changed by any action:
      Installed:
      grommunio-files

      The following package update will NOT be installed:
      grommunio-files
      Nothing to do.

      Is it normal to be stuck there? Should I upgrade to a new version of appliance?

      I thank you all for your help.

      Try to follow the procedure and ignore this errors and hope, that step 10. upgrades to 15.4.
      And than upgrade to 15.5.

        WalterH

        Alternatively, use grommunio-update upgrade whish does this automagically for you.

          WalterH most commands you may copy and paste the command to the grommunio server

          Hi Guys,

          Thanks for your quick replies. I do really appreciate.

          I tried WalterH procedure "A recipe to update grommunio from Open SuSE 15.3 to 15.4."

          It didn't work.

          First when it asked to uninstall PHP7 with rpm -e php7-opcache

          I did receive a message that it is not installed. -->

          mail4:~ # rpm -e php7-opcache
          error: package php7-opcache is not installed

          Second, it stuck a the gromox update point. -->

          zypper update gromox
          Loading repository data...
          Reading installed packages...
          Resolving package dependencies...

          Problem: the to be installed gromox-2.20.6.g19e4a21-lp154.16.1.x86_64 requires 'php8-soap', but this requirement cannot be provided
          not installable providers: php8-soap-8.0.10-150400.2.7.x86_64[base]
          php8-soap-8.0.10-150400.4.3.1.x86_64[repo-sle-update]
          php8-soap-8.0.10-150400.4.8.1.x86_64[repo-sle-update]
          php8-soap-8.0.24-150400.4.14.1.x86_64[repo-sle-update]
          php8-soap-8.0.25-150400.4.17.1.x86_64[repo-sle-update]
          php8-soap-8.0.25-150400.4.20.1.x86_64[repo-sle-update]
          php8-soap-8.0.27-150400.4.23.1.x86_64[repo-sle-update]
          php8-soap-8.0.28-150400.4.26.1.x86_64[repo-sle-update]
          php8-soap-8.0.28-150400.4.31.1.x86_64[repo-sle-update]
          php8-soap-8.0.29-150400.4.34.1.x86_64[repo-sle-update]
          php8-soap-8.0.30-150400.4.37.1.x86_64[repo-sle-update]
          Solution 1: Following actions will be done:
          deinstallation of php7-7.4.33-150200.3.46.2.x86_64
          deinstallation of php7-zlib-7.4.33-150200.3.46.2.x86_64
          deinstallation of php7-zip-7.4.33-150200.3.46.2.x86_64
          deinstallation of php7-xmlwriter-7.4.33-150200.3.46.2.x86_64
          deinstallation of php7-xmlreader-7.4.33-150200.3.46.2.x86_64
          deinstallation of php7-sysvshm-7.4.33-150200.3.46.2.x86_64
          deinstallation of php7-sqlite-7.4.33-150200.3.46.2.x86_64
          deinstallation of php7-sodium-7.4.33-150200.3.46.2.x86_64
          deinstallation of php7-soap-7.4.33-150200.3.46.2.x86_64
          deinstallation of php7-posix-7.4.33-150200.3.46.2.x86_64
          deinstallation of php7-pdo-7.4.33-150200.3.46.2.x86_64
          deinstallation of php7-pcntl-7.4.33-150200.3.46.2.x86_64
          deinstallation of php7-openssl-7.4.33-150200.3.46.2.x86_64
          deinstallation of php7-mysql-7.4.33-150200.3.46.2.x86_64
          deinstallation of php7-mbstring-7.4.33-150200.3.46.2.x86_64
          deinstallation of php7-ldap-7.4.33-150200.3.46.2.x86_64
          deinstallation of php7-intl-7.4.33-150200.3.46.2.x86_64
          deinstallation of php7-iconv-7.4.33-150200.3.46.2.x86_64
          deinstallation of php7-gmp-7.4.33-150200.3.46.2.x86_64
          deinstallation of php7-gettext-7.4.33-150200.3.46.2.x86_64
          deinstallation of php7-gd-7.4.33-150200.3.46.2.x86_64
          deinstallation of php7-ftp-7.4.33-150200.3.46.2.x86_64
          deinstallation of php7-fpm-7.4.33-150200.3.46.2.x86_64
          deinstallation of php7-fileinfo-7.4.33-150200.3.46.2.x86_64
          deinstallation of php7-dom-7.4.33-150200.3.46.2.x86_64
          deinstallation of php7-curl-7.4.33-150200.3.46.2.x86_64
          deinstallation of php7-ctype-7.4.33-150200.3.46.2.x86_64
          deinstallation of php7-bz2-7.4.33-150200.3.46.2.x86_64
          deinstallation of php7-bcmath-7.4.33-150200.3.46.2.x86_64
          deinstallation of php7-APCu-5.1.18-bp153.1.17.x86_64
          deinstallation of php7-imagick-3.4.4-bp153.1.18.x86_64
          deinstallation of php7-memcached-3.1.5-bp153.1.16.x86_64
          deinstallation of php7-pear-1.10.21-3.6.1.noarch
          deinstallation of php7-redis-5.2.2-bp153.1.17.x86_64
          deinstallation of php7-smbclient-1.0.0-bp153.1.20.x86_64
          Solution 2: do not install gromox-2.20.6.g19e4a21-lp154.16.1.x86_64
          Solution 3: break gromox-2.20.6.g19e4a21-lp154.16.1.x86_64 by ignoring some of its dependencies

          Choose from above solutions by number or cancel [1/2/3/c/d/?] (c): 1
          Resolving dependencies...
          Resolving package dependencies...
          2 Problems:
          Problem: the installed grommunio-files-10.9.1-lp153.1.1.noarch requires 'php7-APCu', but this requirement cannot be provided
          Problem: the installed grommunio-files-10.9.1-lp153.1.1.noarch requires 'php7-curl', but this requirement cannot be provided

          Problem: the installed grommunio-files-10.9.1-lp153.1.1.noarch requires 'php7-APCu', but this requirement cannot be provided
          deleted providers: php7-APCu-5.1.18-bp153.1.17.x86_64
          not installable providers: php7-APCu-5.1.18-bp154.1.25.x86_64[base]
          php7-APCu-5.1.22-bp154.2.1.i586[repo-backports-update]
          php7-APCu-5.1.22-bp154.2.1.x86_64[repo-backports-update]
          Solution 1: Following actions will be done:
          keep php7-APCu-5.1.18-bp153.1.17.x86_64
          keep php7-fileinfo-7.4.33-150200.3.46.2.x86_64
          keep php7-intl-7.4.33-150200.3.46.2.x86_64
          keep php7-ldap-7.4.33-150200.3.46.2.x86_64
          keep php7-smbclient-1.0.0-bp153.1.20.x86_64
          keep php7-openssl-7.4.33-150200.3.46.2.x86_64
          Solution 2: remove lock to allow removal of grommunio-files-10.9.1-lp153.1.1.noarch
          Solution 3: break grommunio-files-10.9.1-lp153.1.1.noarch by ignoring some of its dependencies

          Choose from above solutions by number or skip, retry or cancel [1/2/3/s/r/c/d/?] (c): 2

          Problem: the installed grommunio-files-10.9.1-lp153.1.1.noarch requires 'php7-curl', but this requirement cannot be provided
          deleted providers: php7-curl-7.4.33-150200.3.46.2.x86_64
          not installable providers: php7-curl-7.4.25-150400.2.7.x86_64[base]
          php7-curl-7.4.25-150400.4.3.1.x86_64[repo-sle-update]
          php7-curl-7.4.25-150400.4.8.1.x86_64[repo-sle-update]
          php7-curl-7.4.33-150400.4.13.1.x86_64[repo-sle-update]
          php7-curl-7.4.33-150400.4.16.1.x86_64[repo-sle-update]
          php7-curl-7.4.33-150400.4.19.1.x86_64[repo-sle-update]
          php7-curl-7.4.33-150400.4.22.1.x86_64[repo-sle-update]
          php7-curl-7.4.33-150400.4.25.1.x86_64[repo-sle-update]
          php7-curl-7.4.33-150400.4.28.1.x86_64[repo-sle-update]
          Solution 1: Following actions will be done:
          keep php7-curl-7.4.33-150200.3.46.2.x86_64
          keep php7-fileinfo-7.4.33-150200.3.46.2.x86_64
          keep php7-intl-7.4.33-150200.3.46.2.x86_64
          keep php7-ldap-7.4.33-150200.3.46.2.x86_64
          keep php7-smbclient-1.0.0-bp153.1.20.x86_64
          Solution 2: deinstallation of grommunio-files-10.9.1-lp153.1.1.noarch
          Solution 3: remove lock to allow installation of grommunio-files-25.0.13-lp154.2.1.noarch[grommunio]
          Solution 4: remove lock to allow installation of grommunio-files-25.0.13-lp154.1.1.noarch[grommunio]
          Solution 5: break grommunio-files-10.9.1-lp153.1.1.noarch by ignoring some of its dependencies

          At this point, I decided to rollback..

          What should I do ?

          Big thanks for your good work and help!

          Hi guys,

          I'm still stuck with my appliance that refuse to update. No customisation done..
          It's quite hard to maintain this appliance..

          I tried to run grommunio-update command tool as mentioned by MWilliams. Still no luck.

          Any help will be appreciate.

          ->

          grommunio-update upgrade
                                                 _                       __     __
            ___ ________  __ _  __ _  __ _____  (_)__  ______ _____  ___/ /__ _/ /____
           / _ \/ __/ _ \/  ' \/  ' \/ // / _ \/ / _ \/___/ // / _ \/ _  / _ \/ __/ -_)
           \_, /_/  \___/_/_/_/_/_/_/\_,_/_//_/_/\___/    \_,_/ .__/\_,_/\_,_/\__/\__/
          /___/                                              /_/
          
          ## This system	: xxxx
          ## Uptime	: 0:01
          ## Load		: Last Minute: 1.28, Last 5 Minutes: 0.35, Last 15 Minutes: 0.12
          ## IP Address	: 192.168.xx.xx
          ## Executed	: /usr/sbin/grommunio-update upgrade
          ## Start	: Sat 2023-12-23 10:35:01 EST
          ## Operation	: Upgrade
          
          ▶ Starting Upgrade (zypper ref && zypper dup -y)
          Repository 'base' is up to date.
          Repository 'debug' is up to date.
          Repository 'grommunio' is up to date.
          Repository 'repo-backports-update' is up to date.
          Repository 'repo-sle-update' is up to date.
          Repository 'update' is up to date.
          All repositories have been refreshed.
          Loading repository data...
          Warning: Repository 'repo-backports-update' appears to be outdated. Consider using a different mirror or server.
          Warning: Repository 'update' appears to be outdated. Consider using a different mirror or server.
          Reading installed packages...
          Warning: You are about to do a distribution upgrade with all enabled repositories. Make sure these repositories are compatible before you continue. See 'man zypper' for more information about this command.
          Computing distribution upgrade...
          10 Problems:
          Problem: problem with the installed dracut-kiwi-lib-9.24.48-lp153.1.1.x86_64
          Problem: problem with the installed dracut-kiwi-live-9.24.48-lp153.1.1.x86_64
          Problem: problem with the installed dracut-kiwi-oem-dump-9.24.48-lp153.1.1.x86_64
          Problem: problem with the installed dracut-kiwi-oem-repart-9.24.48-lp153.1.1.x86_64
          Problem: problem with the installed kiwi-systemdeps-bootloaders-9.24.48-lp153.1.1.x86_64
          Problem: problem with the installed kiwi-systemdeps-core-9.24.48-lp153.1.1.x86_64
          Problem: problem with the installed kiwi-systemdeps-disk-images-9.24.48-lp153.1.1.x86_64
          Problem: problem with the installed kiwi-systemdeps-filesystems-9.24.48-lp153.1.1.x86_64
          Problem: problem with the installed kiwi-systemdeps-iso-media-9.24.48-lp153.1.1.x86_64
          Problem: problem with the installed kiwi-tools-9.24.48-lp153.1.1.x86_64
          
          Problem: problem with the installed dracut-kiwi-lib-9.24.48-lp153.1.1.x86_64
           Solution 1: install dracut-kiwi-lib-9.24.43-150100.3.56.3.x86_64 from vendor SUSE LLC <https://www.suse.com/>
            replacing dracut-kiwi-lib-9.24.48-lp153.1.1.x86_64 from vendor obs://build.opensuse.org/Virtualization:Appliances
           Solution 2: keep obsolete dracut-kiwi-lib-9.24.48-lp153.1.1.x86_64
          
          Choose from above solutions by number or skip, retry or cancel [1/2/s/r/c/d/?] (c): c
          
          ▶ Upgrade failed with exit status 4, please check the log /var/log/grommunio-update.log
          
          Content of the var/log/grommunio-update.log-->
          
          
          # This system  : xxxx
          ## Uptime       : 0:01
          ## Load         : Last Minute: 1.28, Last 5 Minutes: 0.35, Last 15 Minutes: 0.12
          ## IP Address   : 192.168.x.x
          ## Executed     : /usr/sbin/grommunio-update upgrade
          ## Start        : Sat 2023-12-23 10:35:01 EST
          ## Operation    : Upgrade
          
          ^[[36m▶^[[0m Starting Upgrade (zypper ref && zypper dup -y)
          Repository 'base' is up to date.
          Repository 'debug' is up to date.
          Repository 'grommunio' is up to date.
          Repository 'repo-backports-update' is up to date.
          Repository 'repo-sle-update' is up to date.
          Repository 'update' is up to date.
          All repositories have been refreshed.
          Loading repository data...
          Warning: Repository 'repo-backports-update' appears to be outdated. Consider using a different mirror or server.
          Warning: Repository 'update' appears to be outdated. Consider using a different mirror or server.
          Reading installed packages...
          Warning: You are about to do a distribution upgrade with all enabled repositories. Make sure these repositories are compatible before you continue. See 'man zypper' for more information about this command.
          Computing distribution upgrade...
          10 Problems:
          Problem: problem with the installed dracut-kiwi-lib-9.24.48-lp153.1.1.x86_64
          Problem: problem with the installed dracut-kiwi-live-9.24.48-lp153.1.1.x86_64
          Problem: problem with the installed dracut-kiwi-oem-dump-9.24.48-lp153.1.1.x86_64
          Problem: problem with the installed dracut-kiwi-oem-repart-9.24.48-lp153.1.1.x86_64
          Problem: problem with the installed kiwi-systemdeps-bootloaders-9.24.48-lp153.1.1.x86_64
          Problem: problem with the installed kiwi-systemdeps-core-9.24.48-lp153.1.1.x86_64
          Problem: problem with the installed kiwi-systemdeps-disk-images-9.24.48-lp153.1.1.x86_64
          Problem: problem with the installed kiwi-systemdeps-filesystems-9.24.48-lp153.1.1.x86_64
          Problem: problem with the installed kiwi-systemdeps-iso-media-9.24.48-lp153.1.1.x86_64
          Problem: problem with the installed kiwi-tools-9.24.48-lp153.1.1.x86_64
          
          Problem: problem with the installed dracut-kiwi-lib-9.24.48-lp153.1.1.x86_64
           Solution 1: install dracut-kiwi-lib-9.24.43-150100.3.56.3.x86_64 from vendor SUSE LLC <https://www.suse.com/>
            replacing dracut-kiwi-lib-9.24.48-lp153.1.1.x86_64 from vendor obs://build.opensuse.org/Virtualization:Appliances
           Solution 2: keep obsolete dracut-kiwi-lib-9.24.48-lp153.1.1.x86_64
          
          Choose from above solutions by number or skip, retry or cancel [1/2/s/r/c/d/?] (c): c
          
          ^[[31m▶^[[0m Upgrade failed with exit status 4, please check the log /var/log/grommunio-update.log
          
          
          ## End Upgrade  :Sat 2023-12-23 10:35:11 EST

            bunker Problem: problem with the installed dracut-kiwi-lib-9.24.48-lp153.1.1.x86_64

            I would try to perform the update manually with zypper dup and answer Zypper's questions correctly. Change the repositories correctly beforehand. First go to 15.4 and only update to 15.5 in the 2nd step.

            22 days later

            Hi Walter,

            I did what you suggested me.

            Upgrade went through. Thanks for the procedure.

            System is working in exception of FILES.. I have a Error 404 - Not Found.

            I'm sure I did follow all steps. Before I rety for a third time. Maybe you or somebody else have a suggestion to where looking at?

            Try the grommunio-update update command and if this do not help, look in the logs:

            system-d log:
            journalctl -f

            nginx logs:
            tail /var/log/nginx/*.log -f

            It looks like it may be a permission issues. But I don't know how to fix it.

            I really do appreciate your help.

            journalctl -f

            tail /var/log/nginx/*.log -f
            ==> /var/log/nginx/error.log <==
            2024/01/12 00:00:04 [emerg] 1534#1534: open() "/var/log/grommunio/nginx-files-access.log" failed (13: Permission denied)
            2024/01/12 00:00:04 [emerg] 1534#1534: open() "/var/log/grommunio/nginx-files-error.log" failed (13: Permission denied)
            2024/01/13 00:00:02 [notice] 25464#25464: signal process started
            2024/01/13 00:00:02 [emerg] 1534#1534: open() "/var/log/grommunio/nginx-files-access.log" failed (13: Permission denied)
            2024/01/13 00:00:02 [emerg] 1534#1534: open() "/var/log/grommunio/nginx-files-error.log" failed (13: Permission denied)
            2024/01/15 00:00:11 [notice] 18486#18486: signal process started
            2024/01/15 00:00:11 [emerg] 1534#1534: open() "/var/log/grommunio/nginx-files-access.log" failed (13: Permission denied)
            2024/01/15 00:00:11 [emerg] 1534#1534: open() "/var/log/grommunio/nginx-files-error.log" failed (13: Permission denied)
            2024/01/16 00:00:02 [notice] 10533#10533: signal process started
            2024/01/16 00:09:39 [emerg] 24552#24552: module "/usr//lib64/nginx/modules/ngx_http_brotli_static_module.so" version 1019008 instead of 1021005 in /etc/nginx/nginx.conf:4

            ==> /var/log/nginx/nginx-access.log <==
            10.11.11.21 - - [16/Jan/2024:20:10:10 -0500] "GET / HTTP/2.0" 301 162 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36"
            10.11.11.21 - - [16/Jan/2024:20:10:12 -0500] "GET /web/client/resources/fonts/roboto-400-latin.woff2 HTTP/2.0" 200 15744 "https://10.1.1.70/web/client/resources/css/grommunio.css?version=3.6.15.42597875-lp155.15.1" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36"
            10.11.11.21 - - [16/Jan/2024:20:10:14 -0500] "GET /web/client/resources/fonts/roboto-700-latin.woff2 HTTP/2.0" 200 15860 "https://10.1.1.70/web/client/resources/css/grommunio.css?version=3.6.15.42597875-lp155.15.1" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36"
            10.11.11.21 - - [16/Jan/2024:20:10:14 -0500] "GET /web/client/resources/fonts/roboto-400-italic-latin.woff2 HTTP/2.0" 200 17368 "https://10.1.1.70/web/client/resources/css/grommunio.css?version=3.6.15.42597875-lp155.15.1" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36"
            10.1.1.70 - john@network.com [16/Jan/2024:20:10:14 -0500] "PROPFIND /files/remote.php/webdav/ HTTP/2.0" 405 10946 "-" "sabre-dav/4.4.0 (http://sabre.io/)"
            10.1.1.70 - john@network.com [16/Jan/2024:20:10:14 -0500] "PROPFIND /files/remote.php/webdav/ HTTP/2.0" 405 10946 "-" "sabre-dav/4.4.0 (http://sabre.io/)"
            10.11.11.21 - - [16/Jan/2024:20:10:14 -0500] "POST /web/grommunio.php?subsystem=webapp_1705453706733 HTTP/2.0" 500 10782 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36"
            10.11.11.21 - - [16/Jan/2024:20:10:24 -0500] "GET /pwa-worker.js HTTP/2.0" 200 1246 "https://10.1.1.70/meet/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36"
            10.11.11.21 - - [16/Jan/2024:20:10:27 -0500] "GET /files HTTP/2.0" 404 4720 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36"
            10.11.11.21 - - [16/Jan/2024:20:10:27 -0500] "GET /_errors/main.css HTTP/2.0" 200 918 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36"

            ==> /var/log/nginx/nginx-admin-access.log <==
            ::1 - - [15/Jan/2024:15:15:13 -0500] "GET /api/v1/service/syncPolicy/john@network.com HTTP/1.0" 200 928 "-" "-"
            ::1 - - [15/Jan/2024:15:15:30 -0500] "GET /api/v1/service/wipe/john@network.com?devices=sec19c2158abc31a HTTP/1.0" 200 43 "-" "-"
            ::1 - - [15/Jan/2024:15:15:31 -0500] "GET /api/v1/service/wipe/john@network.com?devices=sec19c2158abc31a HTTP/1.0" 200 43 "-" "-"
            ::1 - - [15/Jan/2024:15:15:31 -0500] "POST /api/v1/service/wipe/john@network.com?devices=sec19c2158abc31a HTTP/1.0" 201 23 "-" "-"
            ::1 - - [15/Jan/2024:21:22:21 -0500] "GET /api/v1/status HTTP/1.0" 200 61 "-" "-"
            ::1 - - [15/Jan/2024:21:22:23 -0500] "GET /api/v1/status HTTP/1.0" 200 61 "-" "-"
            ::1 - - [16/Jan/2024:11:54:02 -0500] "GET /api/v1/status HTTP/1.1" 200 61 "-" "-"
            ::1 - - [16/Jan/2024:11:54:04 -0500] "GET /api/v1/status HTTP/1.1" 200 61 "-" "-"
            ::1 - - [16/Jan/2024:20:10:10 -0500] "GET /api/v1/status HTTP/1.1" 200 61 "-" "-"
            ::1 - - [16/Jan/2024:20:10:12 -0500] "GET /api/v1/status HTTP/1.1" 200 61 "-" "-"

            ==> /var/log/nginx/nginx-admin-error.log <==

            ==> /var/log/nginx/nginx-archive-access.log <==

            ==> /var/log/nginx/nginx-archive-error.log <==

            ==> /var/log/nginx/nginx-autodiscover-access.log <==
            142.116.39.80 - - [15/Jan/2024:14:12:06 -0500] "POST /autodiscover/autodiscover.xml HTTP/2.0" 401 14 "-" "Microsoft Office/16.0 (Windows NT 10.0; Microsoft Outlook 16.0.17126; Pro)"
            142.116.39.80 - - [15/Jan/2024:14:12:08 -0500] "POST /autodiscover/autodiscover.xml HTTP/2.0" 401 14 "-" "Microsoft Office/16.0 (Windows NT 10.0; Microsoft Outlook 16.0.17126; Pro)"
            142.116.39.80 - francois@fyelle.com [15/Jan/2024:14:12:12 -0500] "POST /autodiscover/autodiscover.xml HTTP/2.0" 200 2470 "-" "Microsoft Office/16.0 (Windows NT 10.0; Microsoft Outlook 16.0.17126; Pro)"
            142.116.39.80 - francois@fyelle.com [15/Jan/2024:15:10:56 -0500] "POST /autodiscover/autodiscover.xml HTTP/2.0" 200 3420 "-" "Microsoft Office/16.0 (Windows NT 10.0; Microsoft Outlook 16.0.17126; Pro)"
            142.116.39.80 - francois@fyelle.com [15/Jan/2024:15:11:29 -0500] "POST /autodiscover/autodiscover.xml HTTP/2.0" 200 3420 "-" "Microsoft Office/16.0 (Windows NT 10.0; Microsoft Outlook 16.0.17126; Pro)"
            142.116.39.80 - - [15/Jan/2024:15:11:29 -0500] "GET /autodiscover/autodiscover.json/v1.0/francois@fyelle.com?Protocol=REST&RedirectCount=1 HTTP/1.1" 200 28 "-" "Microsoft Office/16.0 (Windows NT 10.0; Microsoft Outlook 16.0.17126; Pro)"
            142.116.39.80 - - [15/Jan/2024:15:11:30 -0500] "GET /autodiscover/autodiscover.json/v1.0/francois@fyelle.com?Protocol=Autodiscoverv1&RedirectCount=1 HTTP/1.1" 200 97 "-" "Microsoft Office/16.0 (Windows NT 10.0; Microsoft Outlook 16.0.17126; Pro)"
            142.116.39.80 - - [15/Jan/2024:15:12:12 -0500] "POST /autodiscover/autodiscover.xml HTTP/2.0" 401 14 "-" "Microsoft Office/16.0 (Windows NT 10.0; Microsoft Outlook 16.0.17126; Pro)"
            142.116.39.80 - - [15/Jan/2024:15:12:14 -0500] "POST /autodiscover/autodiscover.xml HTTP/2.0" 401 14 "-" "Microsoft Office/16.0 (Windows NT 10.0; Microsoft Outlook 16.0.17126; Pro)"
            142.116.39.80 - francois@fyelle.com [15/Jan/2024:15:12:18 -0500] "POST /autodiscover/autodiscover.xml HTTP/2.0" 200 2470 "-" "Microsoft Office/16.0 (Windows NT 10.0; Microsoft Outlook 16.0.17126; Pro)"

            ==> /var/log/nginx/nginx-autodiscover-error.log <==
            2023/11/14 23:43:36 [error] 1591#1591: *115319 connect() failed (111: Connection refused) while connecting to upstream, client: 10.1.1.70, server: _, request: "POST /autodiscover/autodiscover.xml HTTP/1.1", upstream: "https://127.0.0.1:10443/autodiscover/autodiscover.xml", host: "autodiscover.domain.com"
            2023/11/14 23:43:36 [error] 1591#1591: *115319 connect() failed (111: Connection refused) while connecting to upstream, client: 10.1.1.70, server: _, request: "POST /autodiscover/autodiscover.xml HTTP/1.1", upstream: "https://[::1]:10443/autodiscover/autodiscover.xml", host: "autodiscover.domain.com"
            2023/11/14 23:43:39 [error] 1591#1591: *115327 no live upstreams while connecting to upstream, client: 10.1.1.70, server: _, request: "POST /autodiscover/autodiscover.xml HTTP/1.1", upstream: "https://gromoxhttp/autodiscover/autodiscover.xml", host: "autodiscover.domain.com"
            2023/11/14 23:43:41 [error] 1591#1591: *115330 no live upstreams while connecting to upstream, client: 10.1.1.70, server: _, request: "POST /autodiscover/autodiscover.xml HTTP/1.1", upstream: "https://gromoxhttp/autodiscover/autodiscover.xml", host: "autodiscover.domain.com"

            ==> /var/log/nginx/nginx-chat-access.log <==
            10.11.11.21 - - [16/Jan/2024:20:10:26 -0500] "GET /chat/api/v4/files/xoffqxxnajne7fkmsxkc9bjwhe/preview HTTP/2.0" 200 155534 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36"
            10.11.11.21 - - [16/Jan/2024:20:10:26 -0500] "GET /chat/api/v4/users/ff63f3wzdfybdrxg7dxxd6xb1w/image?=0 HTTP/2.0" 200 843 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36"
            10.11.11.21 - - [16/Jan/2024:20:10:26 -0500] "GET /chat/api/v4/users/beqw6rymkfgtddn5r1onk53tmh/image?
            =0 HTTP/2.0" 200 727 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36"
            10.11.11.21 - - [16/Jan/2024:20:10:26 -0500] "GET /chat/api/v4/users/so9r7cc39tnt8qa4e44693eewr/image?=0 HTTP/2.0" 200 2104 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36"
            10.11.11.21 - - [16/Jan/2024:20:10:26 -0500] "GET /chat/api/v4/users/z9gwtahmityp58z8sh8n6seaoe/image?
            =0 HTTP/2.0" 200 824 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36"
            10.11.11.21 - - [16/Jan/2024:20:10:26 -0500] "GET /chat/static/files/20fd1704ea223900efa9fd4e869efb08.woff2 HTTP/2.0" 200 77190 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36"
            10.11.11.21 - - [16/Jan/2024:20:10:26 -0500] "GET /chat/api/v4/users/wkbi6tj51pngi8cizmo4f9cjfy/image?_=0 HTTP/2.0" 200 1515 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36"
            10.11.11.21 - - [16/Jan/2024:20:10:26 -0500] "GET /chat/api/v4/files/am1ykjj3oi87tckik9ofzqe6ea/thumbnail HTTP/2.0" 200 7020 "https://10.1.1.70/chat/americmedia/channels/town-square" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36"
            10.11.11.21 - - [16/Jan/2024:20:10:26 -0500] "GET /chat/api/v4/files/471fsrj5bjrsfb58wspwx1hjic/thumbnail HTTP/2.0" 200 6354 "https://10.1.1.70/chat/americmedia/channels/town-square" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36"
            10.11.11.21 - - [16/Jan/2024:20:11:16 -0500] "POST /chat/api/v4/users/status/ids HTTP/2.0" 200 408 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36"

            ==> /var/log/nginx/nginx-chat-error.log <==
            2024/01/05 09:29:21 [error] 1881#1881: *272511 connect() failed (111: Connection refused) while connecting to upstream, client: 10.1.1.70, server: _, request: "GET /chat/api/v4/users/me/teams/unread?include_collapsed_threads=false HTTP/2.0", upstream: "http://127.0.0.1:8065/chat/api/v4/users/me/teams/unread?include_collapsed_threads=false", host: "mail4.domain.com"
            2024/01/05 09:29:21 [error] 1881#1881: *272511 connect() failed (111: Connection refused) while connecting to upstream, client: 10.1.1.70, server: _, request: "GET /chat/api/v4/plugins/webapp HTTP/2.0", upstream: "http://127.0.0.1:8065/chat/api/v4/plugins/webapp", host: "mail4.domain.com"
            2024/01/05 09:29:21 [error] 1881#1881: *272511 connect() failed (111: Connection refused) while connecting to upstream, client: 10.1.1.70, server: _, request: "POST /chat/api/v4/users/ids?since=1703707230344 HTTP/2.0", upstream: "http://127.0.0.1:8065/chat/api/v4/users/ids?since=1703707230344", host: "mail4.domain.com"
            2024/01/05 09:29:26 [error] 1881#1881: *272552 connect() failed (111: Connection refused) while connecting to upstream, client: 10.1.1.70, server: _, request: "GET /chat/api/v4/websocket?connection_id=ihagwc6kx7dp3n4daaby3egm3o&sequence_number=48 HTTP/1.1", upstream: "http://127.0.0.1:8065/chat/api/v4/websocket?connection_id=ihagwc6kx7dp3n4daaby3egm3o&sequence_number=48", host: "mail4.domain.com"
            2024/01/05 09:29:26 [error] 1881#1881: *272556 connect() failed (111: Connection refused) while connecting to upstream, client: 10.1.1.70, server: _, request: "GET /chat/api/v4/websocket?connection_id=r4stjfq7xjfx8jzdfnm46dw9ke&sequence_number=206 HTTP/1.1", upstream: "http://127.0.0.1:8065/chat/api/v4/websocket?connection_id=r4stjfq7xjfx8jzdfnm46dw9ke&sequence_number=206", host: "mail4.domain.com"
            2024/01/16 11:56:46 [error] 1871#1871: *2 connect() failed (111: Connection refused) while connecting to upstream, client: 10.11.11.21, server: _, request: "GET /chat/api/v4/websocket?connection_id=mmn67hfec3fxzg53x7wx1gw4hh&sequence_number=5 HTTP/1.1", upstream: "http://127.0.0.1:8065/chat/api/v4/websocket?connection_id=mmn67hfec3fxzg53x7wx1gw4hh&sequence_number=5", host: "10.1.1.70"
            2024/01/16 12:14:36 [error] 1552#1552: *2 connect() failed (111: Connection refused) while connecting to upstream, client: 10.11.11.21, server: _, request: "GET /chat/api/v4/websocket?connection_id=kmordwf39pr5tk1uw54hkzd5iy&sequence_number=2 HTTP/1.1", upstream: "http://127.0.0.1:8065/chat/api/v4/websocket?connection_id=kmordwf39pr5tk1uw54hkzd5iy&sequence_number=2", host: "10.1.1.70"
            2024/01/16 12:14:39 [error] 1552#1552: *12 connect() failed (111: Connection refused) while connecting to upstream, client: 10.11.11.21, server: _, request: "GET /chat/api/v4/websocket?connection_id=kmordwf39pr5tk1uw54hkzd5iy&sequence_number=2 HTTP/1.1", upstream: "http://127.0.0.1:8065/chat/api/v4/websocket?connection_id=kmordwf39pr5tk1uw54hkzd5iy&sequence_number=2", host: "10.1.1.70"
            2024/01/16 12:14:41 [error] 1552#1552: *5 connect() failed (111: Connection refused) while connecting to upstream, client: 10.11.11.21, server: _, request: "POST /chat/api/v4/users/status/ids HTTP/2.0", upstream: "http://127.0.0.1:8065/chat/api/v4/users/status/ids", host: "10.1.1.70"
            2024/01/16 12:14:43 [error] 1552#1552: *16 connect() failed (111: Connection refused) while connecting to upstream, client: 10.11.11.21, server: _, request: "GET /chat/api/v4/websocket?connection_id=kmordwf39pr5tk1uw54hkzd5iy&sequence_number=2 HTTP/1.1", upstream: "http://127.0.0.1:8065/chat/api/v4/websocket?connection_id=kmordwf39pr5tk1uw54hkzd5iy&sequence_number=2", host: "10.1.1.70"

            ==> /var/log/nginx/nginx-dav-access.log <==
            184.107.122.130 - john@network.com [15/Jan/2024:13:29:49 -0500] "GET /dav HTTP/1.0" 200 4233 "-" "-"
            184.107.122.130 - john@network.com [15/Jan/2024:13:29:50 -0500] "GET /dav HTTP/1.0" 200 4233 "-" "-"
            184.107.122.130 - john@network.com [15/Jan/2024:13:29:51 -0500] "GET /dav HTTP/1.0" 200 4233 "-" "-"
            184.107.122.130 - john@network.com [15/Jan/2024:13:29:51 -0500] "GET /dav HTTP/1.0" 200 4233 "-" "-"
            184.107.122.130 - john@network.com [15/Jan/2024:13:29:52 -0500] "GET /dav HTTP/1.0" 200 4233 "-" "-"
            184.107.122.130 - john@network.com [15/Jan/2024:15:08:54 -0500] "GET /dav HTTP/1.0" 200 4233 "-" "-"
            184.107.122.130 - john@network.com [15/Jan/2024:15:09:04 -0500] "GET /dav HTTP/1.0" 200 4233 "-" "-"
            184.107.122.130 - john@network.com [15/Jan/2024:15:09:05 -0500] "GET /dav HTTP/1.0" 200 4233 "-" "-"
            184.107.122.130 - john@network.com [15/Jan/2024:15:09:05 -0500] "GET /dav HTTP/1.0" 200 4233 "-" "-"
            184.107.122.130 - john@network.com [15/Jan/2024:15:09:06 -0500] "GET /dav HTTP/1.0" 200 4233 "-" "-"

            ==> /var/log/nginx/nginx-dav-error.log <==
            2024/01/15 13:29:49 [error] 1534#1534: *132233 FastCGI sent in stderr: "Passing INI directive through FastCGI: unable to set 'zend.exception_string_param_max_len'" while reading response header from upstream, client: 184.107.122.130, server: _, request: "GET /dav HTTP/1.0", upstream: "fastcgi://unix:/run/php-fpm/php-grommunio-dav-fpm.sock:", host: "mail4.domain.com"
            2024/01/15 13:29:50 [error] 1534#1534: *132279 FastCGI sent in stderr: "Passing INI directive through FastCGI: unable to set 'zend.exception_string_param_max_len'" while reading response header from upstream, client: 184.107.122.130, server: _, request: "GET /dav HTTP/1.0", upstream: "fastcgi://unix:/run/php-fpm/php-grommunio-dav-fpm.sock:", host: "mail4.domain.com"
            2024/01/15 13:29:51 [error] 1534#1534: *132282 FastCGI sent in stderr: "Passing INI directive through FastCGI: unable to set 'zend.exception_string_param_max_len'" while reading response header from upstream, client: 184.107.122.130, server: _, request: "GET /dav HTTP/1.0", upstream: "fastcgi://unix:/run/php-fpm/php-grommunio-dav-fpm.sock:", host: "mail4.domain.com"
            2024/01/15 13:29:51 [error] 1534#1534: *132285 FastCGI sent in stderr: "Passing INI directive through FastCGI: unable to set 'zend.exception_string_param_max_len'" while reading response header from upstream, client: 184.107.122.130, server: _, request: "GET /dav HTTP/1.0", upstream: "fastcgi://unix:/run/php-fpm/php-grommunio-dav-fpm.sock:", host: "mail4.domain.com"
            2024/01/15 13:29:52 [error] 1534#1534: *132289 FastCGI sent in stderr: "Passing INI directive through FastCGI: unable to set 'zend.exception_string_param_max_len'" while reading response header from upstream, client: 184.107.122.130, server: _, request: "GET /dav HTTP/1.0", upstream: "fastcgi://unix:/run/php-fpm/php-grommunio-dav-fpm.sock:", host: "mail4.domain.com"
            2024/01/15 15:08:54 [error] 1534#1534: *134307 FastCGI sent in stderr: "Passing INI directive through FastCGI: unable to set 'zend.exception_string_param_max_len'" while reading response header from upstream, client: 184.107.122.130, server: _, request: "GET /dav HTTP/1.0", upstream: "fastcgi://unix:/run/php-fpm/php-grommunio-dav-fpm.sock:", host: "mail4.domain.com"
            2024/01/15 15:09:04 [error] 1534#1534: *134355 FastCGI sent in stderr: "Passing INI directive through FastCGI: unable to set 'zend.exception_string_param_max_len'" while reading response header from upstream, client: 184.107.122.130, server: _, request: "GET /dav HTTP/1.0", upstream: "fastcgi://unix:/run/php-fpm/php-grommunio-dav-fpm.sock:", host: "mail4.domain.com"
            2024/01/15 15:09:05 [error] 1534#1534: *134358 FastCGI sent in stderr: "Passing INI directive through FastCGI: unable to set 'zend.exception_string_param_max_len'" while reading response header from upstream, client: 184.107.122.130, server: _, request: "GET /dav HTTP/1.0", upstream: "fastcgi://unix:/run/php-fpm/php-grommunio-dav-fpm.sock:", host: "mail4.domain.com"
            2024/01/15 15:09:05 [error] 1534#1534: *134361 FastCGI sent in stderr: "Passing INI directive through FastCGI: unable to set 'zend.exception_string_param_max_len'" while reading response header from upstream, client: 184.107.122.130, server: _, request: "GET /dav HTTP/1.0", upstream: "fastcgi://unix:/run/php-fpm/php-grommunio-dav-fpm.sock:", host: "mail4.domain.com"
            2024/01/15 15:09:06 [error] 1534#1534: *134366 FastCGI sent in stderr: "Passing INI directive through FastCGI: unable to set 'zend.exception_string_param_max_len'" while reading response header from upstream, client: 184.107.122.130, server: _, request: "GET /dav HTTP/1.0", upstream: "fastcgi://unix:/run/php-fpm/php-grommunio-dav-fpm.sock:", host: "mail4.domain.com"

            ==> /var/log/nginx/nginx-error.log <==
            2024/01/15 10:11:23 [error] 1534#1534: *128588 open() "/srv/jitsi-meet/.env" failed (2: No such file or directory), client: 35.216.180.106, server: _, request: "GET /.env HTTP/1.1", host: "184.107.122.130"
            2024/01/15 10:11:23 [error] 1534#1534: *128589 open() "/srv/jitsi-meet/telescope/requests" failed (2: No such file or directory), client: 35.216.180.106, server: _, request: "GET /telescope/requests HTTP/1.1", host: "184.107.122.130"
            2024/01/15 10:11:24 [error] 1534#1534: *128590 open() "/srv/jitsi-meet/info.php" failed (2: No such file or directory), client: 35.216.180.106, server: _, request: "GET /info.php HTTP/1.1", host: "184.107.122.130"
            2024/01/15 10:19:03 [crit] 1534#1534: *128737 SSL_do_handshake() failed (SSL: error:141CF06C:SSL routines:tls_parse_ctos_key_share:bad key share) while SSL handshaking, client: 106.75.99.41, server: 0.0.0.0:443
            2024/01/15 11:52:40 [crit] 1534#1534: *130923 SSL_do_handshake() failed (SSL: error:141CF06C:SSL routines:tls_parse_ctos_key_share:bad key share) while SSL handshaking, client: 101.68.211.2, server: 0.0.0.0:443
            2024/01/15 12:57:57 [crit] 1534#1534: *131737 SSL_do_handshake() failed (SSL: error:141CF06C:SSL routines:tls_parse_ctos_key_share:bad key share) while SSL handshaking, client: 71.6.165.200, server: 0.0.0.0:443
            2024/01/15 12:58:11 [error] 1534#1534: *131748 open() "/srv/jitsi-meet/sitemap.xml" failed (2: No such file or directory), client: 71.6.165.200, server: _, request: "GET /sitemap.xml HTTP/1.1", host: "184.107.122.130"
            2024/01/15 12:58:12 [error] 1534#1534: *131749 open() "/srv/jitsi-meet/.well-known/security.txt" failed (2: No such file or directory), client: 71.6.165.200, server: _, request: "GET /.well-known/security.txt HTTP/1.1", host: "184.107.122.130"
            2024/01/16 11:55:43 [error] 9288#9288: *2 open() "/srv/jitsi-meet/files" failed (2: No such file or directory), client: 10.11.11.21, server: _, request: "GET /files HTTP/2.0", host: "10.1.1.70"
            2024/01/16 20:10:27 [error] 1532#1532: *3 open() "/srv/jitsi-meet/files" failed (2: No such file or directory), client: 10.11.11.21, server: _, request: "GET /files HTTP/2.0", host: "10.1.1.70"

            ==> /var/log/nginx/nginx-ews-access.log <==
            142.116.39.80 - francois@fyelle.com [15/Jan/2024:12:39:55 -0500] "POST /EWS/Exchange.asmx HTTP/2.0" 200 2198 "-" "Microsoft Office/16.0 (Windows NT 10.0; Microsoft Outlook 16.0.17126; Pro)"
            142.116.39.80 - francois@fyelle.com [15/Jan/2024:13:07:57 -0500] "POST /EWS/Exchange.asmx HTTP/2.0" 500 327 "-" "Microsoft Office/16.0 (Windows NT 10.0; Microsoft Outlook 16.0.17126; Pro)"
            142.116.39.80 - francois@fyelle.com [15/Jan/2024:13:09:58 -0500] "POST /EWS/Exchange.asmx HTTP/2.0" 200 2198 "-" "Microsoft Office/16.0 (Windows NT 10.0; Microsoft Outlook 16.0.17126; Pro)"
            142.116.39.80 - francois@fyelle.com [15/Jan/2024:13:36:13 -0500] "POST /EWS/Exchange.asmx HTTP/1.1" 500 365 "-" "Microsoft Office/16.0 (Windows NT 10.0; Microsoft Outlook 16.0.17126; Pro)"
            142.116.39.80 - francois@fyelle.com [15/Jan/2024:13:39:58 -0500] "POST /EWS/Exchange.asmx HTTP/2.0" 200 2198 "-" "Microsoft Office/16.0 (Windows NT 10.0; Microsoft Outlook 16.0.17126; Pro)"
            142.116.39.80 - francois@fyelle.com [15/Jan/2024:13:48:40 -0500] "POST /EWS/Exchange.asmx HTTP/2.0" 200 1045 "-" "Microsoft Office/16.0 (Windows NT 10.0; Microsoft Outlook 16.0.17126; Pro)"
            142.116.39.80 - francois@fyelle.com [15/Jan/2024:14:09:59 -0500] "POST /EWS/Exchange.asmx HTTP/2.0" 200 2198 "-" "Microsoft Office/16.0 (Windows NT 10.0; Microsoft Outlook 16.0.17126; Pro)"
            142.116.39.80 - francois@fyelle.com [15/Jan/2024:14:40:14 -0500] "POST /EWS/Exchange.asmx HTTP/2.0" 200 2198 "-" "Microsoft Office/16.0 (Windows NT 10.0; Microsoft Outlook 16.0.17126; Pro)"
            142.116.39.80 - francois@fyelle.com [15/Jan/2024:15:09:29 -0500] "POST /EWS/Exchange.asmx HTTP/2.0" 200 2198 "-" "Microsoft Office/16.0 (Windows NT 10.0; Microsoft Outlook 16.0.17126; Pro)"
            142.116.39.80 - francois@fyelle.com [15/Jan/2024:15:10:23 -0500] "POST /EWS/Exchange.asmx HTTP/2.0" 200 2198 "-" "Microsoft Office/16.0 (Windows NT 10.0; Microsoft Outlook 16.0.17126; Pro)"

            ==> /var/log/nginx/nginx-ews-error.log <==

            ==> /var/log/nginx/nginx-mapi-access.log <==
            142.116.39.80 - francois@fyelle.com [15/Jan/2024:15:09:57 -0500] "POST /mapi/emsmdb/?MailboxId=6672616e-636f-6973-4066-796519000000@fyelle.com HTTP/2.0" 200 259 "-" "Microsoft Office/16.0 (Windows NT 10.0; Microsoft Outlook 16.0.17126; Pro)"
            142.116.39.80 - francois@fyelle.com [15/Jan/2024:15:10:56 -0500] "POST /mapi/emsmdb/?MailboxId=6672616e-636f-6973-4066-796519000000@fyelle.com HTTP/2.0" 200 110 "-" "Microsoft Office/16.0 (Windows NT 10.0; Microsoft Outlook 16.0.17126; Pro)"
            142.116.39.80 - francois@fyelle.com [15/Jan/2024:15:10:56 -0500] "POST /mapi/emsmdb/?MailboxId=6672616e-636f-6973-4066-796519000000@fyelle.com HTTP/2.0" 200 112 "-" "Microsoft Office/16.0 (Windows NT 10.0; Microsoft Outlook 16.0.17126; Pro)"
            142.116.39.80 - francois@fyelle.com [15/Jan/2024:15:11:38 -0500] "POST /mapi/emsmdb/?MailboxId=6672616e-636f-6973-4066-796519000000@fyelle.com HTTP/2.0" 200 182 "-" "Microsoft Office/16.0 (Windows NT 10.0; Microsoft Outlook 16.0.17126; Pro)"
            142.116.39.80 - francois@fyelle.com [15/Jan/2024:15:12:02 -0500] "POST /mapi/emsmdb/?MailboxId=6672616e-636f-6973-4066-796519000000@fyelle.com HTTP/2.0" 200 112 "-" "Microsoft Office/16.0 (Windows NT 10.0; Microsoft Outlook 16.0.17126; Pro)"
            142.116.39.80 - francois@fyelle.com [15/Jan/2024:15:14:56 -0500] "POST /mapi/emsmdb/?MailboxId=6672616e-636f-6973-4066-796519000000@fyelle.com HTTP/2.0" 200 182 "-" "Microsoft Office/16.0 (Windows NT 10.0; Microsoft Outlook 16.0.17126; Pro)"
            142.116.39.80 - francois@fyelle.com [15/Jan/2024:15:15:48 -0500] "POST /mapi/emsmdb/?MailboxId=6679656c-6c65-2e63-6f6d-00000e000000@fyelle.com HTTP/2.0" 200 82 "-" "Microsoft Office/16.0 (Windows NT 10.0; Microsoft Outlook 16.0.17126; Pro)"
            142.116.39.80 - francois@fyelle.com [15/Jan/2024:15:15:48 -0500] "POST /mapi/nspi/?MailboxId=6672616e-636f-6973-4066-796519000000@fyelle.com HTTP/2.0" 200 82 "-" "Microsoft Office/16.0 (Windows NT 10.0; Microsoft Outlook 16.0.17126; Pro)"
            142.116.39.80 - francois@fyelle.com [15/Jan/2024:15:15:48 -0500] "POST /mapi/nspi/?MailboxId=6672616e-636f-6973-4066-796519000000@fyelle.com HTTP/2.0" 200 82 "-" "Microsoft Office/16.0 (Windows NT 10.0; Microsoft Outlook 16.0.17126; Pro)"
            142.116.39.80 - francois@fyelle.com [15/Jan/2024:15:17:00 -0500] "POST /mapi/emsmdb/?MailboxId=6672616e-636f-6973-4066-796519000000@fyelle.com HTTP/2.0" 200 189 "-" "Microsoft Office/16.0 (Windows NT 10.0; Microsoft Outlook 16.0.17126; Pro)"

            ==> /var/log/nginx/nginx-mapi-error.log <==
            2024/01/05 09:29:26 [error] 1881#1881: *272129 upstream prematurely closed connection while reading upstream, client: 142.116.39.80, server: _, request: "POST /mapi/emsmdb/?MailboxId=6672616e-636f-6973-4066-796519000000@fyelle.com HTTP/2.0", upstream: "https://[::1]:10443/mapi/emsmdb/?MailboxId=6672616e-636f-6973-4066-796519000000@fyelle.com", host: "mail4.domain.com"
            2024/01/05 09:29:26 [error] 1881#1881: *272129 upstream prematurely closed connection while reading upstream, client: 142.116.39.80, server: _, request: "POST /mapi/emsmdb/?MailboxId=6672616e-636f-6973-4066-796519000000@fyelle.com HTTP/2.0", upstream: "https://127.0.0.1:10443/mapi/emsmdb/?MailboxId=6672616e-636f-6973-4066-796519000000@fyelle.com", host: "mail4.domain.com"
            2024/01/05 09:29:26 [error] 1881#1881: *272129 connect() failed (111: Connection refused) while connecting to upstream, client: 142.116.39.80, server: _, request: "POST /mapi/emsmdb/?MailboxId=6672616e-636f-6973-4066-796519000000@fyelle.com HTTP/2.0", upstream: "https://127.0.0.1:10443/mapi/emsmdb/?MailboxId=6672616e-636f-6973-4066-796519000000@fyelle.com", host: "mail4.domain.com"
            2024/01/05 09:29:26 [error] 1881#1881: *272129 connect() failed (111: Connection refused) while connecting to upstream, client: 142.116.39.80, server: _, request: "POST /mapi/emsmdb/?MailboxId=6672616e-636f-6973-4066-796519000000@fyelle.com HTTP/2.0", upstream: "https://[::1]:10443/mapi/emsmdb/?MailboxId=6672616e-636f-6973-4066-796519000000@fyelle.com", host: "mail4.domain.com"
            2024/01/05 09:29:28 [error] 1881#1881: *272129 no live upstreams while connecting to upstream, client: 142.116.39.80, server: _, request: "POST /mapi/emsmdb/?MailboxId=6672616e-636f-6973-4066-796519000000@fyelle.com HTTP/2.0", upstream: "https://gromoxhttp/mapi/emsmdb/?MailboxId=6672616e-636f-6973-4066-796519000000@fyelle.com", host: "mail4.domain.com"
            2024/01/05 15:10:11 [error] 1814#1814: *5508 upstream prematurely closed connection while reading upstream, client: 142.116.39.80, server: _, request: "POST /mapi/emsmdb/?MailboxId=6672616e-636f-6973-4066-796519000000@fyelle.com HTTP/2.0", upstream: "https://127.0.0.1:10443/mapi/emsmdb/?MailboxId=6672616e-636f-6973-4066-796519000000@fyelle.com", host: "mail4.domain.com"
            2024/01/05 15:10:11 [error] 1814#1814: *5508 upstream prematurely closed connection while reading upstream, client: 142.116.39.80, server: _, request: "POST /mapi/emsmdb/?MailboxId=6672616e-636f-6973-4066-796519000000@fyelle.com HTTP/2.0", upstream: "https://[::1]:10443/mapi/emsmdb/?MailboxId=6672616e-636f-6973-4066-796519000000@fyelle.com", host: "mail4.domain.com"

            ==> /var/log/nginx/nginx-meet-access.log <==
            110.239.218.106 - - [01/Jan/2024:21:16:40 -0500] "HEAD /meet HTTP/1.1" 301 0 "http://portail.domain.com" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36 OPR/102.0.0.0"
            110.239.218.106 - - [01/Jan/2024:21:16:41 -0500] "HEAD /meet/ HTTP/1.1" 200 0 "http://portail.domain.com" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36 OPR/102.0.0.0"
            110.239.222.97 - - [01/Jan/2024:21:16:46 -0500] "GET /meet HTTP/1.1" 301 173 "http://domain.com" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36 OPR/102.0.0.0"
            110.239.222.97 - - [01/Jan/2024:21:16:47 -0500] "GET /meet/ HTTP/1.1" 200 70096 "http://domain.com" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36 OPR/102.0.0.0"
            207.200.8.180 - - [03/Jan/2024:06:29:39 -0500] "GET /meet HTTP/1.1" 301 173 "https://domain.com" "LightspeedSystemsCrawler Mozilla/5.0 (Windows; U; MSIE 9.0; Windows NT 9.0; en-US)"
            207.200.8.180 - - [03/Jan/2024:06:29:39 -0500] "GET /meet/ HTTP/1.1" 200 70096 "https://domain.com" "LightspeedSystemsCrawler Mozilla/5.0 (Windows; U; MSIE 9.0; Windows NT 9.0; en-US)"
            10.11.11.21 - - [16/Jan/2024:11:57:19 -0500] "GET /meet HTTP/2.0" 301 162 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36"
            10.11.11.21 - - [16/Jan/2024:11:57:19 -0500] "GET /meet/ HTTP/2.0" 200 20648 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36"
            10.11.11.21 - - [16/Jan/2024:20:10:23 -0500] "GET /meet HTTP/2.0" 301 162 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36"
            10.11.11.21 - - [16/Jan/2024:20:10:23 -0500] "GET /meet/ HTTP/2.0" 200 20648 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36"

            ==> /var/log/nginx/nginx-meet-error.log <==

            ==> /var/log/nginx/nginx-oab-access.log <==
            142.116.39.80 - - [14/Jan/2024:12:43:37 -0500] "HEAD /OAB/oab.xml HTTP/2.0" 401 0 "-" "Microsoft BITS/7.8"
            142.116.39.80 - francois@fyelle.com [14/Jan/2024:12:43:37 -0500] "HEAD /OAB/oab.xml HTTP/2.0" 200 0 "-" "Microsoft BITS/7.8"
            142.116.39.80 - - [14/Jan/2024:12:43:37 -0500] "GET /OAB/oab.xml HTTP/2.0" 401 14 "-" "Microsoft BITS/7.8"
            142.116.39.80 - francois@fyelle.com [14/Jan/2024:12:43:37 -0500] "GET /OAB/oab.xml HTTP/2.0" 200 49 "-" "Microsoft BITS/7.8"
            142.116.39.80 - - [14/Jan/2024:14:46:32 -0500] "HEAD /OAB/oab.xml HTTP/2.0" 401 0 "-" "Microsoft BITS/7.8"
            142.116.39.80 - - [15/Jan/2024:09:07:51 -0500] "HEAD /OAB/oab.xml HTTP/2.0" 401 0 "-" "Microsoft BITS/7.8"
            142.116.39.80 - - [15/Jan/2024:09:07:53 -0500] "HEAD /OAB/oab.xml HTTP/2.0" 401 0 "-" "Microsoft BITS/7.8"
            142.116.39.80 - francois@fyelle.com [15/Jan/2024:09:07:53 -0500] "HEAD /OAB/oab.xml HTTP/2.0" 200 0 "-" "Microsoft BITS/7.8"
            142.116.39.80 - - [15/Jan/2024:09:07:53 -0500] "GET /OAB/oab.xml HTTP/2.0" 401 14 "-" "Microsoft BITS/7.8"
            142.116.39.80 - francois@fyelle.com [15/Jan/2024:09:07:53 -0500] "GET /OAB/oab.xml HTTP/2.0" 200 49 "-" "Microsoft BITS/7.8"

            ==> /var/log/nginx/nginx-oab-error.log <==

            ==> /var/log/nginx/nginx-office-access.log <==

            ==> /var/log/nginx/nginx-office-error.log <==

            ==> /var/log/nginx/nginx-rpc-access.log <==

            ==> /var/log/nginx/nginx-rpc-error.log <==

            ==> /var/log/nginx/nginx-sync-access.log <==
            10.1.1.70 - john@network.com [15/Jan/2024:15:15:13 -0500] "POST /Microsoft-Server-ActiveSync?Cmd=Settings&User=jean%40domain.com&DeviceId=SEC19C2158ABC31A&DeviceType=SamsungDevice HTTP/1.1" 449 5 "-" "Android-SAMSUNG-SM-S901W/101.14"
            10.1.1.70 - john@network.com [15/Jan/2024:15:15:13 -0500] "POST /Microsoft-Server-ActiveSync?Cmd=FolderSync&User=jean%40domain.com&DeviceId=SEC19C2158ABC31A&DeviceType=SamsungDevice HTTP/1.1" 449 5 "-" "Android-SAMSUNG-SM-S901W/101.14"
            10.1.1.70 - john@network.com [15/Jan/2024:15:15:30 -0500] "OPTIONS /Microsoft-Server-ActiveSync?Cmd=Options&User=jean%40domain.com&DeviceId=SEC19C2158ABC31A&DeviceType=SamsungDevice HTTP/1.1" 200 5 "-" "Android-SAMSUNG-SM-S901W/101.14"
            10.1.1.70 - john@network.com [15/Jan/2024:15:15:30 -0500] "POST /Microsoft-Server-ActiveSync?Cmd=Provision&User=jean%40domain.com&DeviceId=SEC19C2158ABC31A&DeviceType=SamsungDevice HTTP/1.1" 200 281 "-" "Android-SAMSUNG-SM-S901W/101.14"
            10.1.1.70 - john@network.com [15/Jan/2024:15:15:31 -0500] "POST /Microsoft-Server-ActiveSync?Cmd=Provision&User=jean%40domain.com&DeviceId=SEC19C2158ABC31A&DeviceType=SamsungDevice HTTP/1.1" 200 64 "-" "Android-SAMSUNG-SM-S901W/101.14"
            10.1.1.70 - john@network.com [15/Jan/2024:15:15:32 -0500] "POST /Microsoft-Server-ActiveSync?Cmd=FolderSync&User=jean%40domain.com&DeviceId=SEC19C2158ABC31A&DeviceType=SamsungDevice HTTP/1.1" 200 64 "-" "Android-SAMSUNG-SM-S901W/101.14"
            10.1.1.70 - john@network.com [15/Jan/2024:15:15:35 -0500] "POST /Microsoft-Server-ActiveSync?Cmd=Sync&User=jean%40domain.com&DeviceId=SEC19C2158ABC31A&DeviceType=SamsungDevice HTTP/1.1" 200 70 "-" "Android-SAMSUNG-SM-S901W/101.14"
            10.1.1.70 - john@network.com [15/Jan/2024:15:15:35 -0500] "POST /Microsoft-Server-ActiveSync?Cmd=Ping&User=jean%40domain.com&DeviceId=SEC19C2158ABC31A&DeviceType=SamsungDevice HTTP/1.1" 499 0 "-" "Android-SAMSUNG-SM-S901W/101.14"
            10.1.1.70 - john@network.com [15/Jan/2024:15:15:42 -0500] "POST /Microsoft-Server-ActiveSync?Cmd=Sync&User=jean%40domain.com&DeviceId=SEC19C2158ABC31A&DeviceType=SamsungDevice HTTP/1.1" 200 71 "-" "Android-SAMSUNG-SM-S901W/101.14"
            52.96.252.101 - tommy@domain.com [15/Jan/2024:15:15:42 -0500] "POST /Microsoft-Server-ActiveSync?Cmd=Ping&User=tommy%40domain.com&DeviceId=df7c0a26ab374c779caf76bad1ddda96&DeviceType=Outlook HTTP/1.1" 200 13 "-" "Outlook-iOS-Android/1.0"

            ==> /var/log/nginx/nginx-sync-error.log <==
            2024/01/15 15:15:13 [error] 1534#1534: *134608 FastCGI sent in stderr: "Passing INI directive through FastCGI: unable to set 'zend.exception_string_param_max_len'" while reading response header from upstream, client: 10.1.1.70, server: _, request: "OPTIONS /Microsoft-Server-ActiveSync?Cmd=Options&User=jean%40domain.com&DeviceId=SEC19C2158ABC31A&DeviceType=SamsungDevice HTTP/1.1", upstream: "fastcgi://unix:/run/php-fpm/php-grommunio-sync-fpm.sock:", host: "mail4.domain.com"
            2024/01/15 15:15:13 [error] 1534#1534: *134608 FastCGI sent in stderr: "Passing INI directive through FastCGI: unable to set 'zend.exception_string_param_max_len'" while reading response header from upstream, client: 10.1.1.70, server: _, request: "POST /Microsoft-Server-ActiveSync?Cmd=Settings&User=jean%40domain.com&DeviceId=SEC19C2158ABC31A&DeviceType=SamsungDevice HTTP/1.1", upstream: "fastcgi://unix:/run/php-fpm/php-grommunio-sync-fpm.sock:", host: "mail4.domain.com"
            2024/01/15 15:15:13 [error] 1534#1534: *134608 FastCGI sent in stderr: "Passing INI directive through FastCGI: unable to set 'zend.exception_string_param_max_len'" while reading response header from upstream, client: 10.1.1.70, server: _, request: "POST /Microsoft-Server-ActiveSync?Cmd=FolderSync&User=jean%40domain.com&DeviceId=SEC19C2158ABC31A&DeviceType=SamsungDevice HTTP/1.1", upstream: "fastcgi://unix:/run/php-fpm/php-grommunio-sync-fpm.sock:", host: "mail4.domain.com"
            2024/01/15 15:15:30 [error] 1534#1534: *134608 FastCGI sent in stderr: "Passing INI directive through FastCGI: unable to set 'zend.exception_string_param_max_len'" while reading response header from upstream, client: 10.1.1.70, server: _, request: "OPTIONS /Microsoft-Server-ActiveSync?Cmd=Options&User=jean%40domain.com&DeviceId=SEC19C2158ABC31A&DeviceType=SamsungDevice HTTP/1.1", upstream: "fastcgi://unix:/run/php-fpm/php-grommunio-sync-fpm.sock:", host: "mail4.domain.com"
            2024/01/15 15:15:30 [error] 1534#1534: *134608 FastCGI sent in stderr: "Passing INI directive through FastCGI: unable to set 'zend.exception_string_param_max_len'" while reading response header from upstream, client: 10.1.1.70, server: _, request: "POST /Microsoft-Server-ActiveSync?Cmd=Provision&User=jean%40domain.com&DeviceId=SEC19C2158ABC31A&DeviceType=SamsungDevice HTTP/1.1", upstream: "fastcgi://unix:/run/php-fpm/php-grommunio-sync-fpm.sock:", host: "mail4.domain.com"
            2024/01/15 15:15:31 [error] 1534#1534: *134608 FastCGI sent in stderr: "Passing INI directive through FastCGI: unable to set 'zend.exception_string_param_max_len'" while reading response header from upstream, client: 10.1.1.70, server: _, request: "POST /Microsoft-Server-ActiveSync?Cmd=Provision&User=jean%40domain.com&DeviceId=SEC19C2158ABC31A&DeviceType=SamsungDevice HTTP/1.1", upstream: "fastcgi://unix:/run/php-fpm/php-grommunio-sync-fpm.sock:", host: "mail4.domain.com"
            2024/01/15 15:15:32 [error] 1534#1534: *134608 FastCGI sent in stderr: "Passing INI directive through FastCGI: unable to set 'zend.exception_string_param_max_len'" while reading response header from upstream, client: 10.1.1.70, server: _, request: "POST /Microsoft-Server-ActiveSync?Cmd=FolderSync&User=jean%40domain.com&DeviceId=SEC19C2158ABC31A&DeviceType=SamsungDevice HTTP/1.1", upstream: "fastcgi://unix:/run/php-fpm/php-grommunio-sync-fpm.sock:", host: "mail4.domain.com"
            2024/01/15 15:15:35 [error] 1534#1534: *134608 FastCGI sent in stderr: "Passing INI directive through FastCGI: unable to set 'zend.exception_string_param_max_len'" while reading response header from upstream, client: 10.1.1.70, server: _, request: "POST /Microsoft-Server-ActiveSync?Cmd=Sync&User=jean%40domain.com&DeviceId=SEC19C2158ABC31A&DeviceType=SamsungDevice HTTP/1.1", upstream: "fastcgi://unix:/run/php-fpm/php-grommunio-sync-fpm.sock:", host: "mail4.domain.com"
            2024/01/15 15:15:42 [error] 1534#1534: *134608 FastCGI sent in stderr: "Passing INI directive through FastCGI: unable to set 'zend.exception_string_param_max_len'" while reading response header from upstream, client: 10.1.1.70, server: _, request: "POST /Microsoft-Server-ActiveSync?Cmd=Sync&User=jean%40domain.com&DeviceId=SEC19C2158ABC31A&DeviceType=SamsungDevice HTTP/1.1", upstream: "fastcgi://unix:/run/php-fpm/php-grommunio-sync-fpm.sock:", host: "mail4.domain.com"
            2024/01/15 15:15:42 [error] 1534#1534: *134627 FastCGI sent in stderr: "Passing INI directive through FastCGI: unable to set 'zend.exception_string_param_max_len'" while reading response header from upstream, client: 52.96.252.101, server: _, request: "POST /Microsoft-Server-ActiveSync?Cmd=Ping&User=tommy%40domain.com&DeviceId=df7c0a26ab374c779caf76bad1ddda96&DeviceType=Outlook HTTP/1.1", upstream: "fastcgi://unix:/run/php-fpm/php-grommunio-sync-fpm.sock:", host: "mail4.domain.com"

            ==> /var/log/nginx/nginx-web-access.log <==
            10.11.11.21 - - [16/Jan/2024:20:10:14 -0500] "POST /web/grommunio.php?subsystem=webapp_1705453706733 HTTP/2.0" 200 4054 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36"
            10.11.11.21 - - [16/Jan/2024:20:10:14 -0500] "POST /web/grommunio.php?subsystem=webapp_1705453706733 HTTP/2.0" 200 144 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36"
            10.11.11.21 - - [16/Jan/2024:20:10:14 -0500] "POST /web/grommunio.php?subsystem=webapp_1705453706733 HTTP/2.0" 200 154 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36"
            10.11.11.21 - - [16/Jan/2024:20:10:14 -0500] "POST /web/grommunio.php?subsystem=webapp_1705453706733 HTTP/2.0" 200 63 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36"
            10.11.11.21 - - [16/Jan/2024:20:10:15 -0500] "POST /web/grommunio.php?subsystem=webapp_1705453706733 HTTP/2.0" 200 362 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36"
            10.11.11.21 - - [16/Jan/2024:20:10:17 -0500] "POST /web/grommunio.php?subsystem=webapp_1705453706733 HTTP/2.0" 200 1141 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36"
            10.11.11.21 - - [16/Jan/2024:20:10:17 -0500] "POST /web/grommunio.php?subsystem=webapp_1705453706733 HTTP/2.0" 200 114 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36"
            10.11.11.21 - - [16/Jan/2024:20:10:18 -0500] "POST /web/grommunio.php?subsystem=webapp_1705453706733 HTTP/2.0" 200 4054 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36"
            10.11.11.21 - - [16/Jan/2024:20:10:43 -0500] "POST /web/grommunio.php?subsystem=webapp_1705453706733 HTTP/2.0" 200 70 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36"
            10.11.11.21 - - [16/Jan/2024:20:11:14 -0500] "POST /web/grommunio.php?subsystem=webapp_1705453706733 HTTP/2.0" 200 70 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36"

            ==> /var/log/nginx/nginx-web-error.log <==
            #1 /usr/share/grommunio-web/grommunio.php(147): JSONRequest->execute()
            #2 {main}
            thrown in /usr/share/grommunio-web/plugins/files/php/modules/class.hierarchylistmodule.php on line 79" while reading response header from upstream, client: 10.11.11.21, server: _, request: "POST /web/grommunio.php?subsystem=webapp_1705423938534 HTTP/2.0", upstream: "fastcgi://unix:/run/php-fpm/php-grommunio-web-fpm.sock:", host: "10.1.1.70"
            2024/01/16 20:10:13 [error] 1532#1532: *3 FastCGI sent in stderr: "PHP message: Failed to open store. john@network.com requested 0000000038a1bb1005e5101aa1bb08002b2a56c20000454d534d44422e444c4c00000000000000001b55fa20aa6611cd9bc800aa002fc45a0c0000006a65616e40616d657269636d656469612e636f6d002f6f3d6936326532663338652f6f753d45786368616e67652041646d696e6973747261746976652047726f7570202846594449424f484632335350444c54292f636e3d526563697069656e74732f636e3d313130303030303030663030303030302d6a65616e00e94632f43c00000002000000100000006a00650061006e00400061006d0065007200690063006d0065006400690061002e0063006f006d0000000000PHP message: Failed to open store. john@network.com requested 0000000038a1bb1005e5101aa1bb08002b2a56c200006d737073742e646c6c00000000004e495441f9bfb80100aa0037d96e0000000043003a005c00550073006500720073005c006a00650061006e005c0041007000700044006100740061005c004c006f00630061006c005c004d006900630072006f0073006f00660074005c004f00750074006c006f006f006b005c0049006e007400650072006e00650074002000430061006c0065006e00640061007200200053007500620073006300720069007000740069006f006e00730020002d0020004a00650061006e002e007000730074000000" while reading response header from upstream, client: 10.11.11.21, server: _, request: "POST /web/grommunio.php?subsystem=webapp_1705453706733 HTTP/2.0", upstream: "fastcgi://unix:/run/php-fpm/php-grommunio-web-fpm.sock:", host: "10.1.1.70"
            2024/01/16 20:10:14 [error] 1532#1532: *3 FastCGI sent in stderr: "PHP message: PHP Fatal error: Uncaught Error: Call to undefined method Sabre\HTTP\ClientHttpException::getTitle() in /usr/share/grommunio-web/plugins/files/php/modules/class.hierarchylistmodule.php:79
            Stack trace:
            #0 /usr/share/grommunio-web/server/includes/core/class.jsonrequest.php(60): HierarchyListModule->execute()
            #1 /usr/share/grommunio-web/grommunio.php(147): JSONRequest->execute()
            #2 {main}
            thrown in /usr/share/grommunio-web/plugins/files/php/modules/class.hierarchylistmodule.php on line 79" while reading response header from upstream, client: 10.11.11.21, server: _, request: "POST /web/grommunio.php?subsystem=webapp_1705453706733 HTTP/2.0", upstream: "fastcgi://unix:/run/php-fpm/php-grommunio-web-fpm.sock:", host: "10.1.1.70"

            The directory /var/log/grommunio/ was removed some time ago, all nginx logs should be placed in /var/log/nginx/. I assume you have an old configuration file that points to /var/log/grommunio/ instead of /var/log/nginx/. Try to find this old configuration file and replace or repair it. Did you follow step 21. to migrate outdated configuration files?

            This is weird. I don't understand why my system did not follow all changes. Why my files do not log at the right place? I don't know. I think that you guys should know better than me. I did install this system on october 2021 and I Never did a thing in exception of running zypper up.

            I'm propably stupid, but I thought that zypper up was the right thing to run to keep up to date.

            Your step 21 are not easy. I compared all files from what the find command found.

            find / -print | egrep '*.rpmnew'
            /var/lib/grommunio-files/config/config.php.rpmnew
            /etc/grommunio-chat/config.json.rpmnew
            /etc/postfix/main.cf.rpmnew
            /etc/postfix/master.cf.rpmnew
            /etc/postfix/transport.rpmnew
            /etc/systemd/timesyncd.conf.rpmnew
            /etc/zypp/zypp.conf.rpmnew
            /etc/crontab.rpmnew

            1- Folks, am I the only one who's trying to migrate my system to the last verison?
            2- Is it the only precedure availabe to show us How to migrate to the last version?

              Try to find the config file that points to /var/log/grommunio/ and repair this paths:
              grep -R "/var/log/grommunio/" /etc/*

              bunker Your step 21 are not easy.

              New versions of programs may have new parameter any you have to adjust the configuration files manually.

              © 2020-2024 grommunio GmbH. All rights reserved. | https://grommunio.com | Data Protection | Legal notice