You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In rdc/redcap-overrides/mysql/scripts/20_mysql8_permission_update.sql and rdc/redcap-overrides/mysql/scripts/30_update_timezone.sql values are hardcoded instead of using the respective variables defined in .env, i.e. MYSQL_ROOT_PASSWORD, MYSQL_PASSWORD and TZ.
If e.g. the variable MYSQL_PASSWORD is set in .env to a non-default value then this breaks /opt/redcap/rdc/redcap-overrides/web/webroot/REDCapInstaller.php.
20_mysql8_permission_update.sql
ALTERUSER'redcap'@'%' IDENTIFIED WITH mysql_native_password BY 'redcap123';
ALTERUSER'root'@'%' IDENTIFIED WITH mysql_native_password BY 'root';
In
rdc/redcap-overrides/mysql/scripts/20_mysql8_permission_update.sql
andrdc/redcap-overrides/mysql/scripts/30_update_timezone.sql
values are hardcoded instead of using the respective variables defined in.env
, i.e.MYSQL_ROOT_PASSWORD
,MYSQL_PASSWORD
andTZ
.If e.g. the variable
MYSQL_PASSWORD
is set in.env
to a non-default value then this breaks/opt/redcap/rdc/redcap-overrides/web/webroot/REDCapInstaller.php
.20_mysql8_permission_update.sql
30_update_timezone.sql
REDCapInstaller.php
The text was updated successfully, but these errors were encountered: