yuyu_web/docs/pre-installation.md
muhammadluthfias 44f621eda5 Add Web Docs
2023-02-14 01:12:40 +07:00

1.6 KiB

Pre-Installation

Virtualenv

Make sure you installed virtualenv before installing Yuyu

pip3 install virtualenv
apt install python3.8

Openstack Service Notification

You need to enable notification for this openstack service if ceilometer and gnochi service not activated:

  • Nova (nova.conf)
  • Cinder (cinder.conf)
  • Neutron (neutron.conf)
  • Keystone (keystone.conf)

1. Nova

Open nova.conf configuration on your controller environment

sudo nano nova.conf

Add configuration below oslo_messaging_notifications

driver = messagingv2 
topics = notifications

nova1

And add configuration below on notifications

notify_on_state_change = vm_and_task_state
notification_format = unversioned

nova2

2. Cinder

Open cinder.conf configuration on your controller environment

sudo nano cinder.conf

Add configuration below on oslo_messaging_notifications

driver = messagingv2 
topics = notifications

cinder1

3. Neutron

Open neutron.conf configuration on your controller environment

sudo nano neutron.conf

Add configuration below on oslo_messaging_notifications

driver = messagingv2 
topics = notifications

neutron1

4. Keystone

Open keystone.conf configuration on your controller environment

sudo nano keystone.conf

Add configuration below on oslo_messaging_notifications

driver = messagingv2 
topics = notifications

neutron1