Some servers may run versions of MySQL that have different SSL requirements/settings, without SSL enabled, if you are running Spigot and get errors with a plugin that is using SSL similar to this:
WARN: Establishing SSL connection without server's identity verification is not recommended.
Then you will need to edit the plugins configuration file where your MySQL database details are entered, and type the following after the database name:
?useSSL=false
Therefore, if your plugin config has the following:
database: mc1234
Change it to:
database: mc1234?useSSL=false
Then restart your server
Most Popular Articles
"Failed to start Minecraft server" getLogger error
If you're getting errors when starting your Minecraft server, mainly KCauldron, and have the...
Minecraft "java.security.AccessControlException: access denied"
Some plugins (Such as ExecuteEverywhere) sometimes can require specific java security policies to...
Fix "c.s.w.b.WorldEditListener (PlayerInteractEvent)" Timings Lag
If you're running a Spigot server with WorldEdit, WorldGuard and GroupManager plugins together,...
Minecraft client connection delay / lag
Some people have issues with a three to six second connection delay in the vanilla Minecraft...
How do I make scheduled restarts?
Making scheduled restarts for Minecraft servers is highly recommended. It helps keep memory usage...