问题描述
我需要在正在配置的新实例中安装大型软件包。我为此使用软件包管理器,但安装时间很长。
还有其他方法可以完成吗?
另外,如果我可以获取有关DAM软件包存储位置的信息,将很有帮助。 (示例:有什么方法可以在本地主机上找到DAM软件包的路径吗?)
I need to install large-sized packages in a new instance I am configuring. I am using package-manager for this but it is taking very long time for installation. Is there some other way this can be done?Additionally, it would be helpful if I can get information about physical location where DAM packages are stored. (Example: is there some way I can find path of DAM packages on my localhost?)
预先感谢!
推荐答案
要安装大型内容包,我们始终使用 curl
。到目前为止,我们安装的最大软件包约为15GB,但它也应与较大的软件包一起使用。
To install large content packages we always use curl
. The largest packages we installed so far were about 15GB but it should also work with larger packages.
curl
命令看起来像这样:
curl -u <user>:<password> \
-F file=@"name of zip file" \
-F name="name of package" \
-F force=true \
-F install=true \
http://localhost:4502/crx/packmgr/service.jsp
还有很多有用的 curl
命令。只需在Google上搜索 AEM curl命令,您就会发现很多如下的备忘单:
There are a lot more helpful curl
commands. Just google for "AEM curl commands" and you will find a lot of cheat sheets like the following:
这篇关于在aem中安装大型软件包的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!