-
Notifications
You must be signed in to change notification settings - Fork 20
Setup CherryPy
hwassman edited this page Jul 15, 2023
·
3 revisions
The easiest way to install the CherryPy packages on your computer is using PIP (Python Package Manager)
# pip3 install cherrypy
If you are not allowed to install and use PIP on your machine, you can try to use the CherryPy package shipped with gpfs.rpms. Check on the pmcollector node, where you are going to install grafana-bridge, that the package "/usr/lpp/mmfs/lib/python_external_libs.zip" exists. Add the package location to the Python Path.
# export PYTHONPATH="${PYTHONPATH}:/usr/lpp/mmfs/lib/python_external_libs.zip"
# python3
Python 3.6.8 (default, Jan 14 2022, 11:04:20)
[GCC 8.5.0 20210514 (Red Hat 8.5.0-7)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import sys
>>> from pprint import pprint as p
>>> p(sys.path)
['',
'/usr/lpp/mmfs/lib',
'/usr/lpp/mmfs/lib/python_external_libs.zip', < is in Python Path
'/usr/lib64/python36.zip',
'/usr/lib64/python3.6',
'/usr/lib64/python3.6/lib-dynload',
'/usr/local/lib64/python3.6/site-packages',
'/usr/local/lib/python3.6/site-packages',
'/usr/lib64/python3.6/site-packages',
'/usr/lib/python3.6/site-packages']
>>>
Visit the IBM Storage Scale Knowledge Center for getting more info about the latest product updates
-
- Setup classic Grafana
- Make usage of Grafana Provisioning feature
-
- Installing RedHat community-powered Grafana operator from OperatorHub
- Creating Grafana instance using the RedHat community-powered Grafana-operator
- Creating Grafana Datasorce instance from Custom Resource managed by the RedHat community powered Grafana operator
- Importing the predefined dashboard from the example dashboards collection
- Exploring Grafana WEB interface for CNSA project in a k8s OCP environment
- How to setup Grafana instance to monitor multiple IBM Storage Scale clusters running in a cloud or mixed environment
- API key authentication
- Configurable bridge settings
- CherryPy builtin HTTP server settings
- How to setup HTTPS(SSL) connection
- Start and stop grafana-bridge with systemd