OMERO.server installation on Ubuntu 14.04 ========================================= This is an example walkthrough for installing OMERO on Ubuntu, using a dedicated system user, and should be read in conjunction with :doc:`install-web`. You can use this as a guide for setting up your own test server. For production use you should also read the pages listed under :ref:`index-optimizing-server`. Example shell scripts for installing OMERO on Ubuntu 14.04 are included in-line, and can be downloaded. These instructions assume your Linux distribution is configured with a UTF-8 locale (this is normally the default). For convenience in this walkthrough the main OMERO configuration options have been defined as environment variables. When following this walkthrough you can either use your own values, or alternatively source the following file: .. literalinclude:: walkthrough/settings.env :start-after: Substitute :download:`settings.env ` Prerequisites ------------- **The following steps are run as root.** Install Ice, Java, PostgreSQL: .. literalinclude:: walkthrough/step01_ubuntu1404_deps.sh | :download:`step01_ubuntu1404_deps.sh ` Create an omero system user, and a directory for the OMERO repository: .. literalinclude:: walkthrough/step02_all_setup.sh :download:`step02_all_setup.sh ` Create a database user and initialize a new database for OMERO: .. literalinclude:: walkthrough/step03_all_postgres.sh :download:`step03_all_postgres.sh ` Installing OMERO.server ----------------------- **The following steps are run as the omero system user.** Download, unzip and configure OMERO, and create a configuration file for Nginx. The rest of this walkthrough assumes the OMERO.server is installed into the home directory of the omero system user. Note that this script requires the same environment variables that were set earlier in `settings.env`, so you may need to copy and/or source this file as the omero user. .. literalinclude:: walkthrough/step04_all_omero.sh | :download:`step04_all_omero.sh ` Installing a web server ----------------------- To Deploy OMERO.web, you can use either Nginx or Apache. Follow the steps to install your chosen web server. Nginx ^^^^^ **The following steps are run as root.** Install Nginx, copy the Nginx OMERO configuration file into the Nginx configuration directory, and disable the default configuration: .. literalinclude:: walkthrough/step05_ubuntu1404_nginx.sh | :download:`step05_ubuntu1404_nginx.sh ` Apache ^^^^^^ As the **omero** system user, configure OMERO.web: .. literalinclude:: walkthrough/setup_omero_apache24.sh | :download:`setup_omero_apache24.sh ` **The following steps are run as root.** Install Apache 2.4:: apt-get -y install apache2 libapache2-mod-wsgi Copy the Apache OMERO configuration file into the Apache configuration directory, and disable the default configuration:: cp ~omero/OMERO.server/apache.conf.tmp /etc/apache2/sites-available/omero-web.conf a2dissite 000-default.conf a2ensite omero-web.conf service apache2 start .. note:: The default value set for the ``WSGISocketPrefix`` directive in ``apache.conf.tmp`` needs to be modified: :: #see https://code.google.com/p/modwsgi/wiki/ConfigurationIssues WSGISocketPrefix run/wsgi # Use this on Ubuntu/Debian systems: # WSGISocketPrefix /var/run/wsgi | :download:`step05_ubuntu1404_apache24.sh ` Running OMERO ------------- **The following steps are run as the omero system user.** OMERO should now be set up. To start the server run:: OMERO.server/bin/omero admin start To start the OMERO.web client run:: OMERO.server/bin/omero web start Nginx or Apache should already be running so you should be able to log in as the OMERO root user by going to http://localhost/ in your web browser. In addition some example `init.d` scripts are available should you wish to start OMERO and OMERO.web automatically: .. literalinclude:: walkthrough/step06_ubuntu1404_daemon.sh | :download:`step06_ubuntu1404_daemon.sh ` | :download:`omero-init.d ` | :download:`omero-web-init.d ` Securing OMERO -------------- **The following steps are run as root.** If multiple users have access to the machine running OMERO you should restrict access to OMERO.server's configuration and runtime directories, and optionally the OMERO data directory: .. literalinclude:: walkthrough/step07_all_perms.sh | :download:`step07_all_perms.sh ` .. _linux_walkthrough_regular_tasks: Regular tasks ------------- **The following steps are run as root.** The default OMERO.web session handler uses temporary files to store sessions which should be deleted at regular intervals, for instance by creating a cron job: .. literalinclude:: walkthrough/omero-web-cron Copy this script into the appropriate location: .. literalinclude:: walkthrough/step08_all_cron.sh | :download:`omero-web-cron ` | :download:`step08_all_cron.sh `