Clarified storage types per #3085

FedUpWith-Tech 2021-12-30 11:25:36 -05:00
parent aca1ac8b48
commit e35ee9432b

@ -50,19 +50,17 @@ storage:
#prefix: ""
#flags: "?allowReconnect=true"
```
not all storage schemas are working out of the box. Only sqlite is supported out of the box
Only filetree is supported out of the box, depending on your server fork you may need to download a connector to allow you to use other storage types.
#### fabric / forge
The fabric dev created two mods that work on both fabric and Forge.
The @kosma created two mods that add the SQL connectors that work on both fabric and Forge.
+ The SQlite integration is handled by: [Kosmolot's SQlite mod](https://www.curseforge.com/minecraft/mc-mods/sqlite-jdbc)
+ The MySQL/MariaDB integration is handled by: [Kosmolot's MySQL mod](https://www.curseforge.com/minecraft/mc-mods/mysql-jdbc)
#### paper / spigot
Allowing for MySQL is a bit more tedious, because you need to backup the dynmap.jar, integrate the connector in the dynmap.jar by copying the connector's files over into the dynmap.jar file, and then copying over the meta.inf folder from the backed-up dynmap.jar into the new dynmap.jar. then set the configuration.txt to use MariaDB / MySQL as map store. if you run into any issues feel free to contact our team on the [discord](https://discord.gg/s3rd5qn) or open an issue tracker on this wiki.
+ [MySQL connector](https://dev.mysql.com/downloads/connector/j/) select platform independent.
+ [MariaDB connector](https://mariadb.com/downloads/connectors/connectors-data-access/java8-connector)
Paper and Spigot bundle the SQL driver in the server code so no addon is needed. Just set the type to mysql and enter credentials.
***
### Components