Hi,
I'll be soon adding a page for upgrading secured version of DCM4CHEE. For now, you may follow the normal upgrade page
https://github.com/dcm4che/dcm4chee-arc-light/wiki/Upgrade for upgrading Database/LDAP and also Wildfly.
Before you can start accessing the secured archive, change the version numbers in the names of secure-deployments in the keycloak subsystem in the wildfly configuration file
<subsystem xmlns="urn:jboss:domain:keycloak:1.1">
<secure-deployment name="
dcm4chee-arc-ui2-5.x.old-secure.war">
<realm>dcm4che</realm>
<resource>dcm4chee-arc-ui</resource>
<realm-public-key>realm-key</realm-public-key>
<auth-server-url>/auth</auth-server-url>
<credential name="secret">secret1</credential>
</secure-deployment>
<secure-deployment name="
dcm4chee-arc-war-5.x.old-secure.war">
<realm>dcm4che</realm>
<resource>dcm4chee-arc-rs</resource>
<realm-public-key>realm-key</realm-public-key>
<auth-server-url>/auth</auth-server-url>
<credential name="secret">secret2</credential>
</secure-deployment>
<secure-deployment name="
dcm4chee-arr-proxy-5.x.old-secure.war">
<realm>dcm4che</realm>
<resource>dcm4chee-arr-proxy</resource>
<realm-public-key>realm-key</realm-public-key>
<auth-server-url>
http://localhost:8080/auth</auth-server-url>
<credential name="secret">secret3</credential>
</secure-deployment>
</subsystem>
Change the version numbers for the wars that you have in this file. Also note that with version 5.10.2, the old UI is no longer available.
So if you are having
dcm4chee-arc-ui-5.x.old-secure.war and you want to upgrade to 5.10.2 then you have to change it to
dcm4chee-arc-ui2-5.10.2-secure.warelse just changing the version numbers for the war file names is fine for upgrading to versions before 5.10.2
Restart wildfly and access secured archive UI.