Expand my Community achievements bar.

Dive into Adobe Summit 2024! Explore curated list of AEM sessions & labs, register, connect with experts, ask questions, engage, and share insights. Don't miss the excitement.
SOLVED

Adobe Manage Services

Avatar

Level 5

Hey All,

So I am trying to do a build server, but running into a issue. We all know author's are on port 4502, but when I get my dev environment from AMS I get an IP address like XX.X.XX.XX and if go using that IP address I get certificate error (and I should because that IP is not on the certificate). They also give me a url like https://XXXXXX.adobecqms.net .. that is fine with no certificate error, but I can't access /crx/packmgr/service.jsp since you can only access that via IP address. So when I try to create a build -PautoInstallPackage and make it install on either the IP address or a Host name which is virtually IP address I get a maven build issue because we have a certificate problem. Does anyone know a work around for this?

1 Accepted Solution

Avatar

Correct answer by
Level 5

I eventually added the site to a keystore and used that. It is not optimal, but it worked

View solution in original post

2 Replies

Avatar

Employee

On an AMS managed instance SSL/TLS is terminated at the ELB.  So they install a local SSL certificate when going to the Author / Publish IP. HTTP access via port is locked down heavily.

Options

- work with your CSE to whitelist your IP so you can hit the Author over http://<Ip>:4502

or

- connect over https as you are doing and tell maven to use a flag like : -Dmaven.wagon.http.ssl.insecure=true

Avatar

Correct answer by
Level 5

I eventually added the site to a keystore and used that. It is not optimal, but it worked