MYSQL Configuration

DynaMark works with the default (SQLite) database engine. However, if you want to use MYSQL instead, this is what you need to do:

  1. already know what you are doing.
  2. create a new database
  3. Configure these lines in your bukkit.yml:
database:
    username: <username>
    isolation: SERIALIZABLE
    driver: com.mysql.jdbc.Driver
    password: <password>
    url: jdbc:mysql://<server address>:<port>/<database name>

You should know your username and password.

If you don't know you database server address and port, it's probably localhost:3306

database name should be identical to the database which you created earlier.


Comments

Posts Quoted:
Reply
Clear All Quotes