Skip to content
Wolf2323 edited this page Oct 20, 2017 · 10 revisions

Check first

  • are you on the latest version of Gringotts?

General

Gringotts is laggy

If accessing balance makes the server slow, or you are getting org.gestern.gringotts.GringottsException java.util.concurrent.TimeoutException on your console, check these points:

  • Are you using an external database? Gringotts accesses its DB on every balance check.
  • Are you using a plugin that does a lot of accesses to player accounts? Gringotts isn't meant for this kind of use case, because it will check player inventory and chests every time.

Towny

I am unable to create a town even though I have enough money!

Gringotts will currently not work correctly with Towny if you set the economy.closed_economy to true in the Towny configuration.

Cauldron

Error registering MBean

If you get errors on Gringotts startup similar to this:

[Server thread/ERROR]: Error registering MBean[Ebean:server=Gringotts2]
java.security.AccessControlException: access denied ("javax.management.MBeanTrustPermission" "register")

Try adding the following lines to your java.policy file unter <JRE_HOME>/lib/security:

grant {
  // JMX Java Management eXtensions
  permission javax.management.MBeanTrustPermission "register";
};