Skip to content
This repository was archived by the owner on May 9, 2021. It is now read-only.

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 Types

Storage DKBans config type Database type
YAML yaml Local file
MySQL/MariaDB MYSQL External remote database

Yaml

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/MariaDB

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

Clone this wiki locally