aem_install_package
Deploy Adobe Experience Manager (AEM) packages by specifying the package file path, host, port, and credentials. Supports optional forced installation for streamlined AEM management.
Instructions
Install a package in AEM
Input Schema
Name | Required | Description | Default |
---|---|---|---|
force | No | Force installation (default: false) | |
host | No | AEM host (default: localhost) | localhost |
packagePath | Yes | Path to the package file (.zip) | |
password | No | AEM password (default: admin) | admin |
port | No | AEM port (default: 4502) | |
username | No | AEM username (default: admin) | admin |
Input Schema (JSON Schema)
{
"properties": {
"force": {
"default": false,
"description": "Force installation (default: false)",
"type": "boolean"
},
"host": {
"default": "localhost",
"description": "AEM host (default: localhost)",
"type": "string"
},
"packagePath": {
"description": "Path to the package file (.zip)",
"type": "string"
},
"password": {
"default": "admin",
"description": "AEM password (default: admin)",
"type": "string"
},
"port": {
"default": 4502,
"description": "AEM port (default: 4502)",
"type": "number"
},
"username": {
"default": "admin",
"description": "AEM username (default: admin)",
"type": "string"
}
},
"required": [
"packagePath"
],
"type": "object"
}