ubuntu_18.04.rst 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. Server Setup (Ubuntu 18.04 LTS)
  2. ===============================
  3. The following instructions are for setup of Tripal on an Ubuntu version 18.04 LTS Desktop edition. Ubuntu v18.04 is a long-term support version of Ubuntu, meaning that Ubuntu guarantees patches and security fixes for up to five years. These instructions do not provide guidance for proper configuration settings for the server to handle load, nor for security settings. Consult the software documentation for proper load handling and security settings before your site is made public.
  4. Ubuntu Installation
  5. -------------------
  6. Please follow the online instructions for download and installation of Ubuntu 16.04 Desktop edition. Please be sure to install the 'Desktop' edition rather than the 'Server' edition. The tutorial below will provide the necessary steps to install the server components needed. If you are using this tutorial to test Tripal you can use a virtual machine such as the `Oracle VirtualBox <https://www.virtualbox.org/>`_ or `VMWare <http://www.vmware.com/>`_. The virtual machine allows you to install Ubuntu as a "guest" operating system within your existing "host" operating system (e.g. Windows).
  7. Apache Setup
  8. ------------
  9. Apache is the web server software. Ubuntu simplifies the installation of Apache using the 'apt-get' utility. To do so, simply issue the following command:
  10. .. code-block:: bash
  11. sudo apt-get install apache2
  12. Apache should now be installed. On the Ubuntu server, navigate to your new website using this address: http://localhost/. You should see the following page:
  13. .. image:: ubuntu_18.04.apache1.png
  14. Drupal works best with the Apache rewrite module enabled. Within the Ubuntu server, pluggable modules are available in the Apache configuration directory named /etc/apache2/mods-available. Only those modules that are also available in the /etc/apache2/mods-enabled directory will be loaded and used by Apache. Therefore, we want to create a symbolic link for the rewrite module that essentially adds it to the /etc/apache2/mods-enabled directory. To do this execute the following on the command-line:
  15. .. code-block:: bash
  16. cd /etc/apache2/mods-enabled
  17. sudo ln -s ../mods-available/rewrite.load
  18. Next we need to edit the web site configuration file. The configuration file specific for the default website is found here: /etc/apache2/sites-available/000-default.conf. Drupal needs permission to override some default restrictions set by the Apache web server, but it only needs to do so in the directory where it will be installed. By default in Ubuntu 16.04, the web document root is the /var/www/html directory. This is where all web files will be placed. Therefore, we need to adjust the default settings for that directory for Drupal. To do so, edit this file using the 'gedit' graphical text editor that comes with Ubuntu. Because this file is owned by the 'root' user, we must use the 'sudo' command to run 'gedit' with administrative privileges:
  19. .. code-block:: bash
  20. sudo gedit /etc/apache2/sites-available/000-default.conf
  21. Add the following Directory inside the VirtualHost stanza.
  22. .. code-block:: bash
  23. <Directory /var/www/html>
  24. Options Indexes FollowSymLinks MultiViews
  25. AllowOverride All
  26. Order allow,deny
  27. allow from all
  28. </Directory>
  29. Now restart your Apache again.
  30. .. code-block:: bash
  31. sudo service apache2 restart
  32. Setup PHP
  33. ---------
  34. Drupal uses PHP. In Ubuntu 16.04 there are two different instances of PHP that will be installed: a version for apache and another for use on the command-line. To install PHP we can use Ubuntu's apt-get utility.
  35. .. code-block:: bash
  36. sudo apt-get install php php-dev php-cli libapache2-mod-php
  37. You may notice that installing the libapach2-mod-php module will automatically restart the Apache web server which will allow it to parse PHP files. Next, we need a few additional extension modules for PHP that support connection to a PostgreSQL database server, JSON and the GD graphics library:
  38. .. code-block:: bash
  39. sudo apt-get install php-pgsql php-gd php-xml
  40. PHP is now installed both for Apache and for use on the command-line. Before continuing we must make a few changes to the PHP configuration files. PHP will limit the amount of memory that a script can consume. By default this limit is too low the Apache configuration of PHP. For Tripal we need that limit to be higher. To change it, edit the /etc/php5/apache2/php.ini configuration file:
  41. .. code-block:: bash
  42. sudo gedit /etc/php/7.2/apache2/php.ini
  43. Within that file, find the setting titled, memory_limit, and change it to something larger than 128M. For this tutorial we will set the limit to be 2048M, but be sure not to exceed physical memory of your machine:
  44. .. code-block:: php
  45. memory_limit = 2048M
  46. Now, restart the webserver so that it picks up the new changes to the PHP settings.
  47. .. code-block:: bash
  48. sudo service apache2 restart
  49. PostgreSQL Server
  50. -----------------
  51. PostgreSQL is the database software that will be used to house both the Drupal and Tripal databases. PostgreSQL can be installed on Ubuntu 16.04 simply by issuing the following command.
  52. .. code-block:: bash
  53. sudo apt-get install postgresql
  54. PostgreSQL database server is now installed and setup with default options.
  55. Install phpPgAdmin (Optional)
  56. -----------------------------
  57. phpPgAdmin is a web-based utility for easy administration of a PostgreSQL database. PhpPgAdmin is not required for successful operation of Tripal but is very useful. It can be easily installed with an 'apt-get' command:
  58. .. code-block:: bash
  59. sudo apt-get install phppgadmin
  60. Now navigate to the URL http://localhost/phppgadmin and you should see the following:
  61. .. image:: ubuntu_18.04.phppgadmin.png
  62. Now, phpPgAdmin is available for access only on the local installation of the machine. It will not be available via remote connections.