===== Icinga2 Kommunikations Schema ===== [[https://monitoring-portal.org/woltlab/index.php?thread/38330-zeichnung-kommunikation-schema-icinga2-icingaweb2-icingadirector-und-pnp4nagios/]] {{ :wiki:icinga2_kommunikations_schema_01.odg |}} {{ :wiki:icinga2_kommunikations_schema_01.pdf |}} ===== Graphite ===== [[http://emmanuel.iffly.free.fr/doku.php?id=linux:graphite_opensuse]] Mit pip3 Pakete suchen über einen Proxy sudo -s pip3 search gmp --proxy https://ronni:geheim@webproxy.example.de:8002 sudo -s pip3 search gmp --proxy https://ronni:geheim@webproxy.example.de:8000 Mit pip3 Pakete installieren über einen Proxy ✔ LOL sudo -s pip3 install python-gvm --upgrade --proxy https://ronni:geheim@webproxy.example.de:8000 ==== Python Pakete mit Pip nachinstallieren ==== Zunächst muss der Proxy für pip überwunden werden: FIXME With Ubuntu I could not get the proxy option to work as advertised – so following command did not work: sudo pip --proxy http://web-proxy.mydomain.com install somepackage But exporting the https_proxy environment variable (note its https_proxy not http_proxy) did the trick: export https_proxy=http://web-proxy.mydomain.com oder wenn ein spezieller Port verwendet wird: export https_proxy=http://webproxy.intra.rodgau.de:8080 weitere Möglichkeit mit Nutzer und Passwort: export https_proxy=http://download:geheim@webproxy.example.net:8080 export http_proxy=http://download:geheim@webproxy.example.net:8080 anschließend pip nutzen: ✔ läuft unter UBuntu LTS 20.04 sudo -E pip install somepackage oder falls eine Authentifizierung benötigt wird: pip --proxy user:geheim@webproxy.intra.rodgau.de:8080 search graphite-web same here, ''--proxy'' did not work, I had to specify BOTH ''http_proxy'' AND ''https_proxy'' (Debian behind a corp firewall) pip install carbon --proxy http://user:geheim@192.168.1.2:8080 === Update pip === -U, --upgrade Upgrade all packages to the newest available version. This process is recursive regardless of whether a dependency is already satisfied. pip --upgrade --proxy http://user:geheim@192.168.1.2:8080 === Package Check === check Verify installed packages have compatible dependencies.