2. Copy the configuration files to ``/etc/freezer/``: .. code-block:: bash sudo cp etc/freezer/freezer-api.conf.sample /etc/freezer/freezer-api.conf sudo cp etc/freezer/freezer-paste.ini /etc/freezer/freezer-paste.ini 3. Edit the ``/etc/freezer/freezer-api.conf`` file and complete the following actions: * In the ``[storage]`` section, configure database access: .. code-block:: ini [storage] ... backend = elasticv2 driver = freezer_api.storage.elasticv2.ElasticSearchEngineV2 * In the ``[elasticv2]`` section, configure elasticsearch access: You might need to create the elasticv2 section first. .. code-block:: ini [elasticv2] ... hosts=http://localhost:9200 index=freezer use_ssl=False ca_certs='' use_ssl=False timeout=60 retries=20 number_of_replicas = 1 Start elasticsearch ------------------- The currently supported db is Elasticsearch. In case you are using a dedicated instance of the server, you'll need to start it. Depending on the OS flavor it might be a: .. code-block:: bash service elasticsearch start or, on systemd .. code-block:: bash systemctl start elasticsearch Using freezer-manage -------------------- Elasticsearch needs to know what type of data each document's field contains. This information is contained in the `mapping`, or schema definition. Elasticsearch will use dynamic mapping to try to guess the field type from the basic datatypes available in JSON, but some field's properties have to be explicitly declared to tune the indexing engine. To do that, use the freezer-manage command: :: freezer-manage db sync You should have updated your configuration files before doing this step. freezer-manage has the following options: * To create the db mappings use the following command .. code-block:: bash freezer-manage db sync * To update the db mappings using the following command. Update means that you might have some mappings and you want to update it with a more recent ones .. code-block:: bash freezer-manage db update * To remove the db mappings using the following command .. code-block:: bash freezer-manage db remove * To print the db mappings using the following command .. code-block:: bash freezer-manage db show * To update your settings (number of replicas) all what you need to do is to change its value in the configuration file and then run the following command .. code-block:: bash freezer-manage db update-settings If you provided an invalid number of replicas that will cause problems later on, so it's highly recommended to make sure that you are using the correct number of replicas. For more info click here `Elasticsearch_Replicas_instructions `_ * To get information about optional additional parameters .. code-block:: bash freezer-manage -h * If you want to add any additional parameter like --yes or --erase, they should be before the db option. Check the following examples Wrong Example .. code-block:: bash freezer-manage db sync -y -e Correct Example .. code-block:: bash freezer-manage -y -e db sync create the mappings ------------------- .. code-block:: bash freezer-manage -y -e db sync run simple instance ------------------- .. code-block:: console $ freezer-api --config-file /etc/freezer/freezer-api.conf examples running using uwsgi ---------------------------- .. code-block:: console $ uwsgi --http :9090 --need-app --master --module freezer_api.cmd.wsgi:application $ uwsgi --https :9090,foobar.crt,foobar.key --need-app --master --module freezer_api.cmd.wsgi:application example running freezer-api with apache2 ---------------------------------------- .. code-block:: none sudo vi /etc/apache2/sites-enabled/freezer-api.conf WSGIDaemonProcess freezer-api processes=2 threads=2 user=freezer display-name=%{GROUP} WSGIProcessGroup freezer-api WSGIApplicationGroup freezer-api WSGIScriptAlias / /opt/stack/freezer_api/cmd/wsgi.py = 2.4> ErrorLogFormat "%M" ErrorLog /var/log/%APACHE_NAME%/freezer-api.log LogLevel warn CustomLog /var/log/freezer-api/freezer-api_access.log combined Options Indexes FollowSymLinks MultiViews Require all granted AllowOverride None Order allow,deny allow from all LimitRequestBody 102400 Install and configure freezer-scheduler/agent --------------------------------------------- .. include:: install_agent.rst