Skip to content

Instantly share code, notes, and snippets.

@rhuanbarreto
Last active January 5, 2018 14:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rhuanbarreto/bcc1654b6fce9999d1794bcbc54d4d7c to your computer and use it in GitHub Desktop.
Save rhuanbarreto/bcc1654b6fce9999d1794bcbc54d4d7c to your computer and use it in GitHub Desktop.
Install Alfresco Community on Ubuntu Server Command Line
sudo apt-get update
sudo apt-get install -y --no-install-recommends libice6 libsm6 libxt6 libxrender1 libfontconfig1 libcups2 libglu1-mesa libcairo2 libgl1-mesa-glx
cd /usr/lib/x86_64-linux-gnu
sudo ln -s mesa/libGL.so.1 ./libGL.so.1
cd ~
curl -O http://eu.dl.alfresco.com.s3.amazonaws.com/release/community/201707-build-00028/alfresco-community-installer-201707-linux-x64.bin
chmod +x alfresco-community-installer-201707-linux-x64.bin
./alfresco-community-installer-201707-linux-x64.bin --alfresco_admin_password <good admin password> --mode unattended --baseunixservice_install_as_service 1 --prefix /opt/alfresco
@rhuanbarreto
Copy link
Author

Reference for the Alfresco Unattended Mode parameters.

http://docs.alfresco.com/5.2/concepts/silent-alf-install.html

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment