Développer ma barre des réalisations de la Communauté.

Submissions are now open for the 2026 Adobe Experience Maker Awards.

Mark Solution

Cette conversation a été verrouillée en raison de son inactivité. Veuillez créer une nouvelle publication.

RÉSOLU

Upload and install package in AEM using curl

Avatar

Level 4

Hi,

Please help me with the curl command to install and upload package in nexus repository to my local AEM server.

Command used:

curl -u <userId>:<password> -F file=@"<complete nexus url for the package till .zip>" -F name="<name of the package zip folder>" -F force=true -F install=true http://localhost:4502/crx/packmgr/service.jsp

Error received:

couldn't open file <complete nexus url for the package till .zip>

1 solution acceptée

Avatar

Réponse correcte par
Level 10

Haven't tried your cmd but I believe you'd need to download the file from nexus using -O before uploading it to AEM

Another point to consider is the credentials of nexus vs AEM - Not sure if you have the same credentials for both or different

you may create a script or pipe it

Voir la solution dans l'envoi d'origine

2 Replies

Avatar

Employee

The file should be a file that is accessible by the account you are using to run the curl command. Usually, this file is located on the same machine where the curl command is being executed from.

Avatar

Réponse correcte par
Level 10

Haven't tried your cmd but I believe you'd need to download the file from nexus using -O before uploading it to AEM

Another point to consider is the credentials of nexus vs AEM - Not sure if you have the same credentials for both or different

you may create a script or pipe it