-
Notifications
You must be signed in to change notification settings - Fork 75
Troubleshooting
Wolf2323 edited this page Oct 20, 2017
·
10 revisions
- are you on the latest version of Gringotts?
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.
Gringotts will currently not work correctly with Towny if you set the economy.closed_economy
to true
in the Towny configuration.
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";
};