Hi everyone,
I’d like to report a small issue in installUtils.py when installing Dataverse with newer versions of Payara. When attempting to install Dataverse using Payara 7.2026.2 (as recommended in the documentation), running python install.py always results in the following error: Invalid Payara directory!
This is because the function "test_appserver_directory" in installUtils.py is checking for Payara 6 and not 7:
|
if major_version != 6 or minor_version < 2023: |
Updating the condition to allow Payara 7 resolves the bug.
Hope this helps anyone facing the same issue!
Juan
Hi everyone,
I’d like to report a small issue in installUtils.py when installing Dataverse with newer versions of Payara. When attempting to install Dataverse using Payara 7.2026.2 (as recommended in the documentation), running python install.py always results in the following error: Invalid Payara directory!
This is because the function "test_appserver_directory" in installUtils.py is checking for Payara 6 and not 7:
dataverse/scripts/installer/installUtils.py
Line 60 in 300d5b5
Updating the condition to allow Payara 7 resolves the bug.
Hope this helps anyone facing the same issue!
Juan