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
Config | Type | Default |
---|---|---|
storage: | ||
database | string | sqlite |
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 | ||
host | string | localhost |
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 | ||
port | number | 3306 |
Sets the mysql server port, where: 3306 = the port on which the MySQL server is running (usually 3306) | ||
database | string | TARDIS |
Sets the database type the plugin uses. Valid values are sqlite and mysql | ||
user | string | bukkit |
Sets the user that connects to the mysql database | ||
password | string | mysecurepassword |
Sets the password to connect to the mysql database | ||
prefix | string |
|
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_SSL | boolean | false |
Sets whether to use an SSL connection to the MySQL database |