Migrating to MySQL¶
This guide assumes you have already configured MySQL/MariaDB to work with ombi.
Migration procedure¶
This would be the procedure to migrate the Ombi databases from SQLite to a MySQL/MariaDB server. If there is an error you can contact in Discord or you can open an incident here.
1. Requirements¶
- Python3
- Ombi version 4.0.728 or higher
2. Download Script and install dependencies¶
-
Download the script.
Grab the migration scripts from here.
Click on theombi_sqlite2mysql.py
and copy the contents into a new Notepad++ (or VS Code) file. Save the file in your Ombi directory asombi_sqlite2mysql.py
.
Do the same forombi_sqlite2mysql_multi.py
(using the alternate name, of course). -
Install the dependencies according to the operating system we use.
apt-get install python3-packaging
WARNING: It is not recommended to use the python3-mysqldb package on Debian/Ubuntu systems as the version it installs fails with modern versions of MariaDB/MySQL.
Install Python, ensuring you also install
Pip
and select the option to add Python toPATH
.
Then, from a "CMD" window, run the same commands as you would for "Python Pip".emerge -va dev-python/mysqlclient
emerge -va dev-python/packaging
pip3 install mysqlclient
pip3 install packaging
If the above errors, trypython -m pip install mysqlclient
andpython -m pip install packaging
instead.
3. Create and prepare tables¶
- Update to the latest version of Ombi.
- Stop Ombi
-
Create or Modify database.json to use mysql.
(Substitute in whatever details match your MySQL instance, which you configured previously).python ombi_sqlite2mysql.py -c /etc/Ombi --only_db_json --host 192.168.1.100 --db Ombi --user ombi --passwd ombi
- In CMD,
cd
to your Ombi directory (we'll assumeC:\Ombi
for this).
If your Ombi is on a different drive, you'll need to switch to that drive letter first
(i.e. forE:\Ombi
, you'd runE:
followed bycd E:\Ombi
). python ombi_sqlite2mysql.py -c C:\Ombi --only_db_json --host 192.168.1.100 --db Ombi --user ombi --passwd ombi
- In CMD,
-
Only if we are going to use Multiple Databases or Multiple Servers.
To be able to use multiple servers or databases we will need to manually edit database.json.
The example below will export the "OmbiDatabase" and "SettingsDatabase" databases to the server at "192.168.1.100" (but to different databases on the same server), while the "ExternalDatabase" database will be sent to the server on "192.168.1.200".{ "OmbiDatabase": { "Type": "MySQL", "ConnectionString": "Server=192.168.1.100;Port=3306;Database=Ombi;User=ombi;Password=ombi" }, "SettingsDatabase": { "Type": "MySQL", "ConnectionString": "Server=192.168.1.100;Port=3306;Database=Ombi_Settings;User=ombi;Password=ombi" }, "ExternalDatabase": { "Type": "MySQL", "ConnectionString": "Server=192.168.1.200;Port=3306;Database=Ombi_External;User=ombi;Password=ombi" } }
-
Run the following command(s):
Note: If our sqlite database and json configuration files are stored in a different location than the one where we have Ombi installed, we will have to add the --storage argument.
Note: We assume that Ombi is installed in '/opt/ombi'. If it is not installed in that location use the corresponding path.
If you are using docker Ombi is installed in '/opt/ombi'
4. Data Migration¶
When it comes to migrating the data, we have several different ways of doing it. We can export everything to a single database (step 4.1), to different databases or to different MySQL servers (step 4.2).
4.1. Data Migration (Single Database)¶
For data migration we will need the file "migration.json" that contains the locations of the SQLite databases.
If this file does not exist, it will be created and will search the databases in the folder specified with the parameter "--config".
If we don't want to migrate all the data, we can generate the file "migration.json" with the parameter "--only_manager_json" and then edit it by deleting the databases we don't want to migrate.
4.1.1 Exclude OmbiExternal from export (optional)¶
$ python ombi_sqlite2mysql.py -c /etc/Ombi --only_manager_json Migration tool from SQLite to MySql/MariaDB for ombi (x.x.x) By VSC55 Generate file "migration.json": - Saving in (/etc/Ombi/migration.json)... [✓] $ nano /etc/Ombi/migration.json
Content "migration.json":
-
Start data migration.
The script will empty the tables from the MySQL/MariaDB database and automatically migrate the data from SQLite to MySQL/MariaDB.
$ python ombi_sqlite2mysql.py -c /etc/Ombi --host 192.168.1.100 --db Ombi --user ombi --passwd ombi Migration tool from SQLite to MySql/MariaDB for ombi (3.0.4) By VSC55 Generate file "migration.json": - Saving in (/etc/Ombi/migration.json)... [✓] Generate file "database.json": - Saving in (/etc/Ombi/database.json)... [✓] MySQL > Connecting... [✓] Check migration.json: - SettingsDatabase [SQLite >> Migrate] - OmbiDatabase [SQLite >> Migrate] - ExternalDatabase [SQLite >> Migrate] Dump SQLite: - SettingsDatabase [############################################################] 27/27 - OmbiDatabase [############################################################] 117106/117106 - ExternalDatabase [############################################################] 574/574 Start clean tables: - [CLEAN ] -> ApplicationConfiguration -> rows: 3 - [CLEAN ] -> AspNetRoles -> rows: 12 - [CLEAN ] -> AspNetUserRoles -> rows: 18 - [CLEAN ] -> AspNetUsers -> rows: 6 - [CLEAN ] -> GlobalSettings -> rows: 12 - [CLEAN ] -> NotificationTemplates -> rows: 90 - [BACKUP] -> __EFMigrationsHistory - [SKIP ] -> __EFMigrationsHistory -> rows: 3 - Running [############################################################] 8/8 Clean tables [✓] Start Migration: - Preparing [############################################################] 117716/117716 - Running [############################################################] 117641/117641 - Checking [############################################################] 43/43 MySQL > Disconnecting... [✓]
-
Start ombi and test if everything works fine.
4.2. Data Migration (Multiple DataBases or Servers MySql/MariaDB)¶
For data migration to multiple databases or servers we will need the file "database_multi.json" that contains the locations of the servers where we are going to export the data.
-
To create the file "database_multi.json" we will use the file "database.json" so we will only have to rename it.
$ nano database_multi.json { "OmbiDatabase": { "Type": "MySQL", "ConnectionString": "Server=192.168.1.100;Port=3306;Database=Ombi;User=ombi;Password=ombi" }, "SettingsDatabase": { "Type": "MySQL", "ConnectionString": "Server=192.168.1.100;Port=3306;Database=Ombi_Settings;User=ombi;Password=ombi" }, "ExternalDatabase": { "Type": "MySQL", "ConnectionString": "Server=192.168.1.200;Port=3306;Database=Ombi_External;User=ombi;Password=ombi" } }
We can omit the export of a database by removing it from "database_multi.json" or adding the property "Skip". The example next will export the databases "OmbiDatabase" and "SettingsDatabase" but omit "ExternalDatabase".
$ nano database_multi.json { "OmbiDatabase": { "Type": "MySQL", "ConnectionString": "Server=192.168.1.100;Port=3306;Database=Ombi;User=ombi;Password=ombi" }, "SettingsDatabase": { "Type": "MySQL", "ConnectionString": "Server=192.168.1.100;Port=3306;Database=Ombi_Settings;User=ombi;Password=ombi" }, "ExternalDatabase": { "Type": "MySQL", "ConnectionString": "Server=192.168.1.200;Port=3306;Database=Ombi_External;User=ombi;Password=ombi", "Skip": true } }
We can also send the same database to different servers with the following configuration. The next example sends databases "OmbiDatabase", "SettingsDatabase" and "ExternalDatabase" to servers 192.168.1.100 and 192.168.1.200.
$ nano database_multi.json { "OmbiDatabase": { "Type": "MySQL", "ConnectionString": "Server=192.168.1.100;Port=3306;Database=Ombi;User=ombi;Password=ombi" }, "SettingsDatabase": { "Type": "MySQL", "ConnectionString": "Server=192.168.1.100;Port=3306;Database=Ombi_Settings;User=ombi;Password=ombi" }, "ExternalDatabase": { "Type": "MySQL", "ConnectionString": "Server=192.168.1.100;Port=3306;Database=Ombi_External;User=ombi;Password=ombi" }, "OmbiDatabase": { "Type": "MySQL", "ConnectionString": "Server=192.168.1.200;Port=3306;Database=Ombi;User=ombi;Password=ombi" }, "SettingsDatabase": { "Type": "MySQL", "ConnectionString": "Server=192.168.1.200;Port=3306;Database=Ombi_Settings;User=ombi;Password=ombi" }, "ExternalDatabase": { "Type": "MySQL", "ConnectionString": "Server=192.168.1.200;Port=3306;Database=Ombi_External;User=ombi;Password=ombi" } }
NOTE: If you want to export all the content to several servers we will have to repeat the point "Create and prepare tables" with the different servers so that all the tables are created. You will also have to modify the file database.json at the end of the export process before running ombi to leave a single server for each database.
-
Start data migration.
> The script will empty the tables from the MySQL/MariaDB database and automatically migrate the data from SQLite to MySQL/MariaDB.$ python ombi_sqlite2mysql_multi.py -c /etc/Ombi Migration tool from SQLite to Multi MySql/MariaDB for ombi (1.0.0) By VSC55 - Processing DataBase (OmbiDatabase)... ------------------- - Saving in (/etc/Ombi/migration.json)... [✓] Generate file "database.json": - Saving in (/etc/Ombi/database.json)... [✓] MySQL > Connecting... [✓] - Reading [############################################################] 1/1 Read tables [✓] Check migration.json: - OmbiDatabase [SQLite >> Migrate] - SettingsDatabase [No Config >> Skip] - ExternalDatabase [No Config >> Skip] Dump SQLite: - OmbiDatabase [############################################################] 4068/4068 Start clean tables: - [CLEAN ] -> AspNetRoles -> rows: 12 - [CLEAN ] -> AspNetUserRoles -> rows: 190 - [CLEAN ] -> AspNetUsers -> rows: 41 - [CLEAN ] -> Audit -> rows: 15 - [CLEAN ] -> ChildRequests -> rows: 11 - [CLEAN ] -> EpisodeRequests -> rows: 407 - [CLEAN ] -> IssueCategory -> rows: 4 - [CLEAN ] -> IssueComments -> rows: 1 - [CLEAN ] -> Issues -> rows: 3 - [CLEAN ] -> MovieRequests -> rows: 198 - [CLEAN ] -> NotificationTemplates -> rows: 100 - [CLEAN ] -> NotificationUserId -> rows: 2 - [CLEAN ] -> RecentlyAddedLog -> rows: 2566 - [CLEAN ] -> RequestLog -> rows: 247 - [CLEAN ] -> RequestQueue -> rows: 6 - [CLEAN ] -> RequestSubscription -> rows: 18 - [CLEAN ] -> SeasonRequests -> rows: 28 - [CLEAN ] -> TvRequests -> rows: 11 - [CLEAN ] -> UserNotificationPreferences -> rows: 125 - [CLEAN ] -> UserQualityProfiles -> rows: 20 - [BACKUP] -> __EFMigrationsHistory - [SKIP ] -> __EFMigrationsHistory -> rows: 36 - Running [############################################################] 22/22 Clean tables [✓] Start Migration: - Preparing [############################################################] 4074/4074 - Running [############################################################] 4005/4005 - Checking [############################################################] 28/28 Migration [✓] MySQL > Disconnecting... [✓] ---------------------------------------------------------------- ---------------------------------------------------------------- - Processing DataBase (SettingsDatabase)... ------------------- - Saving in (/etc/Ombi/migration.json)... [✓] Generate file "database.json": - Saving in (/etc/Ombi/database.json)... [✓] MySQL > Connecting... [✓] - Reading [############################################################] 1/1 Read tables [✓] Check migration.json: - OmbiDatabase [No Config >> Skip] - SettingsDatabase [SQLite >> Migrate] - ExternalDatabase [No Config >> Skip] Dump SQLite: - SettingsDatabase [############################################################] 25/25 Start clean tables: - [CLEAN ] -> ApplicationConfiguration -> rows: 3 - [CLEAN ] -> GlobalSettings -> rows: 13 - [BACKUP] -> __EFMigrationsHistory - [SKIP ] -> __EFMigrationsHistory -> rows: 4 - Running [############################################################] 4/4 Clean tables [✓] Start Migration: - Preparing [############################################################] 31/31 - Running [############################################################] 16/16 - Checking [############################################################] 3/3 Migration [✓] MySQL > Disconnecting... [✓] ---------------------------------------------------------------- ---------------------------------------------------------------- - Processing DataBase (ExternalDatabase)... ------------------- - Saving in (/etc/Ombi/migration.json)... [✓] Generate file "database.json": - Saving in (/etc/Ombi/database.json)... [✓] MySQL > Connecting... [✓] - Reading [############################################################] 1/1 Read tables [✓] Check migration.json: - OmbiDatabase [No Config >> Skip] - SettingsDatabase [No Config >> Skip] - ExternalDatabase [SQLite >> Migrate] Dump SQLite: - ExternalDatabase [############################################################] 5201/5201 Start clean tables: - [CLEAN ] -> PlexEpisode -> rows: 2174 - [CLEAN ] -> PlexSeasonsContent -> rows: 150 - [CLEAN ] -> PlexServerContent -> rows: 349 - [CLEAN ] -> RadarrCache -> rows: 270 - [CLEAN ] -> SonarrCache -> rows: 43 - [CLEAN ] -> SonarrEpisodeCache -> rows: 2194 - [BACKUP] -> __EFMigrationsHistory - [SKIP ] -> __EFMigrationsHistory -> rows: 4 - Running [############################################################] 8/8 Clean tables [✓] Start Migration: - Preparing [############################################################] 5207/5207 - Running [############################################################] 5180/5180 - Checking [############################################################] 14/14 Migration [✓] MySQL > Disconnecting... [✓] ---------------------------------------------------------------- ---------------------------------------------------------------- > Updating database.json... - Saving in (/etc/Ombi/database.json)... [✓]
-
Start Ombi and test if everything works fine.
5. Help¶
$ python ombi_sqlite2mysql.py -h
Migration tool from SQLite to MySql/MariaDB for ombi (3.0.4) By VSC55
Usage: ombi_sqlite2mysql.py [options]
Options:
-h, --help show this help message and exit
-c CONFIG, --config=CONFIG
Path folder config ombi, default /etc/Ombi.
--host=HOST Host server MySQL/MariaDB. If not defined, a file is
generated with INSERT queries.
--port=PORT Port server MySQL/MariaDB, default 3306.
--db=DB Name database, default Ombi.
--user=USER User with access to MySQL/MariaDB, default ombi.
--passwd=PASSWD User password for MySQL/MariaDB, default empty.
--no_backup Disable the backup of the "__EFMigrationsHistory"
table.
--save_dump Save all query insert in the file "data_ombi.mysql".
--force Force clear all tables.
--only_db_json Only create or modify the file "database.json" with
the parameters that we specify.
--only_manager_json Only create or modify the file "migration.json" with
the parameters that we specify.
$ python ombi_sqlite2mysql_multi.py --help
Migration tool from SQLite to Multi MySql/MariaDB for ombi (1.0.0) By VSC55
Usage: ombi_sqlite2mysql_multi.py [options]
Options:
-h, --help show this help message and exit
-c CONFIG, --config=CONFIG
Path folder config ombi, default /etc/Ombi.
--no_backup Disable the backup of the "__EFMigrationsHistory"
table.
--force Force clear all tables.
--save_dump Save all query insert in the file.
6. FAQ¶
P: Migrated data verification says there is more data in SQLite than in MySQL or vice versa.
- Running [############################################################] 9242/9242
- [!!] -> __efmigrationshistory -> [SQLite (0) / MySQL (41)] = -41
- [!!] -> applicationconfiguration -> [SQLite (0) / MySQL (3)] = -3
- [!!] -> aspnetroles -> [SQLite (0) / MySQL (12)] = -12
- [!!] -> aspnetuserroles -> [SQLite (0) / MySQL (190)] = -190
- [!!] -> aspnetusers -> [SQLite (0) / MySQL (41)] = -41
- [!!] -> audit -> [SQLite (0) / MySQL (15)] = -15
- [!!] -> childrequests -> [SQLite (0) / MySQL (11)] = -11
- [!!] -> episoderequests -> [SQLite (0) / MySQL (407)] = -407
- [!!] -> globalsettings -> [SQLite (0) / MySQL (13)] = -13
- [!!] -> issuecategory -> [SQLite (0) / MySQL (4)] = -4
- [!!] -> issuecomments -> [SQLite (0) / MySQL (1)] = -1
- [!!] -> issues -> [SQLite (0) / MySQL (3)] = -3
- [!!] -> movierequests -> [SQLite (0) / MySQL (198)] = -198
- [!!] -> notificationtemplates -> [SQLite (0) / MySQL (100)] = -100
- [!!] -> notificationuserid -> [SQLite (0) / MySQL (2)] = -2
- [!!] -> plexepisode -> [SQLite (0) / MySQL (2174)] = -2174
- [!!] -> plexseasonscontent -> [SQLite (0) / MySQL (150)] = -150
- [!!] -> plexservercontent -> [SQLite (0) / MySQL (349)] = -349
- [!!] -> radarrcache -> [SQLite (0) / MySQL (270)] = -270
- [!!] -> recentlyaddedlog -> [SQLite (0) / MySQL (2566)] = -2566
- [!!] -> requestlog -> [SQLite (0) / MySQL (247)] = -247
- [!!] -> requestqueue -> [SQLite (0) / MySQL (6)] = -6
- [!!] -> requestsubscription -> [SQLite (0) / MySQL (18)] = -18
- [!!] -> seasonrequests -> [SQLite (0) / MySQL (28)] = -28
- [!!] -> sonarrcache -> [SQLite (0) / MySQL (43)] = -43
- [!!] -> sonarrepisodecache -> [SQLite (0) / MySQL (2194)] = -2194
- [!!] -> tvrequests -> [SQLite (0) / MySQL (11)] = -11
- [!!] -> usernotificationpreferences -> [SQLite (0) / MySQL (125)] = -125
- [!!] -> userqualityprofiles -> [SQLite (0) / MySQL (20)] = -20
- Checking [############################################################] 43/43
S: We will have to force the elimination of the data in all the tables with the parameter --force
as follows.
# Single Database:
$ python ombi_sqlite2mysql.py -c /etc/Ombi --force --host 192.168.1.100 --db Ombi --user ombi --passwd ombi
# Multiple DataBases or Servers MySql/MariaDB:
$ python ombi_sqlite2mysql_multi.py -c /etc/Ombi --force
P: How do I migrate if I'm using docker?
S: Configure database_multi.json
as needed and place it into the /config
folder.
In the docker storage config, mount the ombi_sqlite_mysql
folder to the container (we recommend mounting it as /migrate
).
Run docker exec ombi bash
and install the appropriate python3 tools (apt update; apt install python3 python3-mysqldb -y;
).
Run your appropriate command for python like python3 /migrate/ombi_sqlite2mysql_multi.py -c /config
and your migration will take place.
P: Table "XXX" requiered is not exist in the server MySQL
$ python3 ombi_sqlite2mysql.py -c /etc/Ombi --host 127.0.0.1 --db Ombi --user ombi --passwd ombi
Migration tool from SQLite to MySql/MariaDB for ombi (3.0.8) By VSC55
Generate file "database.json":
- Saving in (/etc/Ombi/database.json)... [✓]
MySQL > Connecting... [✓]
- Reading [............................................................] 0/1
- Error: Table "__EFMigrationsHistory" requiered is not exist in the server MySQL!!!
Read tables [!!]
MySQL > Disconnecting... [✓]
In the following example, both the database.json file and the databases are stored in /etc/Ombi: