×
The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.
On 4/2/26 10:08, James H. H. Lampert via MIDRANGE-L wrote:
On 4/2/26 8:39 AM, I wrote:
What it says on the tin: has anybody come up with a solution for
certificate renewal automation that will run on a Midrange box, that's
compatible with Tomcat servers?
I should have been more specific: Tomcat servers running from Apache
Tomcat downloads, set up to use Java Keystores.
DCM is not involved in any way.
One possible solution is to install WildFly and use the letsencrypt
client that is built in there. If you decide to go that route, here are
some sample commands to use in the WildFly CLI that get you going with
letsencrypt:
/subsystem=elytron/key-store=letsencryptKS:add(path=letsencrypt.keystore.jks,
relative-to=jboss.server.config.dir,
credential-reference={clear-text=changethispassphrase}, type=JKS)
/subsystem=elytron/key-store=letsencryptaccountsKS:add(path=letsencryptaccounts.keystore.jks,relative-to=jboss.server.config.dir,credential-reference={clear-text=changethispassphrase},type=JKS)
/subsystem=elytron/certificate-authority-account=myLetsEncryptAccount:add(alias=letsEncrypt,key-store=letsencryptaccountsKS,contact-urls=[mailto:webadmin@xxxxxxxxxxxxxx])
/subsystem=elytron/key-store=letsencryptKS:obtain-certificate(alias=server,domain-names=[www.yourdomain.com],certificate-authority-account=myLetsEncryptAccount,agree-to-terms-of-service)
This will result in certificates in letsencrypt.keystore.jks
As an Amazon Associate we earn from qualifying purchases.