Older version package uninstallation | Community
Skip to main content
Level 3
April 25, 2020
Solved

Older version package uninstallation

  • April 25, 2020
  • 2 replies
  • 11024 views

Hi,

I am trying to delete all the older version of code packages installed in Author/Publishers and specifically trying to delete packages under /etc/packages with package name "cq-ui-5.1.45-SNAPSHOT.zip"..

 

"cq-ui-5.1.45-SNAPSHOT.zip" is the latest version installed on the system and we have similar old package versions 

"cq-ui-5.1.44-SNAPSHOT.zip";

""cq-ui-5.1.43-SNAPSHOT.zip""; 

"cq-ui-5.1.42-SNAPSHOT.zip" etc...

and this version starts from the year 2016 with package name"cq-ui-5.0.00-SNAPSHOT.zip" .

 

The problem here is, all these packages are NOT under any group & these packages are not installed as a separate packages.  

When i select the latest package "cq-ui-5.1.45-SNAPSHOT.zip" and then click "Older Versions"(below screenshot refers old versions) and i could see all these older version packages are under the same package since 2016. Now the concern is, these packages are not installed separately and all the old version packages from 2016 are under one package. 

 

I have run the below command to uninstall one older version package alone and it shows uninstalled successfully. But when i check in package manager, i don't see any changes

curl -u admin:admin -F cmd=uninstall http://localhost:41001/crx/packmgr/service/.json/etc/packages/cq-ui-5.1.43-SNAPSHOT.zip
{"success":true,"msg":"Package uninstalled"}

 

After i executed uninstall command on "cq-ui-5.1.43-SNAPSHOT.zip", listed the package but it doesn't show as any modification made.

<package>
<group></group>
<name>cq-ui</name>
<version>5.1.43-SNAPSHOT</version>
<downloadName>cq-ui-5.1.43-SNAPSHOT.zip</downloadName>
<size>30834408</size>
<created>Thu, 26 Mar 2020 17:03:18 -0400</created>
<createdBy>admin</createdBy>
<lastModified>Thu, 5 Mar 2020 15:45:48 -0500</lastModified>
<lastModifiedBy>admin</lastModifiedBy>
<lastUnpacked></lastUnpacked>
<lastUnpackedBy>null</lastUnpackedBy>
</package>

 

Does it mean - this package is successfully uninstalled? If this is not right - How do i uninstall/delete these older version packages without restoring? Kindly assist.

 

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 Theo_Pendle

Hello,

I've actually written a script that does this, you can find it here: https://github.com/theopendle/aem-purge-packages

Packages are stored in the JCR like any other node. You can find them all under /etc/packages. For example, here are multiple versions of AEM Core Components on my instance:

 

For every package on your system, my script will keep only the most recent version and delete (no uninstall) all the others. 

If you run the script, it will first analyse your packages and tell you 

  • How many outdated packages are to be deleted
  • How much space it will save

You can then choose to continue or not:

$ python3 aem-purge-packages.py
Namespace(date=None, force=False, host=None, path=None, user=None, verbose=False)
Getting package list from AEM ...
Done
913 packages found
110 outdated packages found
Getting package list from AEM ...
Done
Purging outdated packages will remove 1.49 GB / 4.31 GB of package data
Do you wish to continue? (y/n):

 

In my case, I chose to continue, and you can see that it removed the older versions of each package:

Run the script with the -f flag to prevent it from asking for confirmation for every single deletion. Run it with the -h flag to see more options.

 

However please BEWARE!

  1. I recommend that you back up your system before making any kind of large automated purges as a general rule of thumb, including this script.
  2. There is a dependency system for packages. Future packages (including official Adobe ones) might have references to older packages that my script would purge (not the case on my instance, but if you have a old instance that was upgraded many times, it could happen). For example, here are the dependencies for the latest ACS Commons content package:
     
    If I delete a dependency, here is what happens:

    This is a sort of "false positive" because the dependency package is gone, but the content of the package had already been installed, so everything works fine. 

If you want to improve my script to exclude packages from the purge if they are dependencies of other packages, you are more than welcome!

2 replies

BrianKasingli
Community Advisor and Adobe Champion
Community Advisor and Adobe Champion
April 25, 2020

There's no need for a comprehensive approach when you can manage the removal of packages under http://localhost:4502/miscadmin#/etc/packages

Make sure you are logged in with the right privileges.

If you don't have any release notes bounded to versions of the Artifact-Zip AEM content packages, then it will be difficult to understand if you have any breaking changes. Typically an AEM project, the latest content package contains incremental deployments of the version before it. If so, It can be safe to remove the older packages manually.

A manual approach can be done in http://localhost:4502/miscadmin#/etc/packages for each instance. Simply right-click and delete the old packages. And you would not need to uninstall the packages, but to "DELETE" the packages.

However, if you wish to automate deleting packages using CURL commands, like you already started, click here to validate the command https://helpx.adobe.com/experience-manager/6-3/sites/administering/using/curl.html

Level 3
April 25, 2020

Hi Brian,

Thanks for the response. But the problem here is, i am unable to see the old packages as a separate package.

As mentioned earlier, all old packages are underneath the latest package and i don't see an uninstall option on the old package versions instead i see only "Restore" option.

Below is what i see on my end:

-> I select the latest package version.

-> Then right click and select "older versions"

-> All old version packages are listed inside the latest package version.

-> if i select the "old version packages" i see only "Restore" option.

Theo_Pendle
Theo_PendleAccepted solution
Level 8
April 25, 2020

Hello,

I've actually written a script that does this, you can find it here: https://github.com/theopendle/aem-purge-packages

Packages are stored in the JCR like any other node. You can find them all under /etc/packages. For example, here are multiple versions of AEM Core Components on my instance:

 

For every package on your system, my script will keep only the most recent version and delete (no uninstall) all the others. 

If you run the script, it will first analyse your packages and tell you 

  • How many outdated packages are to be deleted
  • How much space it will save

You can then choose to continue or not:

$ python3 aem-purge-packages.py
Namespace(date=None, force=False, host=None, path=None, user=None, verbose=False)
Getting package list from AEM ...
Done
913 packages found
110 outdated packages found
Getting package list from AEM ...
Done
Purging outdated packages will remove 1.49 GB / 4.31 GB of package data
Do you wish to continue? (y/n):

 

In my case, I chose to continue, and you can see that it removed the older versions of each package:

Run the script with the -f flag to prevent it from asking for confirmation for every single deletion. Run it with the -h flag to see more options.

 

However please BEWARE!

  1. I recommend that you back up your system before making any kind of large automated purges as a general rule of thumb, including this script.
  2. There is a dependency system for packages. Future packages (including official Adobe ones) might have references to older packages that my script would purge (not the case on my instance, but if you have a old instance that was upgraded many times, it could happen). For example, here are the dependencies for the latest ACS Commons content package:
     
    If I delete a dependency, here is what happens:

    This is a sort of "false positive" because the dependency package is gone, but the content of the package had already been installed, so everything works fine. 

If you want to improve my script to exclude packages from the purge if they are dependencies of other packages, you are more than welcome!

Level 3
April 26, 2020
Thanks for your detailed explanation. Will give it a try!