From 714370ef21ed70c59c73a361b917139295565909 Mon Sep 17 00:00:00 2001 From: TechnicJelle <22576047+TechnicJelle@users.noreply.github.com> Date: Sun, 17 Mar 2024 13:02:20 +0100 Subject: [PATCH 1/2] Mention deleting old map data in SQL guide --- wiki/getting-started/Installation.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/wiki/getting-started/Installation.md b/wiki/getting-started/Installation.md index 3f23708..aa57ab2 100644 --- a/wiki/getting-started/Installation.md +++ b/wiki/getting-started/Installation.md @@ -71,6 +71,10 @@ This setup extends the basic setup by using an SQL-Server to store your maps. for more info about this config-file)* - Now open each of your map-config-files and set `storage` to `"sql"`. - Reload BlueMap with `/bluemap reload`. +- Now that your maps are stored on your database, you should delete the old map data from your filesystem, to prevent it from interfering. + You can do this by running the command `/bluemap storages file delete ` for each of the maps you have just switched to SQL. +Instead of running that command, you can also this manually by deleting the old map folder on your filesystem, which usually is at `bluemap/web/maps/`. + If everything is set up correctly, BlueMap should start to render your maps and store them on the SQL-Server. Check the console/logs for any errors or warnings. From a93b0a63294bd9964a956ba27616916272d8d95c Mon Sep 17 00:00:00 2001 From: TechnicJelle <22576047+TechnicJelle@users.noreply.github.com> Date: Wed, 20 Mar 2024 00:43:28 +0100 Subject: [PATCH 2/2] Update wiki/getting-started/Installation.md Co-authored-by: Lukas Rieger --- wiki/getting-started/Installation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wiki/getting-started/Installation.md b/wiki/getting-started/Installation.md index aa57ab2..ebbe92e 100644 --- a/wiki/getting-started/Installation.md +++ b/wiki/getting-started/Installation.md @@ -73,7 +73,7 @@ This setup extends the basic setup by using an SQL-Server to store your maps. - Reload BlueMap with `/bluemap reload`. - Now that your maps are stored on your database, you should delete the old map data from your filesystem, to prevent it from interfering. You can do this by running the command `/bluemap storages file delete ` for each of the maps you have just switched to SQL. -Instead of running that command, you can also this manually by deleting the old map folder on your filesystem, which usually is at `bluemap/web/maps/`. + Or just manually delete the old map-data folder on your filesystem, which usually is at `./bluemap/web/maps`. If everything is set up correctly, BlueMap should start to render your maps and store them on the SQL-Server.