Issue
- I want to download Liferay using the Linux command line rather than going through a web browser.
Environment
- Liferay DXP Quarterly Releases
Resolution
- Liferay offers a release directory that can be downloaded through the Linux command of choice.
- For example, Liferay DXP 2023.Q4.3 can be downloaded using the following
wget
command:
wget -r -np -nd -nH -A liferay-dxp-tomcat-2023.q4.3-*.tar.gz https://releases-cdn.liferay.com/dxp/2023.q4.3/
-
-
https://releases-cdn.liferay.com/dxp/2023.q4.3/
: This is the URL from wherewget
will download the files. It points to a specific directory on Liferay's CDN containing files related to Liferay DXP 2023.Q4.3.
-
- https://releases-cdn.liferay.com/dxp/: This URL is where released Liferay products can be downloaded.
- https://releases-cdn.liferay.com/releases.json: This file is available for checking Liferay product information.