I am running below command to deploy my code package in aem instance 4502(which is up and running)
mvn clean install -PautoInstallPackage
but i am getting below error, any idea why it is happening?
[ERROR] Request to http://localhost:4502/crx/packmgr/service.jsp failed, response=Gateway Timeout
FYI- when i run mvn clean install it is showing success and i manually deployed in 4502 instance.
AEM version - 6.5.5
Solved! Go to Solution.
Views
Replies
Total Likes
if is because , in pom.xml your need to give the right user name , password and port number. Also check for proxy attribute.
Hi @ramaem12 ,
Looks like server is not responding when you try to deploy snapshot.
This could be a problem with snapshot as well.
Can you please have a look at logs?
Views
Replies
Total Likes
A project root pom.xml file includes a connection properties
<properties>
<aem.host>localhost</aem.host>
<aem.port>4502</aem.port>
<aem.publish.host>localhost</aem.publish.host>
<aem.publish.port>4503</aem.publish.port>
<sling.user>admin</sling.user>
<sling.password>admin</sling.password>
<vault.user>admin</vault.user>
<vault.password>admin</vault.password>
Make sure, that your host, port, user, and password are properly defined.
Hi @ramaem12 ,
Can you please try to add <useProxy>false</useProxy> in the content package plugin
if is because , in pom.xml your need to give the right user name , password and port number. Also check for proxy attribute.
When you use the maven profile to deploy, do you see anything in the AEM logfile (error.log) which looks like that the package installation is running?
Views
Likes
Replies