Looks like I can just add another binding in [DataBingings], but in [StdArchive] I'm not sure I can have two archive processes run.
I think these sections are all fine.
[DataBindings]
[[wx_binding]]
database = archive_mysql
table_name = archive
manager = weewx.manager.DaySummaryManager
schema = schemas.wview_extended.schema
[[backup_binding]]
database = archive_backup
table_name = archive
manager = weewx.manager.DaySummaryManager
schema = schemas.wview_extended.schema
##############################################################################
[Databases]
[[archive_sqlite]]
database_name = weewx.sdb
database_type = SQLite
# MySQL
[[archive_mysql]]
database_name = weewx
database_type = MySQL
[[archive_backup]]
database_name = weewx
database_type = MySQL2
##############################################################################
# This section defines defaults for the different types of databases.
[DatabaseTypes]
[[SQLite]]
driver = weedb.sqlite
# Directory in which the database files are located
SQLITE_ROOT = /var/lib/weewx
# Defaults for MySQL databases
[[MySQL]]
driver = weedb.mysql
host = localhost
user = weewx
password = gt9drSvlB3ImZGS
[[MySQL2]]
driver = weedb.mysql
host = 192.168.30.110
user = weewx
password = test
But the [StdArchive] section only accepts one binding as far as I can tell:
[StdArchive]
archive_interval = 300
record_generation = software
loop_hilo = True
data_binding = wx_binding <-- This is where I think I would need to be able to list two bindings... right?
log_success = True
log_failure = True