Adobe Manage Services | Community
Skip to main content
Sean-McK
November 13, 2019
Solved

Adobe Manage Services

  • November 13, 2019
  • 2 replies
  • 2719 views

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?

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by Sean-McK

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

2 replies

Adobe Employee
November 14, 2019

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

Sean-McK
Sean-McKAuthorAccepted solution
November 21, 2019

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