Skip to main content

Storage configuration options

These are the plugin storage configuration options.

/plugins/TARDIS/config.yml
storage:
database: sqlite
mysql:
host: localhost
port: 3306
database: TARDIS
user: bukkit
password: mysecurepassword
prefix: ""
useSSL: false
ConfigTypeDefault
storage:
databasestringsqlite
Sets the database type the plugin uses. Valid values are sqlite and mysql
mysql:
Only applicable if database is set to mysql, otherwise this section can be ignored
hoststringlocalhost
Sets the host of the mysql database, where: localhost = the ip address or hostname of the MySQL server (if the MySQL server is on the same server as the Spigot server, you can usually use localhost
portnumber3306
Sets the mysql server port, where: 3306 = the port on which the MySQL server is running (usually 3306)
databasestringTARDIS
Sets the database type the plugin uses. Valid values are sqlite and mysql
userstringbukkit
Sets the user that connects to the mysql database
passwordstringmysecurepassword
Sets the password to connect to the mysql database
prefixstring
Sets the prefix added to the table names used in the mysql database. Spigot servers will generally only use one database, so to distinguish the TARDIS tables from other plugins this should probably be set to something like tardis_
use_SSLbooleanfalse
Sets whether to use an SSL connection to the MySQL database

Back to main configuration page