Hello,
I have been succesful deploying the secured version of dcm4chee 5.10.5.
Everything works fine, I'm able to push and retrieve files.
What I want to do now is to be able to start wildfly as a service so that the archive is always there even if I reboot the computer.
To test, I terminated wildfly and started it again running the following command:
sudo ./standalone.sh -c dcm4chee-arc.xml
However, I get an error saying
ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread) WFLYCTL0013: Operation ("add") failed - address: ([("deployment" => "dcm4chee-arc-ear-5.10.5-mysql-secure-ui.ear")]) - failure description: "WFLYSRV0137: No deployment content with hash 58279e3f40b79ccf06ab614d1536dc4d496efe1a is available in the deployment content repository for deployment 'dcm4chee-arc-ear-5.10.5-mysql-secure-ui.ear'. This is a fatal boot error. To correct the problem, either restart with the --admin-only switch set and use the CLI to install the missing content or remove it from the configuration, or remove the deployment from the xml configuration file and restart."
13:44:54,848 FATAL [org.jboss.as.server] (Controller Boot Thread) WFLYSRV0056: Server boot has failed in an unrecoverable manner; exiting. See previous messages for details.
I have to go to the dcm4chee-arc.xml file and delete the last lines that include
<deployments>
.....
</deployments>
After this I'm able to succesfully start wildfly again
sudo ./standalone.sh -c dcm4chee-arc.xml
Then in another window, inside the wildfly/bin directory I run
and I deploy dcm4che again
[standalone@localhost:9990 /] deploy /opt/dcm4chee-arc-5.10.5-mysql-secure-ui/deploy/dcm4chee-arc-ear-5.10.5-mysql-secure-ui.ear
and everything starts working again with all the settings that I had.
How can I configure this so that wildfly can start as a service and I don't have to re-deploy everytime?
thank you in advance for any help