Installation Instructions ========================= Supported Platforms ------------------- Pulp should work on any operating system that can provide a Python 3.6+ runtime environment and the supporting dependencies e.g. a database. Pulp has been demonstrated to work on Ubuntu, Debian, Fedora, CentOS, and Mac OSX. .. note:: Pulp 3 currently does not have an SELinux Policy or AppArmor Profile. Until then, any environment you run Pulp3 in needs have have SELinux or AppArmor either permissive or disabled. There are risks associated with this decision. See your distribution's docs for more details To help resolve this situation see these tickets to get involved: `Run Pulp3 with SELinux Enforcing `_. `Enabling SELinux in pulplift `_. Ansible Installation (Recommended) ---------------------------------- `Pulp 3 Ansible Installer `__ can be used to install plugins. For example if your host is in your Ansible inventory as ``myhost`` you can install onto it with: .. code-block:: bash ansible-galaxy install geerlingguy.postgresql ansible-galaxy collection install pulp.pulp_installer Create your pulp_install.yml playbook to use with the installer (Uncomment the desired plugins below): .. code-block:: yaml --- - hosts: all vars: pulp_settings: secret_key: << YOUR SECRET HERE >> content_origin: "http://{{ ansible_fqdn }}" pulp_default_admin_password: << YOUR SECRET HERE >> pulp_install_plugins: # galaxy-ng: {} # pulp-ansible: {} # pulp-certguard: {} # pulp-container: {} # pulp-cookbook: {} # pulp-deb: {} # pulp-file: {} # pulp-gem: {} # pulp-maven: {} # pulp-npm: {} # pulp-python: {} # pulp-rpm: {} roles: - pulp.pulp_installer.pulp_all_services environment: DJANGO_SETTINGS_MODULE: pulpcore.app.settings Then install it onto ``myhost`` with: .. code-block:: bash ansible-playbook pulp_install.yaml -l myhost For learning more about the ansible roles to install Pulp 3 please refer to `Pulp 3 Ansible Installer `__. PyPI Installation ----------------- 1. (Optional) Create a user account & group for Pulp 3 to run under, rather than using root. The following values are recommended: * name: pulp * shell: The path to the `nologin` executable * home: ``MEDIA_ROOT`` * system account: yes * create corresponding private group: yes 2. Install python3.6(+) and pip. 3. Create a pulp venv:: $ python3 -m venv pulpvenv $ source pulpvenv/bin/activate .. note:: On some operating systems you may need to install a package which provides the ``venv`` module. For example, on Ubuntu or Debian you need to run:: $ sudo apt-get install python3-venv 4. Install Pulp using pip:: $ pip install pulpcore .. note:: To install from source, clone git repositories and do a local, editable pip installation:: $ git clone https://github.com/pulp/pulpcore.git $ pip install -e ./pulpcore[postgres] 5. Configure Pulp by following the :ref:`configuration instructions `. 6. Set ``SECRET_KEY`` and ``CONTENT_ORIGIN`` according to the :ref:`settings `. 7. Create ``MEDIA_ROOT`` and ``WORKING_DIRECTORY`` with the prescribed permissions proposed in the :ref:`settings `. 8. Go through the :ref:`database-install`, :ref:`redis-install`, and :ref:`systemd-setup` sections. 9. Run Django Migrations:: $ pulpcore-manager migrate --noinput $ pulpcore-manager reset-admin-password --password << YOUR SECRET HERE >> .. note:: The ``pulpcore-manager`` command is ``manage.py`` configured with the ``DJANGO_SETTINGS_MODULE="pulpcore.app.settings"``. You can use it anywhere you would normally use ``manage.py``. .. note:: In place of using the systemd unit files provided in the `systemd-setup` section, you can run the commands yourself inside of a shell. This is fine for development but not recommended in production:: $ /path/to/python/bin/rq worker -n 'resource-manager' -w 'pulpcore.tasking.worker.PulpWorker' -c 'pulpcore.rqconfig' $ /path/to/python/bin/rq worker -w 'pulpcore.tasking.worker.PulpWorker' -c 'pulpcore.rqconfig' 10. Collect Static Media for live docs and browsable API:: $ pulpcore-manager collectstatic --noinput 11. Run Pulp:: $ pulp-content # The Pulp Content service (listening on port 24816) $ pulpcore-manager runserver 24817 # The Pulp API service .. _database-install: Database Setup -------------- You must provide a PostgreSQL database for Pulp to use. At this time, Pulp 3.0 will only work with PostgreSQL. PostgreSQL ^^^^^^^^^^ To install PostgreSQL, refer to the package manager or the `PostgreSQL install docs `_. Oftentimes you can also find better installation instructions for your particular operating system from third-parties such as Digital Ocean. On Ubuntu and Debian, the package to install is named ``postgresql``. On Fedora and CentOS, the package is named ``postgresql-server``. The default PostgreSQL user and database name in the provided server.yaml file is ``pulp``. Unless you plan to customize the configuration of your Pulp installation, you will need to create this user with the proper permissions and also create the ``pulp`` database owned by the ``pulp`` user. If you do choose to customize your installation, the database options can be configured in the `DATABASES` section of your server.yaml settings file. See the `Django database settings documentation `_ for more information on setting the `DATABASES` values in server.yaml. After installing and configuring PostgreSQL, you should configure it to start at boot, and then start it:: $ sudo systemctl enable postgresql $ sudo systemctl start postgresql .. _redis-install: Redis ----- The Pulp tasking system runs on top of Redis. This can be on a different host or the same host that Pulp is running on. To install Redis, refer to your package manager or the `Redis download docs `_. For Fedora, CentOS, Debian, and Ubuntu, the package to install is named ``redis``. After installing and configuring Redis, you should configure it to start at boot and start it:: $ sudo systemctl enable redis $ sudo systemctl start redis .. _systemd-setup: Systemd ------- To run the four Pulp services, systemd files needs to be created in /usr/lib/systemd/system/. The `Pulp 3 Ansible Installer `__ makes these for you, but you can also configure them by hand from the templates below. Custom configuration can be applied using the ``Environment`` option with various :ref:`Pulp settings `. 1. Make a ``pulpcore-content.service`` file for the pulpcore-content service which serves Pulp content to clients. We recommend starting with the `pulpcore-content template `_ and setting the variables according to the `pulpcore_content config variables documentation `_ 2. Make a ``pulpcore-api.service`` file for the pulpcore-api service which serves the Pulp REST API. We recommend starting with the `pulpcore-api template `_ and setting the variables according to the `pulpcore-api config variables documentation `_ 3. Make a ``pulpcore-worker@.service`` file for the pulpcore-worker processes which allows you to manage one or more workers. We recommend starting with the `pulpcore-worker template `_ and setting the variables according to the `pulp_workers config variables documentation `_ 4. Make a ``pulpcore-resource-manager.service`` file which can manage one pulpcore-resource-manager process. We recommend starting with the `pulpcore-resource-manager template `_ and setting the variables according to the `pulp_resource_manager config variables documentation `_ These services can then be started by running:: sudo systemctl start pulpcore-resource-manager sudo systemctl start pulpcore-content sudo systemctl start pulpcore-api sudo systemctl start pulpcore-worker@1 sudo systemctl start pulpcore-worker@2 .. _ssl-setup: SSL --- Users should configure HTTPS communication between clients and the reverse proxy that is in front of pulp services like pulpcore-api and pulpcore-content. The Pulp Installer provides three different options for configuring SSL certificates for nginx and httpd reverse proxies. 1. By default, the installer will generate a new Certificate Authority and use it to sign an SSL certificate. In this case, the Pulp administrator will need to distribute the Certificate Authority certificate or the SSL certificate to all clients that wish to communicate with Pulp. Clients will need to import one of these certificates to their system CA trust store. The default location for the CA certificate is ``/etc/pulp/certs/root.crt``. The default location for the SSL certificate is ``/etc/pulp/certs/pulp_webserver.crt``. 2. If you already have an SSL Cerificate that you want to be used by the reverse proxy to encrypt communication with clients, the Pulp Installer supports providing a path for ``pulp_webserver_tls_cert`` and ``pulp_webserver_tls_key``. The administrator is still responsible for making sure that clients trust the Certificate Authority that signed the SSL certificate. 3. The Pulp Installer also supports using services that use the ACME protocol, e.g. https://letsencrypt.org/, to generate trusted SSL certificates. See the Pulp Installer documentation for `instructions and an example playbook `_.