You can install the Nuxeo Platform on Linux using the packages below:
- the ZIP archive
- the Virtual Machine image
- the Debian package
Checking Requirements
Check out the Installation for detailed steps to check your Java version and install it.
Installing the Nuxeo Platform from the ZIP Archive
Installing the Nuxeo Platform using the ZIP archive only installs the Nuxeo Platform. External dependencies must be installed separately.
To install the Nuxeo Platform ZIP archive: Unzip the .zip archive using your favorite tool.
What's next? Do you want to evaluate the platform? You can now start the server. You want to do a complete installation, that is compatible for a production environment? You should prepare your environment now.
Installing a Nuxeo Virtual Machine Image
The Nuxeo Platform is available as ready-to-use 64 bits virtual machine images from nuxeo.com. VM images are available for VMware and Virtual Box. They provide a full environment (OS, database…) and all required dependencies to make the Nuxeo Platform work.
To install the Nuxeo virtual machine image and start Nuxeo:
Unzip the downloaded package.
Do not use the Windows built-in ZIP functionality (aka "zipfldr.dll" or "Compressed Folders Module"), it reports incorrect uncompressed size. Recommended: 7-Zip.
You will see a folder with the required file for the virtual machine image to run.
If using VMware Player 14 on Windows, you might have to configure your VMware Player network settings for the image to have network connectivity.
Start the virtual machine image in your virtual machine application by double-clicking on it.
- For the VMware package, double-click on the file "nuxeo.vmx".
- For the OVF package: in VirtualBox, go to the File menu and choose Import Appliance. Then start the imported virtual machine.The VM image starts.
In your browser, type the indicated address. The startup wizard is displayed to help you configure your application.
Shell root accessThe password for the
root
andnuxeo
users are generated the first time you start the virtual machine and are displayed on the console.
Limitations:
- As a 64 bits virtual image, it cannot be installed on a 32 bit system.
- MP4 video conversion is not supported because of distribution rights limitations.
Installing the Nuxeo Platform from the APT Repository for Debian and Ubuntu
Installing the Nuxeo Platform using the APT sources for Debian and Ubuntu installs and configures the platform, but it also installs all required dependencies for optimal use of the platform.
On Debian 8 (jessie), the openjdk-8-jdk is not available in the default repositories. Before installing the Nuxeo package, you will need to:
- add the jessie-backports repository (
deb http://httpredir.debian.org/debian jessie-backports main
) to your/etc/apt/sources.list
- refresh your package list (
apt-get update
) - install the package (
apt-get install -t jessie-backports openjdk-8-jdk
)
You can either install the Nuxeo Platform using the OS graphical user interface or from the terminal.
You will need to know two things first:
- The codename of your distribution (eg xenial for Ubuntu 16.04 LTS)
- Which kind of Nuxeo release you want to install (Long Term Support, Fast Track or SNAPSHOT; see the page Nuxeo Release Cycle for more details).
For the examples below, let's say you are using Ubuntu 16.04 LTS ("xenial") and want to install the Nuxeo latest Fast Track release (from the "fasttracks" APT repository; for LTS you would replace "fasttracks" with "releases").
Using the Graphical User Interface
This requires X11.
- Edit the Software sources: using the Unity Dash, running
gksudo software-properties-gtk
, or browsing theSystem/Administration/Software Sources
Gnome 2 menu. - Download the Nuxeo key and import it in the Authentication tab.
- Add the Nuxeo APT repository: on the Other Software tab, add
deb http://apt.nuxeo.org/ xenial releases
anddeb http://apt.nuxeo.org/ xenial fasttracks
to the sources. (if you're using another version of Ubuntu, replace trusty by the adequate name, for instance zesty for Ubuntu 17.04) - Click on that link to install Nuxeo: apt://nuxeo.
- Follow the instructions displayed.
If it's your first install, you can configure:
- The bind address
- The port
- The database (a preconfigured PostgreSQL database is suggested by default). The platform is installed as a service. It is automatically started and set to automatically start at boot
- Open a browser and type the URL
http://NUXEO_SERVER/nuxeo/
. The startup wizard is displayed so you can setup your Nuxeo platform and select the module you want to install.
From the Terminal
sudo apt-get install gnupg
Import the Nuxeo key.
wget -q -O- http://apt.nuxeo.org/nuxeo.key | sudo apt-key add -
Add the Nuxeo APT repository.
sudo add-apt-repository "deb http://apt.nuxeo.org/ $(lsb_release -cs) releases" sudo add-apt-repository "deb http://apt.nuxeo.org/ $(lsb_release -cs) fasttracks"
If you don't have
add-apt-repository
, which is a non-standard command, issue the following commands:sudo echo "deb http://apt.nuxeo.org/ $(lsb_release -cs) releases" > /etc/apt/sources.list.d/nuxeo.list sudo echo "deb http://apt.nuxeo.org/ $(lsb_release -cs) fasttracks" >> /etc/apt/sources.list.d/nuxeo.list
Update your APT cache.
sudo apt-get update
Install the Nuxeo Platform.
sudo apt-get install nuxeo
Follow the instructions displayed. If it's your first install, you can configure:
- the bind address
- the port
- the database (a preconfigured PostgreSQL database is suggested by default).
The platform is installed as a service. It is automatically started and set to automatically start at boot.
Open a browser and type the URL
http://NUXEO_SERVER/nuxeo/
. The startup wizard is displayed so you can setup your Nuxeo platform and select the module you want to install.
Other Recommendations
Prevent Swapping
Like any Java application you should prevent the JVM Heap from being swapped to disk, which will crush server performance. You have two options here:
- Disable the swap with
sudo swapoff -a
you'll need to edit your/etc/fstab
to disable swap permanently. Note that before doing this you need to make sure that you have enough memory for all the processes that run on the server (Nuxeo JVM, converters, other custom process and the OS). - Limit the swapiness of the OS using
sysctl
to setvm.swappiness=1
.
Temporary Folder
While setting nuxeo.tmp.dir
property in nuxeo.conf, we recommend not to use the system temporary folder /tmp
because this one can be cleaned up by the operating system. This is the case on Red Hat Enterprise Linux in particular, where systemd-tmpfiles
service is deleting old files from /tmp
.