Plugin Probleme Basse de donne MySQL (AuthMe)

jojo007

Aventurier
27 Octobre 2015
7
0
2
24
Bonjour

J'ai mon serveur minecraft ou je possède un serveur login (la ou les joueurs se register ou se login ) .

Mais on a eut plus de 1500 register qui a fait plante notre plugins et AuthMe et pour réglé notre problème
nous avons créer une basse de donnée MySQL nous savons créer une table mais nous savons pas quoi mètre
dans AuthMe.

Mrc d'avance
 

pierre_the_geek

Programmeur multi langages
14 Juin 2014
220
34
140
Nouméa, Nouvelle-Calédonie
Salut,

Code:
DataSource:
    # file or mysql
    backend: mysql
    # MySQL database name
    mySQLDatabase: <NOM DE TA BASE DE DONNEES>
    # MySQL username
    mySQLUsername: <UTILISATEUR>
    # MySQL password
    mySQLPassword: '<MOT DE PASSE>'
    # MySQL host
    mySQLHost: <HÔTE (127.0.0.1)>
    # MySQL port
    mySQLPort: '<PORT (3306)>'
    # MySQL table name
    mySQLTablename: <NOM DE LA TABLE (authme)>
    # name of the username column in the mysql table
    mySQLColumnName: <NOM DU CHAMP DES UTILISATEURS (username)>
    # name of the password column in the mysql table
    mySQLColumnPassword: <NOM DU CHAMP DES MOTS DE PASSE (password)>
    # name of the IP column in the mysql table
    mySQLColumnIp: <NOM DU CHAMP DES ADRESSES IP (ip)>
    # name of the lastlogin column in the mysql table
    mySQLColumnLastLogin: <NOM DU CHAMP DES DERNIERS LOGINS (lastlogin)>
    # do you want caching? Only needed when the file
    # backend is used or the MySQL database is on
    # another host than the mc server

Cordialement