EJBCA Finalize Installation Adminweb not available at https://localhost:8443/ejbca/adminweb/ #270
-
Hello, my current setup is: I followed the instructions of the official website for the installation (https://doc.primekey.com/ejbca/ejbca-installation) but got stucked at the "Finalize Installation" part. I also passed the "Installation" part with SUCCESS output. wildfly service is up and running But now I'm stuck at the "Finalize" part. I can't open the admin UI at https://localhost:8443/ejbca/adminweb/. Do you have any idea how to fix it? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 16 replies
-
Did you import superadmin.p12 into your web browser? |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
What browser are you using and are you connecting in an incognito session?
Firefox is the recommended browser for ease of importing your keys and
setting them up to gain access to the Admin Web application.
R
On Thu, Apr 27, 2023 at 01:26 JannikZorn ***@***.***> wrote:
I tried a completly new installation but I'm still unable to acess
adminweb. COuld anyone help me out? I tried the IP adress with port 8443 as
well
—
Reply to this email directly, view it on GitHub
<#270 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AABFMQGNCNGQ77QSFAUDIH3XDIURXANCNFSM6AAAAAAW6NYZEE>
.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
--
Rich Asay
|
Beta Was this translation helpful? Give feedback.
I solved it now it was the same issue as discussed in #46
The standalone.xml still tries to use kestore.p12 and truststore.p12 but can't find those files because the files called keystore.jks and truststore.jks. I used wildfly-26.0.0 and the documentation wasn't updated yet.
Solution was the following:
cd /opt/wildfly/standalone/configuration/keystore
keytool -importkeystore -srckeystore keystore.jks -srcstoretype JKS -deststoretype PKCS12 -destkeystore keystore.p12
keytool -importkeystore -srckeystore truststore.jks -srcstoretype JKS -deststoretype PKCS12 -destkeystore truststore.p12
systemctl restart wildfly
Thanks for your help anyway!