You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to CAS Community
Hello Folks,
I was able to run CAS 7.1.3 locally in my machine but in order to do it I had to run bunch of keystore commands to generate jks file and add to my java home certs
keytool -export -alias cas -keystore thekeystore -file cas.crt -storepass changeit
I am not certain if this is the most efficient and correct way to do it but can someone please walk me through the steps on how did they deploy in AWS ECS or any other cloud provider.
Appreciate all the help in advance
Cheers
Ankit Kumar
unread,
Mar 5, 2025, 8:08:16 AM3/5/25
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to CAS Community, Ankit Kumar
Ray Bon
Would you have any insight into this perhaps?
Thanks Ankit
Pablo Vidaurri
unread,
Mar 12, 2025, 1:35:36 PM3/12/25
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to CAS Community, Ankit Kumar
Doing something similar within docker file to build AWS ECR image:
USER root RUN keytool -trustcacerts -keystore $JAVA_HOME/lib/security/cacerts -storepass changeit -importcert -alias "Root CA" -file "/tmp/root_ca.crt" -noprompt
Not sure of another more efficient way unless you create a base image with required certs already included to use in your docker. But the way it is should not take time to execute.