This repository was archived by the owner on May 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Storage setup
Dkrieger edited this page Apr 3, 2019
·
1 revision
DKPerms has 2 different storage types, a storage is needed to store your player data.
| Storage | DKBans config type | Database type |
|---|---|---|
| YAML | yaml | Local file |
| MySQL/MariaDB | MYSQL | External remote database |
Yaml is only a good database type for small single server networks.
storage:
type: YAML
folder: "plugins/DKPerms/datas/"
mysql:
host: localhost
port: '3306'
user: root
password: password
database: DKPerms
MySQL or MariaDB is a very good database for normal networks or single server.
storage:
type: MYSQL
folder: "plugins/DKPerms/datas/"
mysql:
host: localhost
port: '3306'
user: root
password: password
database: DKPerms