This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
prometheus [2021/10/15 03:08] – [The order of things] vissie | prometheus [2021/10/18 03:47] (current) – vissie | ||
---|---|---|---|
Line 1: | Line 1: | ||
=====The order of things===== | =====The order of things===== | ||
* https:// | * https:// | ||
+ | * https:// | ||
* https:// | * https:// | ||
- | - Install Prometheus | + | - Install/ |
- | - Configure | + | - Install/Configure |
- | - Install | + | - Install/Configure Nginx Reverse Proxy |
- | - Configure | + | - Install/Configure |
- | - Nginx Reverse Proxy | + | - Install/ |
Line 84: | Line 85: | ||
| | ||
Open a new terminal, create a index.html: | Open a new terminal, create a index.html: | ||
+ | sudo pip3 install simple_http_server | ||
echo " | echo " | ||
- | python -m SimpleHTTPServer 8080 | + | python -m SimpleHTTPServer 8080 or |
+ | python3 -m http.server 8080 | ||
| | ||
Head back to the previous terminal session and restart prometheus: | Head back to the previous terminal session and restart prometheus: | ||
Line 147: | Line 151: | ||
sudo pip3 install -r ./ | sudo pip3 install -r ./ | ||
sudo pip3 install python-dateutil | sudo pip3 install python-dateutil | ||
+ | |||
+ | |||
+ | =====Issues===== | ||
+ | ====ICMP==== | ||
+ | To get ping [icmp] to work, I had to do the following: | ||
+ | sudo setcap cap_net_raw+ep / | ||
+ | |||