OpenStack Yoga : Configure Gnocchi2022/06/13 |
Install TDBaaS (Time Series Database as a Service), Gnocchi.
This example is based on the environment like follows.
------------+-----------------------------+-----------------------------+------------ | | | eth0|10.0.0.30 eth0|10.0.0.50 eth0|10.0.0.51 +-----------+-----------+ +-----------+-----------+ +-----------+-----------+ | [ dlp.srv.world ] | | [ network.srv.world ] | | [ node01.srv.world ] | | (Control Node) | | (Network Node) | | (Compute Node) | | | | | | | | MariaDB RabbitMQ | | Open vSwitch | | Libvirt | | Memcached httpd | | Neutron Server | | Nova Compute | | Keystone Glance | | OVN-Northd | | Open vSwitch | | Nova API Cinder API | | Cinder Volume | | OVN Metadata Agent | | | | Gnocchi httpd | | OVN-Controller | +-----------------------+ +-----------------------+ +-----------------------+ |
[1] | Add users and others for Gnocchi in Keystone. |
# create [gnocchi] user in [service] project [root@dlp ~(keystone)]# openstack user create --domain default --project service --password servicepassword gnocchi +---------------------+----------------------------------+ | Field | Value | +---------------------+----------------------------------+ | default_project_id | 0f2625947bf0433a9519ba8a29434bdf | | domain_id | default | | enabled | True | | id | fd661cc4e91243f0b05d132834fde42e | | name | gnocchi | | options | {} | | password_expires_at | None | +---------------------+----------------------------------+ # add [gnocchi] user in [admin] role [root@dlp ~(keystone)]# openstack role add --project service --user gnocchi admin
# create service entry for [gnocchi] [root@dlp ~(keystone)]# openstack service create --name gnocchi --description "Metric Service" metric +-------------+----------------------------------+ | Field | Value | +-------------+----------------------------------+ | description | Metric Service | | enabled | True | | id | 4ddd4e3baeee45bbbd88048bad094b9a | | name | gnocchi | | type | metric | +-------------+----------------------------------+ # define Gnocchi API Host [root@dlp ~(keystone)]# export controller=network.srv.world
# create endpoint for [gnocchi] (public) [root@dlp ~(keystone)]# openstack endpoint create --region RegionOne metric public https://$controller:8041 +--------------+----------------------------------+ | Field | Value | +--------------+----------------------------------+ | enabled | True | | id | 39c1e3f0cfd246e4858d2982ab63c2d6 | | interface | public | | region | RegionOne | | region_id | RegionOne | | service_id | 4ddd4e3baeee45bbbd88048bad094b9a | | service_name | gnocchi | | service_type | metric | | url | https://network.srv.world:8041 | +--------------+----------------------------------+ # create endpoint for [gnocchi] (internal) [root@dlp ~(keystone)]# openstack endpoint create --region RegionOne metric internal https://$controller:8041 +--------------+----------------------------------+ | Field | Value | +--------------+----------------------------------+ | enabled | True | | id | fc1c7a734f6c441397afedf631c3345a | | interface | internal | | region | RegionOne | | region_id | RegionOne | | service_id | 4ddd4e3baeee45bbbd88048bad094b9a | | service_name | gnocchi | | service_type | metric | | url | https://network.srv.world:8041 | +--------------+----------------------------------+ # create endpoint for [gnocchi] (admin) [root@dlp ~(keystone)]# openstack endpoint create --region RegionOne metric admin https://$controller:8041 +--------------+----------------------------------+ | Field | Value | +--------------+----------------------------------+ | enabled | True | | id | 92288df8f07145e98af59830fa5f4fcd | | interface | admin | | region | RegionOne | | region_id | RegionOne | | service_id | 4ddd4e3baeee45bbbd88048bad094b9a | | service_name | gnocchi | | service_type | metric | | url | https://network.srv.world:8041 | +--------------+----------------------------------+ |
[2] | Add a User and Database on MariaDB for Gnocchi. |
[root@dlp ~(keystone)]# mysql Welcome to the MariaDB monitor. Commands end with ; or \g. Your MariaDB connection id is 92 Server version: 10.5.13-MariaDB MariaDB Server Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. MariaDB [(none)]> create database gnocchi; Query OK, 1 row affected (0.00 sec) MariaDB [(none)]> grant all privileges on gnocchi.* to gnocchi@'localhost' identified by 'password'; Query OK, 0 rows affected (0.00 sec) MariaDB [(none)]> grant all privileges on gnocchi.* to gnocchi@'%' identified by 'password'; Query OK, 0 rows affected (0.00 sec) MariaDB [(none)]> flush privileges; Query OK, 0 rows affected (0.00 sec) MariaDB [(none)]> exit Bye |
[3] | Install Gnocchi services on Network Node. |
[root@network ~]# dnf --enablerepo=centos-openstack-yoga,epel,crb -y install openstack-gnocchi-api openstack-gnocchi-metricd python3-gnocchiclient httpd python3-mod_wsgi
|
[4] | Configure Gnocchi. |
[root@network ~]# mv /etc/gnocchi/gnocchi.conf /etc/gnocchi/gnocchi.conf.org
[root@network ~]#
vi /etc/gnocchi/gnocchi.conf # create new [DEFAULT] log_dir = /var/log/gnocchi [api] auth_mode = keystone [database] backend = sqlalchemy # MariaDB connection info [indexer] url = mysql+pymysql://gnocchi:password@dlp.srv.world/gnocchi [storage] driver = file file_basepath = /var/lib/gnocchi # Keystone auth info [keystone_authtoken] www_authenticate_uri = https://dlp.srv.world:5000 auth_url = https://dlp.srv.world:5000 memcached_servers = dlp.srv.world:11211 auth_type = password project_domain_name = default user_domain_name = default project_name = service username = gnocchi password = servicepassword service_token_roles_required = true # if using self-signed certs on httpd Keystone, turn to [true] insecure = false
[root@network ~]#
vi /etc/httpd/conf.d/10-gnocchi_wsgi.conf # create new Listen 127.0.0.1:8041 <VirtualHost *:8041> <Directory /usr/bin> AllowOverride None Require all granted </Directory> CustomLog /var/log/httpd/gnocchi_wsgi_access.log combined ErrorLog /var/log/httpd/gnocchi_wsgi_error.log SetEnvIf X-Forwarded-Proto https HTTPS=1 WSGIApplicationGroup %{GLOBAL} WSGIDaemonProcess gnocchi display-name=gnocchi_wsgi user=gnocchi group=gnocchi processes=6 threads=6 WSGIProcessGroup gnocchi WSGIScriptAlias / /usr/bin/gnocchi-api </VirtualHost>
[root@network ~]#
chmod 640 /etc/gnocchi/gnocchi.conf [root@network ~]# chgrp gnocchi /etc/gnocchi/gnocchi.conf
# if gnocchiclient is the version below, update it [root@network ~]# rpm -q python3-gnocchiclient python3-gnocchiclient-7.0.4-2.el9s.noarch [root@network ~]# pip3 install --upgrade gnocchiclient Requirement already satisfied: gnocchiclient in /usr/lib/python3.9/site-packages (7.0.4) Collecting gnocchiclient Downloading gnocchiclient-7.0.7-py2.py3-none-any.whl (66 kB) ..... ..... Installing collected packages: gnocchiclient Successfully installed gnocchiclient-7.0.7 |
[5] | Configure Nginx for proxy settings. |
[root@network ~]#
vi /etc/nginx/nginx.conf # add into the [stream] section
stream {
upstream neutron-api {
server 127.0.0.1:9696;
}
server {
listen 10.0.0.50:9696 ssl;
proxy_pass neutron-api;
}
upstream gnocchi-api {
server 127.0.0.1:8041;
}
server {
listen 10.0.0.50:8041 ssl;
proxy_pass gnocchi-api;
}
ssl_certificate "/etc/letsencrypt/live/network.srv.world/fullchain.pem";
ssl_certificate_key "/etc/letsencrypt/live/network.srv.world/privkey.pem";
}
|
[6] | If SELinux is enabled, change policy. |
[root@network ~]# setsebool -P httpd_can_network_connect on [root@network ~]# semanage port -a -t http_port_t -p tcp 8041 |
[7] | If Firewalld is running, allow service ports. |
[root@network ~]# firewall-cmd --add-port=8041/tcp success [root@network ~]# firewall-cmd --runtime-to-permanent success |
[8] | Add Data into Database and start Gnocchi services. |
[root@network ~]# su -s /bin/bash gnocchi -c "gnocchi-upgrade" [root@network ~]# systemctl enable --now openstack-gnocchi-metricd httpd [root@network ~]# systemctl restart nginx |
[9] | Verify state on Control Node. |
[root@dlp ~(keystone)]#
dnf --enablerepo=centos-openstack-yoga,epel,crb -y install python3-gnocchiclient
[root@dlp ~(keystone)]#
export OS_AUTH_TYPE=password [root@dlp ~(keystone)]# gnocchi resource list
# OK if no error is shown |
Sponsored Link |