fusionauth-issues icon indicating copy to clipboard operation
fusionauth-issues copied to clipboard

Add the JDK 17 xml sig changes to the Windows start script

Open robotdan opened this issue 3 years ago • 0 comments

Add the JDK 17 xml sig changes to the Windows start.ps1 script

Description

Provide a description of the problem you have or just leave us a general comment here.

Here is what we do in the Linux script:

sed -i -E '/^.*disallowAlg.*xmldsig.*$/d' "${JAVA_HOME}/conf/security/java.security"

Possible solution, needs testing:

  Set-Content -Path "${JAVA_HOME}/conf/security/java.security" -Value (Get-Content -Path "${JAVA_HOME}/conf/security/java.security" | Select-String -Pattern "^.*disallowAlg.*xmldsig.*$" -NotMatch)

Related

  • https://github.com/FusionAuth/fusionauth-site/issues/1202

Community guidelines

All issues filed in this repository must abide by the FusionAuth community guidelines.

robotdan avatar Sep 27 '22 04:09 robotdan