Last active
October 23, 2024 13:02
-
-
Save seidler2547/93012edf3c7a2414ec1d9a8ebbc9c1a6 to your computer and use it in GitHub Desktop.
One-liner to convert an existing Home-Assistant SQLite database to MySQL
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# prerequisites: | |
## install software | |
apt install mariadb-server libmariadbclient-dev sqlite3 | |
## install mysqlclient in virtualenv | |
su -c 'homeassistant/bin/pip3 install mysqlclient --upgrade' -l homeassistant | |
## create database | |
mysql -e 'CREATE SCHEMA IF NOT EXISTS `hass_db` DEFAULT CHARACTER SET utf8' | |
## create user (use a safe password please) | |
mysql -e "CREATE USER 'hass_user'@'localhost' IDENTIFIED BY 'hass_pw'" | |
mysql -e "GRANT ALL PRIVILEGES ON hass_db.* TO 'hass_user'@'localhost'" | |
mysql -e "GRANT usage ON *.* TO 'hass_user'@'localhost'" | |
# stop HA now | |
systemctl stop home-assistant # or whatever it is for you | |
# now edit the configuration to point hass to mysql | |
nano .... | |
# now start HA once and stop it right away, we only want it to create the tables: | |
systemctl start home-assistant # or whatever it is for you | |
sleep 20 | |
systemctl stop home-assistant # or whatever it is for you | |
# now empty the tables | |
mysql hass_db -e 'delete from events;delete from recorder_runs; delete from schema_changes; delete from states;' | |
# this is the actual conversion: | |
sqlite3 home-assistant_v2.db .dump \ | |
| sed -re 's/^PRAGMA .+OFF/SET FOREIGN_KEY_CHECKS=0;SET UNIQUE_CHECKS=0/' \ | |
-e 's/^CREATE INDEX .+//' \ | |
-e 's/^BEGIN TRANSACTION;$/SET autocommit=0;BEGIN;/' \ | |
-e '/^CREATE TABLE .+ \($/,/^\);/ d' \ | |
-e 's/^INSERT INTO "([^"]+)"/INSERT INTO \1/' \ | |
-e 's/\\n/\n/g' \ | |
| perl -pe 'binmode STDOUT, ":utf8";s/\\u([0-9A-Fa-f]{4})/pack"U*",hex($1)/ge' \ | |
| mysql hass_db --default-character-set=utf8 -u hass_user -p |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is exactly what i need, work without any problem (debian 11) (HA 2024.10.3)
sqlite3mysql version 2.3.1
sqlite3mysql --sqlite-file home-assistant_v2.db --mysql-user user --mysql-password pass --mysql-database dbname
ha config:
recorder:
db_url: mysql://user:pass@ip/dbname?charset=utf8mb4
auto_purge: false
Thanks!