Difference between revisions of "WeeWX Weather Server"

From Da Nerd Mage Wiki
Jump to navigation Jump to search
(Created page with "WeeWX Weather Server")
 
Line 1: Line 1:
WeeWX Weather Server
This particular set of instructions is based on building an LXC under Proxmox to handle WeeWX.  On my network, I have an existing WebServer & an existing Automation Server.  The intent is to have the weather information served up as a web page (Default WeeWX thing...) by the WebServer and also be used by the Automation Server.
 
There is also a dedicated Database Server which we will be using. (can't possibly do things the easy way...)
 
(Based on: [https://www.weewx.com/docs/5.1/quickstarts/debian/ WeeWX: Installation on Debian-based systems])
 
Originally, the old version of this article was done with a much earlier version of WeeWX & our old Accurite weather station.  Things have seriously changed since those days...
 
== Configure '''apt''' ==
* <code>sudo apt install -y wget gnupg</code>
* <code>wget -qO - <nowiki>https://weewx.com/keys.html</nowiki> | sudo gpg --dearmor --output /etc/apt/trusted.gpg.d/weewx.gpg<c/ode>
* <code>echo "deb [arch=all] <nowiki>https://weewx.com/apt/python3</nowiki> buster main" | sudo tee /etc/apt/sources.list.d/weewx.list</code>
 
== Install WeeWX ==
 
* <code>sudo apt update</code>
* <code>sudo apt install weewx</code>
 
== Configure WeeWX ==
 
== Customize WeeWX ==
 
* <code></code>

Revision as of 16:10, 31 August 2025

This particular set of instructions is based on building an LXC under Proxmox to handle WeeWX. On my network, I have an existing WebServer & an existing Automation Server. The intent is to have the weather information served up as a web page (Default WeeWX thing...) by the WebServer and also be used by the Automation Server.

There is also a dedicated Database Server which we will be using. (can't possibly do things the easy way...)

(Based on: WeeWX: Installation on Debian-based systems)

Originally, the old version of this article was done with a much earlier version of WeeWX & our old Accurite weather station. Things have seriously changed since those days...

Configure apt

  • sudo apt install -y wget gnupg
  • wget -qO - https://weewx.com/keys.html | sudo gpg --dearmor --output /etc/apt/trusted.gpg.d/weewx.gpg<c/ode>
  • echo "deb [arch=all] https://weewx.com/apt/python3 buster main" | sudo tee /etc/apt/sources.list.d/weewx.list

Install WeeWX

  • sudo apt update
  • sudo apt install weewx

Configure WeeWX

Customize WeeWX